From 908ca359c1beb133928143ff880bfdb937edbf60 Mon Sep 17 00:00:00 2001 From: Aurynn Shaw Date: Thu, 15 Aug 2013 16:50:14 +1200 Subject: [PATCH] Test cases for usages indicated an incomplete representation of the various datatypes, based on our own necessary modelling for billable information. Moving instead to specific types of constructs, similar to ceilometer's own internal data structures/divisons. New tests to follow that line. --- artifice/artifice.py | 2 +- artifice/interface.py | 401 +++++++++++++++++++++------------ artifice/models/resources.py | 51 ++++- tests/data/index.json | 1 + tests/data/map_fixture_0.json | 1 + tests/data/map_fixture_1.json | 1 + tests/data/map_fixture_10.json | 1 + tests/data/map_fixture_11.json | 1 + tests/data/map_fixture_12.json | 1 + tests/data/map_fixture_13.json | 1 + tests/data/map_fixture_14.json | 1 + tests/data/map_fixture_15.json | 1 + tests/data/map_fixture_16.json | 1 + tests/data/map_fixture_17.json | 1 + tests/data/map_fixture_18.json | 1 + tests/data/map_fixture_19.json | 1 + tests/data/map_fixture_2.json | 1 + tests/data/map_fixture_20.json | 1 + tests/data/map_fixture_21.json | 1 + tests/data/map_fixture_22.json | 1 + tests/data/map_fixture_23.json | 1 + tests/data/map_fixture_24.json | 1 + tests/data/map_fixture_25.json | 1 + tests/data/map_fixture_26.json | 1 + tests/data/map_fixture_3.json | 1 + tests/data/map_fixture_4.json | 1 + tests/data/map_fixture_5.json | 1 + tests/data/map_fixture_6.json | 1 + tests/data/map_fixture_7.json | 1 + tests/data/map_fixture_8.json | 1 + tests/data/map_fixture_9.json | 1 + tests/data/resources.json | 1 + tests/test_import.py | 3 + tests/test_interface.py | 320 ++++++++++++++++++++++++++ tests/test_invoice.py | 2 - 35 files changed, 658 insertions(+), 150 deletions(-) create mode 100644 tests/data/index.json create mode 100644 tests/data/map_fixture_0.json create mode 100644 tests/data/map_fixture_1.json create mode 100644 tests/data/map_fixture_10.json create mode 100644 tests/data/map_fixture_11.json create mode 100644 tests/data/map_fixture_12.json create mode 100644 tests/data/map_fixture_13.json create mode 100644 tests/data/map_fixture_14.json create mode 100644 tests/data/map_fixture_15.json create mode 100644 tests/data/map_fixture_16.json create mode 100644 tests/data/map_fixture_17.json create mode 100644 tests/data/map_fixture_18.json create mode 100644 tests/data/map_fixture_19.json create mode 100644 tests/data/map_fixture_2.json create mode 100644 tests/data/map_fixture_20.json create mode 100644 tests/data/map_fixture_21.json create mode 100644 tests/data/map_fixture_22.json create mode 100644 tests/data/map_fixture_23.json create mode 100644 tests/data/map_fixture_24.json create mode 100644 tests/data/map_fixture_25.json create mode 100644 tests/data/map_fixture_26.json create mode 100644 tests/data/map_fixture_3.json create mode 100644 tests/data/map_fixture_4.json create mode 100644 tests/data/map_fixture_5.json create mode 100644 tests/data/map_fixture_6.json create mode 100644 tests/data/map_fixture_7.json create mode 100644 tests/data/map_fixture_8.json create mode 100644 tests/data/map_fixture_9.json create mode 100644 tests/data/resources.json create mode 100644 tests/test_import.py create mode 100644 tests/test_interface.py diff --git a/artifice/artifice.py b/artifice/artifice.py index 2afa255..f937fd2 100644 --- a/artifice/artifice.py +++ b/artifice/artifice.py @@ -1,5 +1,5 @@ import yaml -from models import session +from models import Session from interface import Artifice default_config = "/etc/artifice/config.yaml" diff --git a/artifice/interface.py b/artifice/interface.py index 87dabb3..1f00d2e 100644 --- a/artifice/interface.py +++ b/artifice/interface.py @@ -5,18 +5,29 @@ import requests import json + +from copy import copy +from collections import defaultdict + # import datetime # Provides authentication against Openstack -from keystoneclient.v2_0 import client as keystone +from keystoneclient.v2_0 import client as KeystoneClient + +# Provides hooks to ceilometer, which we need for data. +from ceilometerclient.v2.client import Client as ceilometer -# # from .models import usage from .models import Session, usage from sqlalchemy import create_engine +from .models.usage import Usage +from .models import resources, tenants + +# from .models.tenants import Tenant + # Date format Ceilometer uses # 2013-07-03T13:34:17 # which is, as an strftime: @@ -29,8 +40,52 @@ date_format = "%Y-%m-%dT%H:%M:%S" # Sometimes things also have milliseconds, so we look for that too. other_date_format = "%Y-%m-%dT%H:%M:%S.%f" +def get_meter(meter, start, end, auth): + date_fields = [{ + "field": "timestamp", + "op": "ge", + "value": start.strftime(date_format) + }, + { + "field": "timestamp", + "op": "lt", + "value": end.strftime(date_format) + } + ] + # I dislike directly calling requests here. + r = requests.get( + meter.link, + headers={ + "X-Auth-Token": auth, + "Content-Type":"application/json"}, + data=json.dumps({"q": date_fields}) + ) + return json.loads(r) + + class NotFound(BaseException): pass +class keystone(KeystoneClient.Client): + + def tenant_by_name(self, name): + authenticator = self.auth_url + url = "%(url)s/tenants?%(query)s" % { + "url": authenticator, + "query": urllib.urlencode({"name":name}) + } + r = requests.get(url, headers={ + "X-Auth-Token": self.auth_token, + "Content-Type": "application/json" + }) + if r.ok: + data = json.loads(r.text) + assert data + return data + else: + if r.status_code == 404: + # couldn't find it + raise NotFound + class Artifice(object): """Produces billable artifacts""" def __init__(self, config): @@ -39,7 +94,7 @@ class Artifice(object): # This is the Keystone client connection, which provides our # OpenStack authentication - self.auth = keystone.Client( + self.auth = keystone( username= config["openstack"]["username"], password= config["openstack"]["password"], tenant_name= config["openstack"]["default_tenant"], @@ -55,9 +110,16 @@ class Artifice(object): } engine = create_engine(conn_string) Session.configure(bind=engine) - session = Session() + self.session = Session() self.artifice = None + self.ceilometer = ceilometer( + self.config["ceilometer"]["host"], + token=self.auth.auth_token + ) + self._tenancy = None + + def tenant(self, name): """ Returns a Tenant object describing the specified Tenant by name, or raises a NotFound error. @@ -65,32 +127,21 @@ class Artifice(object): # Returns a Tenant object for the given name. # Uses Keystone API to perform a direct name lookup, # as this is expected to work via name. - authenticator = config["openstack"]["authentication_url"] - url = "%(url)s/tenants?%(query)s" % { - "url": authenticator, - "query": urllib.urlencode({"name":name}) - } - r = requests.get(url, headers={"X-Auth-Token": self.auth.auth_token, "Content-Type": "application/json"}) - if r.ok: - data = json.loads(r.text) - assert data - t = Tenant(data["tenant"], self) - return t - else: - if r.status_code == 404: - # couldn't find it - raise NotFound + + data = self.auth.tenant_by_name(name) + t = Tenant(data["tenant"], self) + return t @property def tenants(self): """All the tenants in our system""" + # print "tenant list is %s" % self.auth.tenants.list() if not self._tenancy: self._tenancy = {} invoice_type = __import__(self.config["invoices"]["plugin"]) for tenant in self.auth.tenants.list(): t = Tenant(tenant, self) - - dict( [(t.name, Tenant(t, self)) for t in self.auth.tenants.list() ] ) + self._tenancy[t.name] = t return self._tenancy class Tenant(object): @@ -109,8 +160,9 @@ class Tenant(object): def __getattr__(self, attr): if attr not in self.tenant: - return super(self, Tenant).__getattr__(attr) - return self.tenant["attr"] + return object.__getattribute__(self, attr) + # return super(Tenant, self).__getattr__(attr) + return self.tenant[attr] def invoice(self): @@ -137,24 +189,32 @@ class Tenant(object): invoice = self.invoice_type(self, config) return invoice - @property - def resources(self): + def resources(self, start, end): if not self._resources: - r = requests.get( - os.path.join(self.config["ceilometer"]["host"], "v2/resources"), - headers={"X-Auth-Token": self.auth.auth_token, "Content-Type":"application/json"}, - data=json.dumps( { "q": resourcing_fields } ) - ) - if not r.ok: - return None - - self._resources = json.loads(r.text) + date_fields = [{ + "field": "timestamp", + "op": "ge", + "value": start.strftime(date_format) + }, + { + "field": "timestamp", + "op": "lt", + "value": end.strftime(date_format) + }, + { "field": "project_id", + "op": "eq", + "value": self.tenant["id"] + }, + ] + self._resources = self.ceilometer.resources.list(date_fields) return self._resources - - # def usage(self, start, end, section=None): - def contents(self, start, end): + def usage(self, start, end): + """ + Contents is the meat of Artifice, returning a dict of location to + sub-information + """ # Returns a usage dict, based on regions. vms = {} vm_to_region = {} @@ -162,69 +222,63 @@ class Tenant(object): usage_by_dc = {} - date_fields = [{ - "field": "timestamp", - "op": "ge", - "value": start.strftime(date_format) - }, - { - "field": "timestamp", - "op": "lt", - "value": end.strftime(date_format) - }, - ] writing_to = None vms = [] networks = [] storage = [] images = [] + volumes = [] - for resource in self.resources: + for resource in self.resources(start, end): rels = [link["rel"] for link in resource["links"] if link["rel"] != 'self' ] if "image" in rels: # Images don't have location data - we don't know where they are. # It may not matter where they are. resource["_type"] = "image" - images.append(resource) + images.append(Resource(resource, self.conn)) pass - elif "storage" in rels: + elif "storage.objects" in rels: # Unknown how this data layout happens yet. - resource["_type"] = "storage" - storage.append(resource) + resource["_type"] = "object" + storage.append(Resource(resource, self.conn)) pass elif "network" in rels: # Have we seen the VM that owns this yet? resource["_type"] = "network" - networks.append(resource) - else: + networks.append(Resource(resource , self.conn)) + elif "volumne" in rels: + volumes.append( Resource(resource, self.conn) ) + elif 'instance' in rels: resource["_type"] = "vm" - vms.append(resource) + vms.append(Resource(resource, self.conn )) datacenters = {} - region_tmpl = { "vms": [], - "network": [], - "storage": [] + region_tmpl = { "vms": vms, + "network": networks, + "objects": storage, + "volumes": volumes + } - vm_to_region = {} - for vm in vms: - id_ = vm["resource_id"] + # vm_to_region = {} + # for vm in vms: + # id_ = vm["resource_id"] - datacenter = self.host_to_dc( vm["metadata"]["host"] ) + # datacenter = self.conn.host_to_dc( vm["metadata"]["host"] ) - if datacenter not in datacenters: - dict_ = copy(region_tmpl) - datacenters[datacenter] = dict_ + # if datacenter not in datacenters: + # dict_ = copy(region_tmpl) + # datacenters[datacenter] = dict_ - datacenters[datacenter]["vms"].append(vm) + # datacenters[datacenter]["vms"].append(vm) - vm_to_region[id_] = datacenter + # vm_to_region[id_] = datacenter - for network in networks: - vm_id = network["metadata"]["instance_id"] - datacenter = vm_to_region[ vm_id ] + # for network in networks: + # vm_id = network["metadata"]["instance_id"] + # datacenter = self.host_to_dc( network["metadata"]["host"] ) - datacenters[datacenter]["network"].append(network) + # datacenters[datacenter]["network"].append(network) # for resource in storage: # pass @@ -240,42 +294,62 @@ class Tenant(object): # So we can now start to collect stats and construct what we consider to be # usage information for this tenant for this timerange - return Contents(datacenters, start, end) - - @property - def meters(self): - if not self.meters: - resourcing_fields = [{"field": "project_id", "op": "eq", "value": self.tenant.id }] - r = requests.get( - os.path.join(self.config["ceilometer"]["host"], "v2/resources"), - headers={"X-Auth-Token": self.auth.auth_token, "Content-Type":"application/json"}, - data=json.dumps( { "q": resourcing_fields } ) - ) - # meters = set() - resources = json.loads(r.text) - for resource in resources: - for link in resource["links"]: - if link["rel"] == "self": - continue - self._meters.add(link["rel"]) - # sections.append(Section(self, link)) - return self._meters() + return Usage(region_tmpl, start, end, self.conn) -class Contents(object): +class Usage(object): + """ + This is a dict-like object containing all the datacenters and + meters available in those datacenters. + """ - def __init__(self, contents, start, end): + def __init__(self, contents, start, end, conn): self.contents = contents self.start = start self.end = end + self.conn = conn + + self._vms = [] + self._objects = [] + self._volumes = [] + # Replaces all the internal references with better references to # actual metered values. - self._replace() + # self._replace() - def __getitem__(self, item): + @property + def vms(self): - return self.contents[item] + if not self._vms: + vms = [] + + for vm in self.contents["vms"]: + VM = resources.VM(vm) + VM.location = self.conn.host_to_dc( vm["metadata"]["host"] ) + vms.append(VM) + self._vms = vms + return self._vms + + @property + def objects(self): + if not self._objects: + vms = [] + + for object_ in self.contents["objects"]: + obj = resources.Object(object_) + obj.location = self.conn.host_to_dc( vm["metadata"]["host"] ) + vms.append(VM) + self._vms = vms + return self._vms + + @property + def volumes(self): + return [] + + # def __getitem__(self, item): + + # return self.contents[item] def __iter__(self): return self @@ -290,19 +364,21 @@ class Contents(object): def _replace(self): # Turns individual metering objects into # Usage objects that this expects. - for dc in contents.iterkeys(): - for section in contents[dc].iterkeys(): + for dc in self.contents.iterkeys(): + for section in self.contents[dc].iterkeys(): meters = [] - for meter in contents[dc][section]: - + for resource in self.contents[dc][section]: + meters.extend(resource.meters) + usages = [] + for meter in meters: usage = meter.usage(self.start, self.end) - usage.db = self.db # catch the DB context? + usage.db = self.conn # catch the DB context? - meters.append(usage) + usages.append(usage) # Overwrite the original metering objects # with the core usage objects. # This is because we're not storing metering. - contents[dc][section] = meters + self.contents[dc][section] = usages def save(self): @@ -310,78 +386,79 @@ class Contents(object): Iterate the list of things; save them to DB. """ # self.db.begin() - for dc in contents.iterkeys(): - for section in contents[dc].iterkeys(): - for meter in contents[dc][section]: - meter.save() - self.db.commit() + # for + # for dc in self.contents.iterkeys(): + # for section in self.contents[dc].iterkeys(): + # for meter in self.contents[dc][section]: + # meter.save() + # self.conn.session.commit() + raise NotImplementedError("Not implemented") class Resource(object): - def __init__(self, resource): + def __init__(self, resource, conn): self.resource = resource + self.conn = conn + self._meters = {} + + def meter(self, name): + pass # Return a named meter + + + def __getitem__(self, name): + return self.resource[name] @property def meters(self): - meters = [] - for link in self.resource["links"]: - if link["rel"] == "self": - continue - meter = Meter(self.resource, link) - meters.append(meter) - return meters + if not self._meters: + meters = [] + for link in self.resource["links"]: + if link["rel"] == "self": + continue + meter = Meter(self, link, self.conn) + meters.append(meter) + self._meters = meters + return self._meters class Meter(object): - def __init__(self, resource, link): + def __init__(self, resource, link, conn): self.resource = resource self.link = link + self.conn = conn # self.meter = meter def __getitem__(self, x): - if isintance(x, slice): + if isinstance(x, slice): # Woo pass pass - @property def usage(self, start, end): """ Usage condenses the entirety of a meter into a single datapoint: A volume value that we can plot as a single number against previous usage for a given range. """ - date_fields = [{ - "field": "timestamp", - "op": "ge", - "value": start.strftime(date_format) - }, - { - "field": "timestamp", - "op": "lt", - "value": end.strftime(date_format) - } - ] - r = requests.get( - self.link, - headers={ - "X-Auth-Token": self.auth.auth_token, - "Content-Type":"application/json"}, - data=json.dumps({"q": date_fields}) - ) - measurements = json.loads(r) + measurements = get_meter(self, start, end, self.conn.auth.auth_token) + self.measurements = defaultdict(list) self.type = set([a["counter_type"] for a in measurements]) + if len(self.type) > 1: + # That's a big problem + raise RuntimeError("Too many types for measurement!") + elif len(self.type) == 0: + raise RuntimeError("No types!") + else: + self.type = self.type.pop() type_ = None if self.type == "cumulative": # The usage is the last one, which is the highest value. # # Base it just on the resource ID. - # Is this a reasonable thing to do? # Composition style: resource.meter("cpu_util").usage(start, end) == artifact type_ = Cumulative - elif self.type == "gauge": type_ = Gauge # return Gauge(self.Resource, ) @@ -392,6 +469,11 @@ class Meter(object): class Artifact(object): + """ + Provides base artifact controls; generic typing information + for the artifact structures. + """ + def __init__(self, resource, usage, start, end): self.resource = resource @@ -409,13 +491,41 @@ class Artifact(object): Persists to our database backend. Opinionatedly this is a sql datastore. """ value = self.volume() + session = self.resource.conn.session # self.artifice. - tenant_id = self.resource["tenant"] + try: + tenant_id = self.resource["tenant_id"] + except KeyError: + tenant_id = self.resource["project_id"] resource_id = self.resource["resource_id"] - usage = models.Usage( - resource_id, - tenant_id, + tenant = session.query(tenants.Tenant).get(tenant_id) + + if tenant is None: + res = resources.Resource() + tenant = tenants.Tenant() + tenant.id = tenant_id + + res.id = resource_id + res.tenant = tenant + session.add(res) + session.add(tenant) + else: + try: + res = session.query(resources.Resource).filter(resources.Resource.id == resource_id)[0] + tenant = res.tenant + except IndexError: + res = resources.Resource() + tenant = tenants.Tenant() + tenant.id = tenant_id + res.id = resource_id + res.tenant = tenant + session.add(res) + session.add(tenant) + + usage = Usage( + res, + tenant, value, self.start, self.end, @@ -424,7 +534,6 @@ class Artifact(object): session.commit() # Persist to our backend - def volume(self): """ Default billable number for this volume diff --git a/artifice/models/resources.py b/artifice/models/resources.py index 54316bd..9a4085e 100644 --- a/artifice/models/resources.py +++ b/artifice/models/resources.py @@ -10,4 +10,53 @@ class Resource(Base): id = Column(String, primary_key=True) type_ = Column(String) tenant_id = Column(String, ForeignKey("tenants.id"), primary_key=True) - tenant = relationship("Tenant", backref=backref("tenants")) \ No newline at end of file + tenant = relationship("Tenant", backref=backref("tenants")) + + +class VM(object): + + def __init__(self, raw): + # raw is the raw data for this + self._raw = raw + + self._location = None + + @property + def type(self): + return self._raw["metadata"]["instance_type"] + + @property + def size(self): + return self.type + + @property + def memory(self): + return self._raw["metadata"]["memory"] + + @property + def cpus(self): + return self._raw["metadata"]["memory"] + + @property + def state(self): + return self._raw["metadata"]["state"] + + @property + def bandwidth(self): + # This is a metered value + return 0 + + @property + def ips(self): + """floating IPs; this is a metered value""" + return 0 + + +class Object(object): + pass + +class Volume(object): + + @property + def location(self): + pass diff --git a/tests/data/index.json b/tests/data/index.json new file mode 100644 index 0000000..ba44dae --- /dev/null +++ b/tests/data/index.json @@ -0,0 +1 @@ +{"http://localhost:8777/v2/meters/volume?q.field=resource_id&q.value=a5696083-56d2-4e25-a0cb-2b51bd2ca90d": "map_fixture_21.json", "http://localhost:8777/v2/meters/port?q.field=resource_id&q.value=07771c9c-f10e-4b08-9702-78c8618f5a48": "map_fixture_1.json", "http://localhost:8777/v2/meters/storage.objects?q.field=resource_id&q.value=0d0854c42a7b49b0a6348b2746d60e7f": "map_fixture_4.json", "http://localhost:8777/v2/meters/disk.root.size?q.field=resource_id&q.value=0a16330b-d457-425d-8249-a275fab9adea": "map_fixture_2.json", "http://localhost:8777/v2/meters/network.create?q.field=resource_id&q.value=79b5e163-496c-4ab6-9c21-3b597ed632dc": "map_fixture_16.json", "http://localhost:8777/v2/meters/storage.objects?q.field=resource_id&q.value=253d975f27004438b89a239b5638a6bc": "map_fixture_7.json", "http://localhost:8777/v2/meters/instance.scheduled?q.field=resource_id&q.value=6d254988-1431-49d7-9491-e7c27d0bd6cb": "map_fixture_15.json", "http://localhost:8777/v2/meters/storage.objects.size?q.field=resource_id&q.value=7ec5ec9750414a4c8e767e16e1b6c9cf": "map_fixture_18.json", "http://localhost:8777/v2/meters/instance?q.field=resource_id&q.value=1bd5a017-2777-4601-8c48-fd7569a4e485": "map_fixture_5.json", "http://localhost:8777/v2/meters/router.create?q.field=resource_id&q.value=4392aff1-d6a8-4106-9e75-818eb91a3d45": "map_fixture_9.json", "http://localhost:8777/v2/meters/image.download?q.field=resource_id&q.value=e58bf75a-35e9-4709-9eab-885438f36a34": "map_fixture_25.json", "http://localhost:8777/v2/meters/memory?q.field=resource_id&q.value=6d254988-1431-49d7-9491-e7c27d0bd6cb": "map_fixture_15.json", "http://localhost:8777/v2/meters/port?q.field=resource_id&q.value=5561589b-c1fa-46eb-b9d4-5998daceaee4": "map_fixture_11.json", "http://localhost:8777/v2/meters/subnet.create?q.field=resource_id&q.value=a2777ed6-7442-42b8-bb86-5b554aad7f08": "map_fixture_20.json", "http://localhost:8777/v2/meters/disk.root.size?q.field=resource_id&q.value=c01c63fe-7a29-4426-bab1-34d088e92415": "map_fixture_24.json", "http://localhost:8777/v2/meters/port.create?q.field=resource_id&q.value=07771c9c-f10e-4b08-9702-78c8618f5a48": "map_fixture_1.json", "http://localhost:8777/v2/meters/disk.root.size?q.field=resource_id&q.value=6d254988-1431-49d7-9491-e7c27d0bd6cb": "map_fixture_15.json", "http://localhost:8777/v2/meters/port.create?q.field=resource_id&q.value=5561589b-c1fa-46eb-b9d4-5998daceaee4": "map_fixture_11.json", "http://localhost:8777/v2/meters/image.serve?q.field=resource_id&q.value=e58bf75a-35e9-4709-9eab-885438f36a34": "map_fixture_25.json", "http://localhost:8777/v2/meters/image.serve?q.field=resource_id&q.value=7cbf09f5-43ae-4d94-a1e7-47e95fd27017": "map_fixture_17.json", "http://localhost:8777/v2/meters/storage.objects.size?q.field=resource_id&q.value=4cb54495d7784d3dbd61db9d7adf955f": "map_fixture_10.json", "http://localhost:8777/v2/meters/network?q.field=resource_id&q.value=79b5e163-496c-4ab6-9c21-3b597ed632dc": "map_fixture_16.json", "http://localhost:8777/v2/meters/vcpus?q.field=resource_id&q.value=03bd0d4c-99da-4ccf-b308-2721f33e84ef": "map_fixture_0.json", "http://localhost:8777/v2/meters/port.create?q.field=resource_id&q.value=24916b40-f8d8-49ad-be4a-4edbf6c9a370": "map_fixture_6.json", "http://localhost:8777/v2/meters/storage.objects.containers?q.field=resource_id&q.value=931dc699f9934021bb4a2b1088ba4d3b": "map_fixture_19.json", "http://localhost:8777/v2/meters/storage.objects.containers?q.field=resource_id&q.value=7ec5ec9750414a4c8e767e16e1b6c9cf": "map_fixture_18.json", "http://localhost:8777/v2/meters/instance:m1.nano?q.field=resource_id&q.value=6d254988-1431-49d7-9491-e7c27d0bd6cb": "map_fixture_15.json", "http://localhost:8777/v2/meters/port.create?q.field=resource_id&q.value=375d1c5d-e732-4082-857b-ca133f08006b": "map_fixture_8.json", "http://localhost:8777/v2/meters/instance:m1.nano?q.field=resource_id&q.value=1bd5a017-2777-4601-8c48-fd7569a4e485": "map_fixture_5.json", "http://localhost:8777/v2/meters/instance?q.field=resource_id&q.value=6d254988-1431-49d7-9491-e7c27d0bd6cb": "map_fixture_15.json", "http://localhost:8777/v2/meters/disk.ephemeral.size?q.field=resource_id&q.value=0a16330b-d457-425d-8249-a275fab9adea": "map_fixture_2.json", "http://localhost:8777/v2/meters/vcpus?q.field=resource_id&q.value=1bd5a017-2777-4601-8c48-fd7569a4e485": "map_fixture_5.json", "http://localhost:8777/v2/meters/storage.objects.containers?q.field=resource_id&q.value=253d975f27004438b89a239b5638a6bc": "map_fixture_7.json", "http://localhost:8777/v2/meters/router?q.field=resource_id&q.value=4392aff1-d6a8-4106-9e75-818eb91a3d45": "map_fixture_9.json", "http://localhost:8777/v2/meters/storage.objects.size?q.field=resource_id&q.value=253d975f27004438b89a239b5638a6bc": "map_fixture_7.json", "http://localhost:8777/v2/meters/storage.objects.containers?q.field=resource_id&q.value=0d0854c42a7b49b0a6348b2746d60e7f": "map_fixture_4.json", "http://localhost:8777/v2/meters/storage.objects?q.field=resource_id&q.value=931dc699f9934021bb4a2b1088ba4d3b": "map_fixture_19.json", "http://localhost:8777/v2/meters/port?q.field=resource_id&q.value=24916b40-f8d8-49ad-be4a-4edbf6c9a370": "map_fixture_6.json", "http://localhost:8777/v2/meters/volume.size?q.field=resource_id&q.value=a5696083-56d2-4e25-a0cb-2b51bd2ca90d": "map_fixture_21.json", "http://localhost:8777/v2/meters/image.size?q.field=resource_id&q.value=b23fbced-b272-41a6-8f48-be76b586bd00": "map_fixture_22.json", "http://localhost:8777/v2/meters/port.create?q.field=resource_id&q.value=615a397c-fca2-4233-9f42-b769a8d6ea59": "map_fixture_13.json", "http://localhost:8777/v2/meters/image.download?q.field=resource_id&q.value=b23fbced-b272-41a6-8f48-be76b586bd00": "map_fixture_22.json", "http://localhost:8777/v2/meters/memory?q.field=resource_id&q.value=1bd5a017-2777-4601-8c48-fd7569a4e485": "map_fixture_5.json", "http://localhost:8777/v2/meters/router.update?q.field=resource_id&q.value=4392aff1-d6a8-4106-9e75-818eb91a3d45": "map_fixture_9.json", "http://localhost:8777/v2/meters/disk.ephemeral.size?q.field=resource_id&q.value=6d254988-1431-49d7-9491-e7c27d0bd6cb": "map_fixture_15.json", "http://localhost:8777/v2/meters/port?q.field=resource_id&q.value=615a397c-fca2-4233-9f42-b769a8d6ea59": "map_fixture_13.json", "http://localhost:8777/v2/meters/disk.ephemeral.size?q.field=resource_id&q.value=1bd5a017-2777-4601-8c48-fd7569a4e485": "map_fixture_5.json", "http://localhost:8777/v2/meters/image?q.field=resource_id&q.value=b23fbced-b272-41a6-8f48-be76b586bd00": "map_fixture_22.json", "http://localhost:8777/v2/meters/storage.objects.size?q.field=resource_id&q.value=931dc699f9934021bb4a2b1088ba4d3b": "map_fixture_19.json", "http://localhost:8777/v2/meters/storage.objects?q.field=resource_id&q.value=e88ef09124594ede8ecea0b1628a05bf": "map_fixture_26.json", "http://localhost:8777/v2/meters/disk.ephemeral.size?q.field=resource_id&q.value=c01c63fe-7a29-4426-bab1-34d088e92415": "map_fixture_24.json", "http://localhost:8777/v2/meters/disk.ephemeral.size?q.field=resource_id&q.value=03bd0d4c-99da-4ccf-b308-2721f33e84ef": "map_fixture_0.json", "http://localhost:8777/v2/meters/memory?q.field=resource_id&q.value=03bd0d4c-99da-4ccf-b308-2721f33e84ef": "map_fixture_0.json", "http://localhost:8777/v2/meters/storage.objects?q.field=resource_id&q.value=0c5a6b84fd2a43999c8820060c57da30": "map_fixture_3.json", "http://localhost:8777/v2/meters/storage.objects.size?q.field=resource_id&q.value=0d0854c42a7b49b0a6348b2746d60e7f": "map_fixture_4.json", "http://localhost:8777/v2/meters/instance?q.field=resource_id&q.value=03bd0d4c-99da-4ccf-b308-2721f33e84ef": "map_fixture_0.json", "http://localhost:8777/v2/meters/port?q.field=resource_id&q.value=b35709ef-6b3a-42d7-bd57-ef4cd673ec9b": "map_fixture_23.json", "http://localhost:8777/v2/meters/storage.objects.size?q.field=resource_id&q.value=e88ef09124594ede8ecea0b1628a05bf": "map_fixture_26.json", "http://localhost:8777/v2/meters/subnet?q.field=resource_id&q.value=a2777ed6-7442-42b8-bb86-5b554aad7f08": "map_fixture_20.json", "http://localhost:8777/v2/meters/image.serve?q.field=resource_id&q.value=b23fbced-b272-41a6-8f48-be76b586bd00": "map_fixture_22.json", "http://localhost:8777/v2/meters/disk.root.size?q.field=resource_id&q.value=03bd0d4c-99da-4ccf-b308-2721f33e84ef": "map_fixture_0.json", "http://localhost:8777/v2/meters/disk.root.size?q.field=resource_id&q.value=1bd5a017-2777-4601-8c48-fd7569a4e485": "map_fixture_5.json", "http://localhost:8777/v2/meters/vcpus?q.field=resource_id&q.value=0a16330b-d457-425d-8249-a275fab9adea": "map_fixture_2.json", "http://localhost:8777/v2/meters/image.download?q.field=resource_id&q.value=7cbf09f5-43ae-4d94-a1e7-47e95fd27017": "map_fixture_17.json", "http://localhost:8777/v2/meters/memory?q.field=resource_id&q.value=0a16330b-d457-425d-8249-a275fab9adea": "map_fixture_2.json", "http://localhost:8777/v2/meters/memory?q.field=resource_id&q.value=c01c63fe-7a29-4426-bab1-34d088e92415": "map_fixture_24.json", "http://localhost:8777/v2/meters/port?q.field=resource_id&q.value=6b9765e2-9138-4468-a60c-4e9f63044d9d": "map_fixture_14.json", "http://localhost:8777/v2/meters/storage.objects.containers?q.field=resource_id&q.value=e88ef09124594ede8ecea0b1628a05bf": "map_fixture_26.json", "http://localhost:8777/v2/meters/storage.objects?q.field=resource_id&q.value=7ec5ec9750414a4c8e767e16e1b6c9cf": "map_fixture_18.json", "http://localhost:8777/v2/meters/instance?q.field=resource_id&q.value=c01c63fe-7a29-4426-bab1-34d088e92415": "map_fixture_24.json", "http://localhost:8777/v2/meters/image.size?q.field=resource_id&q.value=e58bf75a-35e9-4709-9eab-885438f36a34": "map_fixture_25.json", "http://localhost:8777/v2/meters/port?q.field=resource_id&q.value=375d1c5d-e732-4082-857b-ca133f08006b": "map_fixture_8.json", "http://localhost:8777/v2/meters/image?q.field=resource_id&q.value=e58bf75a-35e9-4709-9eab-885438f36a34": "map_fixture_25.json", "http://localhost:8777/v2/meters/vcpus?q.field=resource_id&q.value=c01c63fe-7a29-4426-bab1-34d088e92415": "map_fixture_24.json", "http://localhost:8777/v2/meters/volume?q.field=resource_id&q.value=5d658ace-2535-48c5-a05f-85d651c0d0ac": "map_fixture_12.json", "http://localhost:8777/v2/meters/instance?q.field=resource_id&q.value=0a16330b-d457-425d-8249-a275fab9adea": "map_fixture_2.json", "http://localhost:8777/v2/meters/instance.scheduled?q.field=resource_id&q.value=1bd5a017-2777-4601-8c48-fd7569a4e485": "map_fixture_5.json", "http://localhost:8777/v2/meters/storage.objects?q.field=resource_id&q.value=4cb54495d7784d3dbd61db9d7adf955f": "map_fixture_10.json", "http://localhost:8777/v2/meters/vcpus?q.field=resource_id&q.value=6d254988-1431-49d7-9491-e7c27d0bd6cb": "map_fixture_15.json", "http://localhost:8777/v2/meters/instance:m1.nano?q.field=resource_id&q.value=03bd0d4c-99da-4ccf-b308-2721f33e84ef": "map_fixture_0.json", "http://localhost:8777/v2/meters/instance:m1.nano?q.field=resource_id&q.value=0a16330b-d457-425d-8249-a275fab9adea": "map_fixture_2.json", "http://localhost:8777/v2/meters/volume.size?q.field=resource_id&q.value=5d658ace-2535-48c5-a05f-85d651c0d0ac": "map_fixture_12.json", "http://localhost:8777/v2/meters/instance:m1.nano?q.field=resource_id&q.value=c01c63fe-7a29-4426-bab1-34d088e92415": "map_fixture_24.json", "http://localhost:8777/v2/meters/port.create?q.field=resource_id&q.value=b35709ef-6b3a-42d7-bd57-ef4cd673ec9b": "map_fixture_23.json", "http://localhost:8777/v2/meters/image?q.field=resource_id&q.value=7cbf09f5-43ae-4d94-a1e7-47e95fd27017": "map_fixture_17.json", "http://localhost:8777/v2/meters/image.size?q.field=resource_id&q.value=7cbf09f5-43ae-4d94-a1e7-47e95fd27017": "map_fixture_17.json", "http://localhost:8777/v2/meters/port.create?q.field=resource_id&q.value=6b9765e2-9138-4468-a60c-4e9f63044d9d": "map_fixture_14.json", "http://localhost:8777/v2/meters/storage.objects.size?q.field=resource_id&q.value=0c5a6b84fd2a43999c8820060c57da30": "map_fixture_3.json", "http://localhost:8777/v2/meters/instance.scheduled?q.field=resource_id&q.value=c01c63fe-7a29-4426-bab1-34d088e92415": "map_fixture_24.json", "http://localhost:8777/v2/meters/storage.objects.containers?q.field=resource_id&q.value=4cb54495d7784d3dbd61db9d7adf955f": "map_fixture_10.json", "http://localhost:8777/v2/meters/storage.objects.containers?q.field=resource_id&q.value=0c5a6b84fd2a43999c8820060c57da30": "map_fixture_3.json"} \ No newline at end of file diff --git a/tests/data/map_fixture_0.json b/tests/data/map_fixture_0.json new file mode 100644 index 0000000..45a3979 --- /dev/null +++ b/tests/data/map_fixture_0.json @@ -0,0 +1 @@ +{"http://localhost:8777/v2/meters/instance:m1.nano?q.field=resource_id&q.value=03bd0d4c-99da-4ccf-b308-2721f33e84ef": [{"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-12T04:00:31.053000", "message_id": "bb292236-0303-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-12 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-12T03:00:51.352000", "message_id": "65824022-02fb-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-12 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-12T03:00:51.352000", "message_id": "65824022-02fb-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-12 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-12T02:00:27.616000", "message_id": "f59ec59e-02f2-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-12 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-12T01:00:46.889000", "message_id": "9f7623a4-02ea-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-12 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-12T01:00:46.889000", "message_id": "9f7623a4-02ea-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-12 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-12T01:00:46.889000", "message_id": "9f7623a4-02ea-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-12 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-12T01:00:46.889000", "message_id": "9f7623a4-02ea-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-12 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-12T01:00:46.889000", "message_id": "9f7623a4-02ea-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-12 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-12T00:00:24.671000", "message_id": "306236d6-02e2-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-11T23:00:42.248000", "message_id": "d911fb4e-02d9-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-11T22:00:20.970000", "message_id": "6a909516-02d1-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-11T22:00:20.970000", "message_id": "6a909516-02d1-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-11T21:00:29.949000", "message_id": "0e252330-02c9-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-11T21:00:29.949000", "message_id": "0e252330-02c9-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-11T20:00:18.045000", "message_id": "a548be2e-02c0-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-11T19:00:11.694000", "message_id": "3fbdfc48-02b8-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-11T18:00:02.953000", "message_id": "d8c036c6-02af-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-11T17:00:49.659000", "message_id": "92e2e12e-02a7-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-11T16:00:45.632000", "message_id": "2ea505fa-029f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-11T15:00:36.644000", "message_id": "c790aeb2-0296-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-11T14:00:27.890000", "message_id": "6096028c-028e-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-11T13:00:20.170000", "message_id": "fa309988-0285-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-11T13:00:20.170000", "message_id": "fa309988-0285-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-11T12:00:11.470000", "message_id": "9353325a-027d-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-11T11:00:02.791000", "message_id": "2c4ef196-0275-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-11T10:00:29.291000", "message_id": "da4fdf52-026c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-11T10:00:29.291000", "message_id": "da4fdf52-026c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-11T10:00:29.291000", "message_id": "da4fdf52-026c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-11T09:00:26.242000", "message_id": "76bac176-0264-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-11T09:00:26.242000", "message_id": "76bac176-0264-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-11T09:00:26.242000", "message_id": "76bac176-0264-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-11T08:00:23.175000", "message_id": "13283204-025c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-11T08:00:23.175000", "message_id": "13283204-025c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-11T08:00:23.175000", "message_id": "13283204-025c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-11T07:00:19.779000", "message_id": "af5b0466-0253-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-11T06:00:16.376000", "message_id": "4b9a6af0-024b-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-11T05:00:05.169000", "message_id": "e328a3e0-0242-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-11T04:00:09.136000", "message_id": "83c43d72-023a-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-11T04:00:09.136000", "message_id": "83c43d72-023a-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-11T04:00:09.136000", "message_id": "83c43d72-023a-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-11T04:00:09.136000", "message_id": "83c43d72-023a-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-11T04:00:09.136000", "message_id": "83c43d72-023a-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-11T03:00:02.103000", "message_id": "1dd4b0c6-0232-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-11T02:00:02.814000", "message_id": "bc6b66ac-0229-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-11T02:00:02.814000", "message_id": "bc6b66ac-0229-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-11T01:00:00.542000", "message_id": "59514f12-0221-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-11T01:00:00.542000", "message_id": "59514f12-0221-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-11T00:00:59.421000", "message_id": "1a99c3c4-0219-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T23:00:56.995000", "message_id": "b769f808-0210-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T22:00:51.157000", "message_id": "523464bc-0208-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T21:00:43.938000", "message_id": "ec3030c2-01ff-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T20:00:38.819000", "message_id": "876508e6-01f7-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T19:00:35.266000", "message_id": "236ee2ce-01ef-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T19:00:35.266000", "message_id": "236ee2ce-01ef-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T19:00:35.266000", "message_id": "236ee2ce-01ef-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T19:00:35.266000", "message_id": "236ee2ce-01ef-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T19:00:35.266000", "message_id": "236ee2ce-01ef-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T18:00:31.825000", "message_id": "bfa30bc4-01e6-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T17:00:28.325000", "message_id": "5bbe5bb6-01de-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T17:00:28.325000", "message_id": "5bbe5bb6-01de-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T17:00:28.325000", "message_id": "5bbe5bb6-01de-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T17:00:28.325000", "message_id": "5bbe5bb6-01de-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T16:00:25.399000", "message_id": "f833ac7a-01d5-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T16:00:25.399000", "message_id": "f833ac7a-01d5-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T15:00:22.178000", "message_id": "949cf9e4-01cd-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T14:00:19.113000", "message_id": "30f59020-01c5-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T13:00:15.642000", "message_id": "cd160d76-01bc-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T13:00:15.642000", "message_id": "cd160d76-01bc-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T12:00:04.219000", "message_id": "649aaa2a-01b4-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T11:00:00.207000", "message_id": "005c79ce-01ac-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T11:00:00.207000", "message_id": "005c79ce-01ac-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T11:00:00.207000", "message_id": "005c79ce-01ac-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T10:00:57.777000", "message_id": "c0e37228-01a3-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T09:00:54.231000", "message_id": "5d0a29d4-019b-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T09:00:54.231000", "message_id": "5d0a29d4-019b-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T08:00:51.280000", "message_id": "f97f7b2e-0192-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T07:00:47.572000", "message_id": "95961d8c-018a-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T06:00:44.446000", "message_id": "31e92ef8-0182-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T06:00:44.446000", "message_id": "31e92ef8-0182-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T06:00:44.446000", "message_id": "31e92ef8-0182-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T05:00:41.286000", "message_id": "ce4ee94e-0179-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T04:00:38.426000", "message_id": "6adce0b2-0171-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T03:00:35.018000", "message_id": "06f67b56-0169-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T03:00:35.018000", "message_id": "06f67b56-0169-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T03:00:35.018000", "message_id": "06f67b56-0169-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T02:00:32.158000", "message_id": "a394d13c-0160-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T01:00:28.476000", "message_id": "3f85be8e-0158-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T01:00:28.476000", "message_id": "3f85be8e-0158-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T00:00:24.164000", "message_id": "db3f7f44-014f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T00:00:24.164000", "message_id": "db3f7f44-014f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T00:00:24.164000", "message_id": "db3f7f44-014f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T00:00:24.164000", "message_id": "db3f7f44-014f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T00:00:24.164000", "message_id": "db3f7f44-014f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-09T23:00:20.491000", "message_id": "774b4a8e-0147-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-09T22:00:16.917000", "message_id": "13526132-013f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-09T21:00:13.410000", "message_id": "af85ce26-0136-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-09T20:00:10.365000", "message_id": "4be2d7fe-012e-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-09T19:00:06.976000", "message_id": "e819041c-0125-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-09T18:00:05.339000", "message_id": "855f1814-011d-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-09T17:00:01.471000", "message_id": "2152e0e2-0115-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-09T16:00:59.697000", "message_id": "e23a1982-010c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-09T16:00:59.697000", "message_id": "e23a1982-010c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-09T16:00:59.697000", "message_id": "e23a1982-010c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-09T15:00:53.117000", "message_id": "7ca16128-0104-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-09T14:00:42.273000", "message_id": "144e39b4-00fc-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-09T14:00:42.273000", "message_id": "144e39b4-00fc-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-09T14:00:42.273000", "message_id": "144e39b4-00fc-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-09T14:00:42.273000", "message_id": "144e39b4-00fc-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-09T14:00:42.273000", "message_id": "144e39b4-00fc-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-09T13:00:31.898000", "message_id": "ac5a364e-00f3-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-09T13:00:31.898000", "message_id": "ac5a364e-00f3-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-09T13:00:31.898000", "message_id": "ac5a364e-00f3-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-09T12:00:21.607000", "message_id": "447921e6-00eb-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-09T12:00:21.607000", "message_id": "447921e6-00eb-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-09T11:00:11.695000", "message_id": "dcc8dd28-00e2-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-09T10:00:01.933000", "message_id": "753bf29c-00da-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-09T09:00:53.697000", "message_id": "3250e300-00d2-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-09T08:00:44.760000", "message_id": "cb2ab28a-00c9-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-09T07:00:35.580000", "message_id": "63ee7f3c-00c1-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-09T07:00:35.580000", "message_id": "63ee7f3c-00c1-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-09T06:00:27.420000", "message_id": "fd4c1288-00b8-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-09T05:00:17.823000", "message_id": "95ea4932-00b0-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-09T04:00:02.333000", "message_id": "2aec46d8-00a8-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-09T03:00:52.964000", "message_id": "e760bb18-009f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-09T03:00:52.964000", "message_id": "e760bb18-009f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-09T03:00:52.964000", "message_id": "e760bb18-009f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-09T03:00:52.964000", "message_id": "e760bb18-009f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-09T02:00:37.311000", "message_id": "7c2facd0-0097-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-09T01:00:26.887000", "message_id": "142b42aa-008f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-09T01:00:26.887000", "message_id": "142b42aa-008f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-09T01:00:26.887000", "message_id": "142b42aa-008f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-09T00:00:17.043000", "message_id": "ac994036-0086-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-08T23:00:07.558000", "message_id": "451df5bc-007e-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-08T22:01:01.330000", "message_id": "038a646c-0076-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-08T21:00:52.280000", "message_id": "9c414792-006d-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-08T21:00:52.280000", "message_id": "9c414792-006d-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-08T20:00:43.525000", "message_id": "3539a70e-0065-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-08T20:00:43.525000", "message_id": "3539a70e-0065-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-08T20:00:43.525000", "message_id": "3539a70e-0065-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-08T19:00:36.777000", "message_id": "cf80164e-005c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-08T18:00:29.353000", "message_id": "69443e58-0054-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-08T17:00:22.361000", "message_id": "0359a93c-004c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-08T16:00:13.975000", "message_id": "9c90bb76-0043-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-08T15:00:07.748000", "message_id": "371752da-003b-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-08T14:01:00.700000", "message_id": "f4fc0d26-0032-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-08T13:00:51.666000", "message_id": "8e00f634-002a-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-08T12:00:42.597000", "message_id": "268f816c-0022-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-08T12:00:42.597000", "message_id": "268f816c-0022-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-08T12:00:42.597000", "message_id": "268f816c-0022-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-08T12:00:42.597000", "message_id": "268f816c-0022-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-08T11:00:35.748000", "message_id": "c0b54320-0019-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-08T10:00:28.454000", "message_id": "5aa055a0-0011-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-08T09:00:25.591000", "message_id": "f71a7c52-0008-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-08T09:00:25.591000", "message_id": "f71a7c52-0008-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-08T09:00:25.591000", "message_id": "f71a7c52-0008-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-08T08:00:23.234000", "message_id": "93f68ea2-0000-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-08T08:00:23.234000", "message_id": "93f68ea2-0000-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-08T07:00:21.302000", "message_id": "311ca242-fff8-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-08T06:00:19.341000", "message_id": "ce233d20-ffef-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-08T05:00:17.519000", "message_id": "6b4b191e-ffe7-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-08T04:00:15.923000", "message_id": "088e32aa-ffdf-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-08T03:00:13.875000", "message_id": "a584f3c2-ffd6-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-08T02:00:12.079000", "message_id": "42aa7266-ffce-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-08T01:00:10.203000", "message_id": "dfdf23fa-ffc5-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-08T00:00:08.648000", "message_id": "7d2b45e8-ffbd-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-08T00:00:08.648000", "message_id": "7d2b45e8-ffbd-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-08T00:00:08.648000", "message_id": "7d2b45e8-ffbd-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-08T00:00:08.648000", "message_id": "7d2b45e8-ffbd-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-08T00:00:08.648000", "message_id": "7d2b45e8-ffbd-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T23:00:03.847000", "message_id": "187a2f4a-ffb5-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T23:00:03.847000", "message_id": "187a2f4a-ffb5-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T22:00:01.368000", "message_id": "b5385d60-ffac-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T21:00:58.355000", "message_id": "756f05c4-ffa4-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T20:00:55.785000", "message_id": "122bc036-ff9c-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T19:00:51.102000", "message_id": "adb7ed12-ff93-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T19:00:51.102000", "message_id": "adb7ed12-ff93-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T19:00:51.102000", "message_id": "adb7ed12-ff93-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T19:00:51.102000", "message_id": "adb7ed12-ff93-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T18:00:49.593000", "message_id": "4aef6226-ff8b-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T17:00:47.506000", "message_id": "e7e4ad06-ff82-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T17:00:47.506000", "message_id": "e7e4ad06-ff82-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T16:00:45.287000", "message_id": "84d7f0ea-ff7a-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T15:00:43.015000", "message_id": "21b75530-ff72-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T14:00:40.793000", "message_id": "bea6e9a4-ff69-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T14:00:40.793000", "message_id": "bea6e9a4-ff69-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T14:00:40.793000", "message_id": "bea6e9a4-ff69-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T14:00:40.793000", "message_id": "bea6e9a4-ff69-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T14:00:40.793000", "message_id": "bea6e9a4-ff69-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T13:00:38.015000", "message_id": "5b2bc05a-ff61-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T12:00:35.541000", "message_id": "f7fa8f78-ff58-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T11:00:33.074000", "message_id": "94ba671a-ff50-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T11:00:33.074000", "message_id": "94ba671a-ff50-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T11:00:33.074000", "message_id": "94ba671a-ff50-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T11:00:33.074000", "message_id": "94ba671a-ff50-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T11:00:33.074000", "message_id": "94ba671a-ff50-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T10:00:28.878000", "message_id": "307651f4-ff48-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T09:00:26.158000", "message_id": "cd17a8ea-ff3f-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T09:00:26.158000", "message_id": "cd17a8ea-ff3f-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T09:00:26.158000", "message_id": "cd17a8ea-ff3f-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T08:00:23.717000", "message_id": "69dc256a-ff37-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T07:00:21.549000", "message_id": "06ce9c6c-ff2f-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T06:00:16.339000", "message_id": "a1e35624-ff26-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T05:00:13.058000", "message_id": "3e27f822-ff1e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T04:00:10.435000", "message_id": "dae8d9b4-ff15-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T04:00:10.435000", "message_id": "dae8d9b4-ff15-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T04:00:10.435000", "message_id": "dae8d9b4-ff15-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T04:00:10.435000", "message_id": "dae8d9b4-ff15-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T04:00:10.435000", "message_id": "dae8d9b4-ff15-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T03:00:06.778000", "message_id": "76e7e926-ff0d-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T02:00:03.865000", "message_id": "1363ef7e-ff05-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T02:00:03.865000", "message_id": "1363ef7e-ff05-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T01:00:01.898000", "message_id": "b07a59dc-fefc-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T00:00:01.185000", "message_id": "4e3fd326-fef4-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T00:00:01.185000", "message_id": "4e3fd326-fef4-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-06T23:00:36.393000", "message_id": "01829efe-feec-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-06T22:00:00.257000", "message_id": "8a473244-fee3-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-06T21:00:12.864000", "message_id": "2fe58060-fedb-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-06T20:00:01.589000", "message_id": "c791b5a4-fed2-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-06T19:00:52.241000", "message_id": "83dcaa92-feca-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-06T18:00:45.903000", "message_id": "1e5c0184-fec2-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-06T17:00:34.359000", "message_id": "b5c701e4-feb9-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-06T17:00:34.359000", "message_id": "b5c701e4-feb9-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-06T17:00:34.359000", "message_id": "b5c701e4-feb9-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-06T17:00:34.359000", "message_id": "b5c701e4-feb9-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-06T17:00:34.359000", "message_id": "b5c701e4-feb9-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-06T16:00:25.210000", "message_id": "4e7dc70a-feb1-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-06T15:00:16.218000", "message_id": "e74ca950-fea8-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-06T14:00:07.244000", "message_id": "8030ab02-fea0-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-06T13:01:00.106000", "message_id": "3de9874e-fe98-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-06T12:00:50.842000", "message_id": "d6b0e174-fe8f-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-06T11:00:42.155000", "message_id": "6fab681c-fe87-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-06T10:00:33.147000", "message_id": "088e9634-fe7f-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-06T09:00:25.644000", "message_id": "a2518492-fe76-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-06T09:00:25.644000", "message_id": "a2518492-fe76-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-06T08:00:15.374000", "message_id": "3a6d8fb8-fe6e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-06T08:00:15.374000", "message_id": "3a6d8fb8-fe6e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-06T07:00:06.709000", "message_id": "d3873478-fe65-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-06T06:00:59.168000", "message_id": "90facff0-fe5d-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-06T05:00:49.834000", "message_id": "29a9c03e-fe55-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-06T05:00:49.834000", "message_id": "29a9c03e-fe55-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-06T04:00:41.447000", "message_id": "c2e7d9e2-fe4c-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-06T04:00:41.447000", "message_id": "c2e7d9e2-fe4c-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-06T03:00:32.513000", "message_id": "5bce37ae-fe44-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-06T03:00:32.513000", "message_id": "5bce37ae-fe44-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-06T03:00:32.513000", "message_id": "5bce37ae-fe44-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-06T02:00:23.108000", "message_id": "f46c0bfc-fe3b-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-06T02:00:23.108000", "message_id": "f46c0bfc-fe3b-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-06T01:00:14.104000", "message_id": "8d623e2a-fe33-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-06T01:00:14.104000", "message_id": "8d623e2a-fe33-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-06T00:00:05.594000", "message_id": "26772746-fe2b-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-05T23:00:58.868000", "message_id": "e46a0362-fe22-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-05T22:00:49.211000", "message_id": "7cebf644-fe1a-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-05T21:00:40.358000", "message_id": "15e68106-fe12-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-05T21:00:40.358000", "message_id": "15e68106-fe12-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-05T20:00:32.318000", "message_id": "af4ed5ae-fe09-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-05T20:00:32.318000", "message_id": "af4ed5ae-fe09-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-05T20:00:32.318000", "message_id": "af4ed5ae-fe09-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-05T20:00:32.318000", "message_id": "af4ed5ae-fe09-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-05T19:00:24.219000", "message_id": "4921c820-fe01-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-05T19:00:24.219000", "message_id": "4921c820-fe01-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-05T18:00:16.095000", "message_id": "e21c7f92-fdf8-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-05T18:00:16.095000", "message_id": "e21c7f92-fdf8-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-05T18:00:16.095000", "message_id": "e21c7f92-fdf8-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-05T18:00:16.095000", "message_id": "e21c7f92-fdf8-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-05T17:00:08.185000", "message_id": "7ba1464c-fdf0-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-05T17:00:08.185000", "message_id": "7ba1464c-fdf0-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-05T16:00:00.104000", "message_id": "15087034-fde8-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-05T16:00:00.104000", "message_id": "15087034-fde8-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-05T15:00:53.620000", "message_id": "d32fa43c-fddf-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-05T14:00:45.797000", "message_id": "6cbe677c-fdd7-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-05T14:00:45.797000", "message_id": "6cbe677c-fdd7-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-05T13:00:37.599000", "message_id": "0616495c-fdcf-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-05T13:00:37.599000", "message_id": "0616495c-fdcf-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-05T12:00:29.375000", "message_id": "9f67187e-fdc6-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-05T12:00:29.375000", "message_id": "9f67187e-fdc6-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-05T11:00:21.406000", "message_id": "38e7b174-fdbe-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-05T10:00:13.148000", "message_id": "d2344ba2-fdb5-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-05T09:00:05.225000", "message_id": "6bb8484a-fdad-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-05T08:00:58.603000", "message_id": "29c3aa72-fda5-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-05T08:00:58.603000", "message_id": "29c3aa72-fda5-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-05T08:00:58.603000", "message_id": "29c3aa72-fda5-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-05T07:00:50.476000", "message_id": "c32ae4fe-fd9c-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-05T06:00:42.317000", "message_id": "5c9564c4-fd94-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-05T05:00:34.590000", "message_id": "f624ccf0-fd8b-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-05T04:00:23.743000", "message_id": "8de72c4e-fd83-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-05T03:00:18.260000", "message_id": "28e012f0-fd7b-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-05T02:00:12.649000", "message_id": "c3c0ed2a-fd72-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-05T01:00:05.445000", "message_id": "5db40d62-fd6a-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-05T00:00:56.875000", "message_id": "1a98212e-fd62-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-04 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-04T23:58:54.807000", "message_id": "d1d56366-fd61-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.create.end", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "message": "Success", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.571256", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-04T23:58:54.640000", "message_id": "d1bd744a-fd61-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.update", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "old_state": "building", "old_task_state": "spawning", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-04T23:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04 23:58:46", "launched_at": "2013-08-04T23:58:54.571256", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "None", "audit_period_ending": "2013-08-04T23:58:54.628545", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-04T23:58:50.875000", "message_id": "cf7d584e-fd61-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "spawning", "event_type": "compute.instance.update", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "building", "old_state": "None", "old_task_state": "None", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-04T23:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04 23:58:46", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "spawning", "audit_period_ending": "2013-08-04T23:58:50.872238", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-04T23:58:49.572000", "message_id": "ceb6e68c-fd61-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "spawning", "event_type": "compute.instance.update", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "building", "old_state": "building", "old_task_state": "block_device_mapping", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-04T23:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04 23:58:46", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "spawning", "audit_period_ending": "2013-08-04T23:58:49.569396", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-04T23:58:48.595000", "message_id": "ce21e186-fd61-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "block_device_mapping", "event_type": "compute.instance.update", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "building", "old_state": "building", "old_task_state": "networking", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-04T23:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04 23:58:46", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "block_device_mapping", "audit_period_ending": "2013-08-04T23:58:48.588834", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-04T23:58:48.411000", "message_id": "ce0243b2-fd61-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "networking", "event_type": "compute.instance.update", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "building", "old_state": "building", "old_task_state": "None", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-04T23:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04 23:58:46", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "networking", "audit_period_ending": "2013-08-04T23:58:48.409052", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-04T23:58:48.244000", "message_id": "cded1c4e-fd61-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.update", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "building", "old_state": "None", "old_task_state": "None", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-04T23:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04 23:58:46", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "None", "audit_period_ending": "2013-08-04T23:58:48.240772", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-04T23:58:47.948000", "message_id": "cdd615a8-fd61-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "scheduling", "event_type": "compute.instance.create.start", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "message": "", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "display_name": "trogdor", "hostname": "trogdor", "state": "building", "launched_at": "", "node": "None", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "user_id": "2b8fbe55863d4dfab5310796202b2019", "image_ref_url": "http://10.0.2.15:9292/images/", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-04T23:58:47.868000", "message_id": "cdbbcc16-fd61-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.update", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "building", "old_state": "building", "old_task_state": "scheduling", "node": "None", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-04T23:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04 23:58:46", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "None", "audit_period_ending": "2013-08-04T23:58:47.856726", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-04T23:58:46.651000", "message_id": "cd01eb48-fd61-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "scheduling", "event_type": "compute.instance.update", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "building", "old_state": "None", "old_task_state": "None", "node": "None", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "api.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-04T23:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04 23:58:46.466092", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "scheduling", "audit_period_ending": "2013-08-04T23:58:46.634349", "os_type": "None"}, "counter_type": "gauge"}], "http://localhost:8777/v2/meters/disk.ephemeral.size?q.field=resource_id&q.value=03bd0d4c-99da-4ccf-b308-2721f33e84ef": [{"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-12T04:00:31.053000", "message_id": "bb247bfa-0303-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-12 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-12T03:00:51.352000", "message_id": "65799b5c-02fb-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-12 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-12T02:00:27.616000", "message_id": "f5909d34-02f2-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-12 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-12T02:00:27.616000", "message_id": "f5909d34-02f2-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-12 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-12T01:00:46.889000", "message_id": "9f5ce0c4-02ea-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-12 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-12T00:00:24.671000", "message_id": "304ba3b2-02e2-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-12T00:00:24.671000", "message_id": "304ba3b2-02e2-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-11T23:00:42.248000", "message_id": "d8fbd008-02d9-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-11T23:00:42.248000", "message_id": "d8fbd008-02d9-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-11T22:00:20.970000", "message_id": "6a870370-02d1-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-11T21:00:29.949000", "message_id": "0e1c97e2-02c9-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-11T20:00:18.045000", "message_id": "a5406864-02c0-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-11T19:00:11.694000", "message_id": "3fb3cab6-02b8-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-11T18:00:02.953000", "message_id": "d8b85942-02af-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-11T17:00:49.659000", "message_id": "92cc7344-02a7-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-11T17:00:49.659000", "message_id": "92cc7344-02a7-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-11T16:00:45.632000", "message_id": "2ea02382-029f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-11T15:00:36.644000", "message_id": "c780f44a-0296-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-11T14:00:27.890000", "message_id": "60859154-028e-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-11T14:00:27.890000", "message_id": "60859154-028e-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-11T13:00:20.170000", "message_id": "fa256d9c-0285-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-11T12:00:11.470000", "message_id": "933383ec-027d-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-11T12:00:11.470000", "message_id": "933383ec-027d-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-11T11:00:02.791000", "message_id": "2c42b034-0275-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-11T10:00:29.291000", "message_id": "da488900-026c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-11T09:00:26.242000", "message_id": "76b3b7a0-0264-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-11T08:00:23.175000", "message_id": "131b6ed4-025c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-11T07:00:19.779000", "message_id": "af517130-0253-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-11T06:00:16.376000", "message_id": "4b86cd88-024b-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-11T06:00:16.376000", "message_id": "4b86cd88-024b-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-11T05:00:05.169000", "message_id": "e3150dee-0242-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-11T05:00:05.169000", "message_id": "e3150dee-0242-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-11T04:00:09.136000", "message_id": "83aeed8c-023a-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-11T03:00:02.103000", "message_id": "1db88d24-0232-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-11T03:00:02.103000", "message_id": "1db88d24-0232-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-11T02:00:02.814000", "message_id": "bc5d3cb2-0229-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-11T02:00:02.814000", "message_id": "bc5d3cb2-0229-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-11T01:00:00.542000", "message_id": "5941a8a0-0221-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-11T01:00:00.542000", "message_id": "5941a8a0-0221-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-11T00:00:59.421000", "message_id": "1a91fd92-0219-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T23:00:56.995000", "message_id": "b75ccf0c-0210-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T23:00:56.995000", "message_id": "b75ccf0c-0210-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T22:00:51.157000", "message_id": "5222da30-0208-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T22:00:51.157000", "message_id": "5222da30-0208-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T21:00:43.938000", "message_id": "ec0e3238-01ff-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T21:00:43.938000", "message_id": "ec0e3238-01ff-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T20:00:38.819000", "message_id": "873a97d2-01f7-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T19:00:35.266000", "message_id": "23569b60-01ef-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T19:00:35.266000", "message_id": "23569b60-01ef-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T18:00:31.825000", "message_id": "bf8fcaa0-01e6-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T18:00:31.825000", "message_id": "bf8fcaa0-01e6-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T18:00:31.825000", "message_id": "bf8fcaa0-01e6-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T17:00:28.325000", "message_id": "5baa85be-01de-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T16:00:25.399000", "message_id": "f8280046-01d5-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T15:00:22.178000", "message_id": "94802b48-01cd-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T14:00:19.113000", "message_id": "30dfcf38-01c5-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T14:00:19.113000", "message_id": "30dfcf38-01c5-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T13:00:15.642000", "message_id": "cd0a3b0e-01bc-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T13:00:15.642000", "message_id": "cd0a3b0e-01bc-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T12:00:04.219000", "message_id": "64764ea0-01b4-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T11:00:00.207000", "message_id": "00500ba8-01ac-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T11:00:00.207000", "message_id": "00500ba8-01ac-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T10:00:57.777000", "message_id": "c0d92516-01a3-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T09:00:54.231000", "message_id": "5cf9f58c-019b-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T09:00:54.231000", "message_id": "5cf9f58c-019b-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T08:00:51.280000", "message_id": "f972df40-0192-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T08:00:51.280000", "message_id": "f972df40-0192-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T07:00:47.572000", "message_id": "957af9da-018a-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T07:00:47.572000", "message_id": "957af9da-018a-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T06:00:44.446000", "message_id": "31d7a2d2-0182-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T05:00:41.286000", "message_id": "ce315b2c-0179-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T04:00:38.426000", "message_id": "6aba63c0-0171-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T04:00:38.426000", "message_id": "6aba63c0-0171-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T03:00:35.018000", "message_id": "06eb2f58-0169-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T02:00:32.158000", "message_id": "a3732974-0160-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T01:00:28.476000", "message_id": "3f7bb9f2-0158-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T00:00:24.164000", "message_id": "db2bc166-014f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-09T23:00:20.491000", "message_id": "7730f49a-0147-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-09T23:00:20.491000", "message_id": "7730f49a-0147-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-09T22:00:16.917000", "message_id": "134b39b6-013f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-09T21:00:13.410000", "message_id": "af708688-0136-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-09T21:00:13.410000", "message_id": "af708688-0136-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-09T20:00:10.365000", "message_id": "4bd968a4-012e-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-09T19:00:06.976000", "message_id": "e8105f2e-0125-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-09T18:00:05.339000", "message_id": "8551b4f8-011d-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-09T17:00:01.471000", "message_id": "213e71f2-0115-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-09T16:00:59.697000", "message_id": "e22f1de8-010c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-09T15:00:53.117000", "message_id": "7c7f09de-0104-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-09T14:00:42.273000", "message_id": "14435a1c-00fc-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-09T13:00:31.898000", "message_id": "ac51af38-00f3-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-09T12:00:21.607000", "message_id": "4469aea0-00eb-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-09T11:00:11.695000", "message_id": "dcbd945e-00e2-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-09T10:00:01.933000", "message_id": "752c1746-00da-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-09T09:00:53.697000", "message_id": "323ea442-00d2-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-09T09:00:53.697000", "message_id": "323ea442-00d2-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-09T08:00:44.760000", "message_id": "cb23e734-00c9-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-09T07:00:35.580000", "message_id": "63e9f3b8-00c1-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-09T06:00:27.420000", "message_id": "fd45a9ac-00b8-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-09T05:00:17.823000", "message_id": "95c9a876-00b0-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-09T05:00:17.823000", "message_id": "95c9a876-00b0-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-09T04:00:02.333000", "message_id": "2ad33cf6-00a8-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-09T04:00:02.333000", "message_id": "2ad33cf6-00a8-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-09T03:00:52.964000", "message_id": "e73cf0e8-009f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-09T02:00:37.311000", "message_id": "7c19bd12-0097-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-09T02:00:37.311000", "message_id": "7c19bd12-0097-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-09T01:00:26.887000", "message_id": "141ff742-008f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-09T00:00:17.043000", "message_id": "ac7d6744-0086-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-09T00:00:17.043000", "message_id": "ac7d6744-0086-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-08T23:00:07.558000", "message_id": "4510dc56-007e-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-08T23:00:07.558000", "message_id": "4510dc56-007e-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-08T22:01:01.330000", "message_id": "035951b0-0076-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-08T22:01:01.330000", "message_id": "035951b0-0076-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-08T21:00:52.280000", "message_id": "9c3218ee-006d-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-08T20:00:43.525000", "message_id": "35328960-0065-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-08T19:00:36.777000", "message_id": "cf6abaec-005c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-08T19:00:36.777000", "message_id": "cf6abaec-005c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-08T18:00:29.353000", "message_id": "6938e6c0-0054-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-08T17:00:22.361000", "message_id": "034937d2-004c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-08T16:00:13.975000", "message_id": "9c8577ac-0043-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-08T15:00:07.748000", "message_id": "370a6412-003b-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-08T14:01:00.700000", "message_id": "f4d5add4-0032-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-08T13:00:51.666000", "message_id": "8dbc29e6-002a-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-08T12:00:42.597000", "message_id": "26847c2c-0022-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-08T11:00:35.748000", "message_id": "c0ac26dc-0019-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-08T10:00:28.454000", "message_id": "5a8d5fe0-0011-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-08T10:00:28.454000", "message_id": "5a8d5fe0-0011-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-08T09:00:25.591000", "message_id": "f712e96a-0008-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-08T08:00:23.234000", "message_id": "93e75c20-0000-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-08T08:00:23.234000", "message_id": "93e75c20-0000-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-08T07:00:21.302000", "message_id": "31020de2-fff8-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-08T07:00:21.302000", "message_id": "31020de2-fff8-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-08T07:00:21.302000", "message_id": "31020de2-fff8-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-08T06:00:19.341000", "message_id": "ce0e56f8-ffef-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-08T06:00:19.341000", "message_id": "ce0e56f8-ffef-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-08T05:00:17.519000", "message_id": "6b33bde6-ffe7-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-08T05:00:17.519000", "message_id": "6b33bde6-ffe7-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-08T04:00:15.923000", "message_id": "087b9866-ffdf-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-08T04:00:15.923000", "message_id": "087b9866-ffdf-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-08T03:00:13.875000", "message_id": "a57be48a-ffd6-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-08T02:00:12.079000", "message_id": "42a5ba78-ffce-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-08T01:00:10.203000", "message_id": "dfc30292-ffc5-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-08T01:00:10.203000", "message_id": "dfc30292-ffc5-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-08T00:00:08.648000", "message_id": "7d13e61e-ffbd-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T23:00:03.847000", "message_id": "1871f848-ffb5-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T22:00:01.368000", "message_id": "b53187ec-ffac-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T21:00:58.355000", "message_id": "7565060a-ffa4-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T20:00:55.785000", "message_id": "121a27ae-ff9c-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T19:00:51.102000", "message_id": "ada53f78-ff93-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T18:00:49.593000", "message_id": "4adf4a08-ff8b-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T17:00:47.506000", "message_id": "e7dd0c36-ff82-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T16:00:45.287000", "message_id": "84c4880c-ff7a-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T16:00:45.287000", "message_id": "84c4880c-ff7a-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T15:00:43.015000", "message_id": "21a8b3ea-ff72-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T15:00:43.015000", "message_id": "21a8b3ea-ff72-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T14:00:40.793000", "message_id": "be8fdc5a-ff69-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T14:00:40.793000", "message_id": "be8fdc5a-ff69-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T13:00:38.015000", "message_id": "5b22b33e-ff61-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T12:00:35.541000", "message_id": "f7e5dcea-ff58-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T12:00:35.541000", "message_id": "f7e5dcea-ff58-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T11:00:33.074000", "message_id": "94a8744c-ff50-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T11:00:33.074000", "message_id": "94a8744c-ff50-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T10:00:28.878000", "message_id": "3063a6d0-ff48-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T10:00:28.878000", "message_id": "3063a6d0-ff48-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T09:00:26.158000", "message_id": "ccffe728-ff3f-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T08:00:23.717000", "message_id": "69c8aee0-ff37-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T08:00:23.717000", "message_id": "69c8aee0-ff37-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T07:00:21.549000", "message_id": "06b6ca4c-ff2f-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T06:00:16.339000", "message_id": "a1d6d6ba-ff26-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T05:00:13.058000", "message_id": "3e1fab4a-ff1e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T05:00:13.058000", "message_id": "3e1fab4a-ff1e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T04:00:10.435000", "message_id": "dacebc50-ff15-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T04:00:10.435000", "message_id": "dacebc50-ff15-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T03:00:06.778000", "message_id": "76d83012-ff0d-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T03:00:06.778000", "message_id": "76d83012-ff0d-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T02:00:03.865000", "message_id": "1356c04c-ff05-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T01:00:01.898000", "message_id": "b0678fd2-fefc-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T01:00:01.898000", "message_id": "b0678fd2-fefc-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T00:00:01.185000", "message_id": "4e366c00-fef4-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T00:00:01.185000", "message_id": "4e366c00-fef4-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-06T23:00:36.393000", "message_id": "016d0b16-feec-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-06T23:00:36.393000", "message_id": "016d0b16-feec-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-06T22:00:00.257000", "message_id": "8a27d9c6-fee3-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-06T22:00:00.257000", "message_id": "8a27d9c6-fee3-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-06T21:00:12.864000", "message_id": "2fdd1d76-fedb-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-06T20:00:01.589000", "message_id": "c76ab166-fed2-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-06T20:00:01.589000", "message_id": "c76ab166-fed2-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-06T20:00:01.589000", "message_id": "c76ab166-fed2-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-06T19:00:52.241000", "message_id": "83ceccce-feca-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-06T18:00:45.903000", "message_id": "1e43326c-fec2-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-06T17:00:34.359000", "message_id": "b5a5d014-feb9-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-06T17:00:34.359000", "message_id": "b5a5d014-feb9-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-06T16:00:25.210000", "message_id": "4e65e0f4-feb1-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-06T15:00:16.218000", "message_id": "e742935c-fea8-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-06T14:00:07.244000", "message_id": "8025831c-fea0-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-06T13:01:00.106000", "message_id": "3de2733c-fe98-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-06T12:00:50.842000", "message_id": "d69bfeda-fe8f-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-06T12:00:50.842000", "message_id": "d69bfeda-fe8f-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-06T11:00:42.155000", "message_id": "6fa6a7be-fe87-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-06T10:00:33.147000", "message_id": "088443c8-fe7f-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-06T09:00:25.644000", "message_id": "a247353c-fe76-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-06T09:00:25.644000", "message_id": "a247353c-fe76-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-06T08:00:15.374000", "message_id": "3a62c470-fe6e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-06T07:00:06.709000", "message_id": "d37647c6-fe65-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-06T07:00:06.709000", "message_id": "d37647c6-fe65-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-06T06:00:59.168000", "message_id": "90f51ce0-fe5d-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-06T05:00:49.834000", "message_id": "29a00832-fe55-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-06T04:00:41.447000", "message_id": "c2dcc9c6-fe4c-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-06T03:00:32.513000", "message_id": "5bc3fc12-fe44-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-06T02:00:23.108000", "message_id": "f46538b8-fe3b-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-06T01:00:14.104000", "message_id": "8d4291c4-fe33-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-06T01:00:14.104000", "message_id": "8d4291c4-fe33-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-06T00:00:05.594000", "message_id": "266cc1ca-fe2b-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-05T23:00:58.868000", "message_id": "e46758ec-fe22-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-05T22:00:49.211000", "message_id": "7ce1bc88-fe1a-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-05T21:00:40.358000", "message_id": "15d664e2-fe12-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-05T20:00:32.318000", "message_id": "af476fbc-fe09-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-05T19:00:24.219000", "message_id": "48aebf1a-fe01-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-05T18:00:16.095000", "message_id": "e212a01c-fdf8-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-05T17:00:08.185000", "message_id": "7b9802bc-fdf0-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-05T16:00:00.104000", "message_id": "15025e56-fde8-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-05T15:00:53.620000", "message_id": "d324a94c-fddf-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-05T14:00:45.797000", "message_id": "6cb65f00-fdd7-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-05T13:00:37.599000", "message_id": "060ebce6-fdcf-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-05T12:00:29.375000", "message_id": "9f64094a-fdc6-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-05T11:00:21.406000", "message_id": "38debefc-fdbe-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-05T10:00:13.148000", "message_id": "d22e045e-fdb5-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-05T09:00:05.225000", "message_id": "6bb1940a-fdad-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-05T08:00:58.603000", "message_id": "29be2f16-fda5-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-05T07:00:50.476000", "message_id": "c320d77a-fd9c-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-05T06:00:42.317000", "message_id": "5c7f9b4e-fd94-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-05T05:00:34.590000", "message_id": "f621c94c-fd8b-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-05T04:00:23.743000", "message_id": "8de36ae6-fd83-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-05T03:00:18.260000", "message_id": "28dc1632-fd7b-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-05T02:00:12.649000", "message_id": "c3be419c-fd72-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-05T01:00:05.445000", "message_id": "5daffe0c-fd6a-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-05T00:00:56.875000", "message_id": "1a926fcc-fd62-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-04 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-04T23:58:54.807000", "message_id": "d1d10596-fd61-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.create.end", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "message": "Success", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.571256", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-04T23:58:54.640000", "message_id": "d1b8794a-fd61-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.update", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "old_state": "building", "old_task_state": "spawning", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-04T23:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04 23:58:46", "launched_at": "2013-08-04T23:58:54.571256", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "None", "audit_period_ending": "2013-08-04T23:58:54.628545", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-04T23:58:50.875000", "message_id": "cf78033a-fd61-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "spawning", "event_type": "compute.instance.update", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "building", "old_state": "None", "old_task_state": "None", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-04T23:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04 23:58:46", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "spawning", "audit_period_ending": "2013-08-04T23:58:50.872238", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-04T23:58:49.572000", "message_id": "ceb226e2-fd61-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "spawning", "event_type": "compute.instance.update", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "building", "old_state": "building", "old_task_state": "block_device_mapping", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-04T23:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04 23:58:46", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "spawning", "audit_period_ending": "2013-08-04T23:58:49.569396", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-04T23:58:48.595000", "message_id": "ce1d7e0c-fd61-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "block_device_mapping", "event_type": "compute.instance.update", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "building", "old_state": "building", "old_task_state": "networking", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-04T23:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04 23:58:46", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "block_device_mapping", "audit_period_ending": "2013-08-04T23:58:48.588834", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-04T23:58:48.411000", "message_id": "cdff4630-fd61-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "networking", "event_type": "compute.instance.update", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "building", "old_state": "building", "old_task_state": "None", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-04T23:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04 23:58:46", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "networking", "audit_period_ending": "2013-08-04T23:58:48.409052", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-04T23:58:48.244000", "message_id": "cde8f5ba-fd61-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.update", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "building", "old_state": "None", "old_task_state": "None", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-04T23:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04 23:58:46", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "None", "audit_period_ending": "2013-08-04T23:58:48.240772", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-04T23:58:47.948000", "message_id": "cdd15a4a-fd61-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "scheduling", "event_type": "compute.instance.create.start", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "message": "", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "display_name": "trogdor", "hostname": "trogdor", "state": "building", "launched_at": "", "node": "None", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "user_id": "2b8fbe55863d4dfab5310796202b2019", "image_ref_url": "http://10.0.2.15:9292/images/", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-04T23:58:47.868000", "message_id": "cdb5b1dc-fd61-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.update", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "building", "old_state": "building", "old_task_state": "scheduling", "node": "None", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-04T23:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04 23:58:46", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "None", "audit_period_ending": "2013-08-04T23:58:47.856726", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-04T23:58:46.651000", "message_id": "ccfbfc74-fd61-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "scheduling", "event_type": "compute.instance.update", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "building", "old_state": "None", "old_task_state": "None", "node": "None", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "api.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-04T23:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04 23:58:46.466092", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "scheduling", "audit_period_ending": "2013-08-04T23:58:46.634349", "os_type": "None"}, "counter_type": "gauge"}], "http://localhost:8777/v2/meters/memory?q.field=resource_id&q.value=03bd0d4c-99da-4ccf-b308-2721f33e84ef": [{"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-12T04:00:31.053000", "message_id": "bb2240c4-0303-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-12 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-12T03:00:51.352000", "message_id": "6576fea6-02fb-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-12 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-12T02:00:27.616000", "message_id": "f58da6a6-02f2-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-12 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-12T01:00:46.889000", "message_id": "9f544874-02ea-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-12 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-12T00:00:24.671000", "message_id": "3043eb90-02e2-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-12T00:00:24.671000", "message_id": "3043eb90-02e2-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-11T23:00:42.248000", "message_id": "d8f84514-02d9-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-11T22:00:20.970000", "message_id": "6a85251e-02d1-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-11T21:00:29.949000", "message_id": "0e1abc42-02c9-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-11T20:00:18.045000", "message_id": "a53dedc8-02c0-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-11T19:00:11.694000", "message_id": "3fb05426-02b8-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-11T18:00:02.953000", "message_id": "d8b64f26-02af-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-11T17:00:49.659000", "message_id": "92c8977e-02a7-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-11T16:00:45.632000", "message_id": "2e9e1394-029f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-11T15:00:36.644000", "message_id": "c77dec64-0296-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-11T14:00:27.890000", "message_id": "60820fac-028e-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-11T13:00:20.170000", "message_id": "fa234d82-0285-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-11T12:00:11.470000", "message_id": "932fa6d2-027d-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-11T11:00:02.791000", "message_id": "2c3efba6-0275-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-11T10:00:29.291000", "message_id": "da46181e-026c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-11T09:00:26.242000", "message_id": "76b08648-0264-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-11T08:00:23.175000", "message_id": "1317fd4e-025c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-11T07:00:19.779000", "message_id": "af4e91fe-0253-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-11T06:00:16.376000", "message_id": "4b818594-024b-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-11T05:00:05.169000", "message_id": "e310b76c-0242-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-11T04:00:09.136000", "message_id": "83aa6730-023a-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-11T03:00:02.103000", "message_id": "1db50168-0232-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-11T02:00:02.814000", "message_id": "bc5ab622-0229-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-11T01:00:00.542000", "message_id": "593c535a-0221-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-11T00:00:59.421000", "message_id": "1a8f5a60-0219-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T23:00:56.995000", "message_id": "b758d1ea-0210-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T22:00:51.157000", "message_id": "521bceca-0208-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T22:00:51.157000", "message_id": "521bceca-0208-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T21:00:43.938000", "message_id": "ec07ef40-01ff-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T20:00:38.819000", "message_id": "8738920c-01f7-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T19:00:35.266000", "message_id": "2353da4c-01ef-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T18:00:31.825000", "message_id": "bf848668-01e6-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T18:00:31.825000", "message_id": "bf848668-01e6-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T17:00:28.325000", "message_id": "5ba78e18-01de-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T16:00:25.399000", "message_id": "f82508f0-01d5-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T15:00:22.178000", "message_id": "9474ebd4-01cd-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T15:00:22.178000", "message_id": "9474ebd4-01cd-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T14:00:19.113000", "message_id": "30dcba78-01c5-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T13:00:15.642000", "message_id": "cd06bdc6-01bc-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T12:00:04.219000", "message_id": "6473dac6-01b4-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T11:00:00.207000", "message_id": "004dca28-01ac-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T10:00:57.777000", "message_id": "c0d6b6c8-01a3-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T09:00:54.231000", "message_id": "5cf58236-019b-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T08:00:51.280000", "message_id": "f970ef6e-0192-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T07:00:47.572000", "message_id": "9576c734-018a-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T06:00:44.446000", "message_id": "31d46950-0182-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T05:00:41.286000", "message_id": "ce2cd17e-0179-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T04:00:38.426000", "message_id": "6ab5a3a8-0171-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T03:00:35.018000", "message_id": "06e78fba-0169-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T02:00:32.158000", "message_id": "a36ee6f2-0160-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T01:00:28.476000", "message_id": "3f79df9c-0158-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T00:00:24.164000", "message_id": "db237fa6-014f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-09T23:00:20.491000", "message_id": "772e2fb2-0147-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-09T22:00:16.917000", "message_id": "13482488-013f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-09T21:00:13.410000", "message_id": "af6dafa8-0136-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-09T20:00:10.365000", "message_id": "4bd792f4-012e-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-09T19:00:06.976000", "message_id": "e80da6a8-0125-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-09T18:00:05.339000", "message_id": "854ec3d8-011d-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-09T17:00:01.471000", "message_id": "213c7c62-0115-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-09T16:00:59.697000", "message_id": "e22ccfac-010c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-09T15:00:53.117000", "message_id": "7c7cbd64-0104-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-09T14:00:42.273000", "message_id": "144161bc-00fc-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-09T13:00:31.898000", "message_id": "ac4f09d6-00f3-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-09T12:00:21.607000", "message_id": "4466df90-00eb-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-09T11:00:11.695000", "message_id": "dcb9dcc4-00e2-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-09T10:00:01.933000", "message_id": "7525eed4-00da-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-09T09:00:53.697000", "message_id": "323a8362-00d2-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-09T08:00:44.760000", "message_id": "cb2224b2-00c9-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-09T07:00:35.580000", "message_id": "63e69204-00c1-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-09T06:00:27.420000", "message_id": "fd435774-00b8-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-09T05:00:17.823000", "message_id": "95c66a9e-00b0-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-09T04:00:02.333000", "message_id": "2ac8b2a4-00a8-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-09T04:00:02.333000", "message_id": "2ac8b2a4-00a8-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-09T03:00:52.964000", "message_id": "e733f5b0-009f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-09T03:00:52.964000", "message_id": "e733f5b0-009f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-09T02:00:37.311000", "message_id": "7c17978a-0097-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-09T01:00:26.887000", "message_id": "141c9f52-008f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-09T00:00:17.043000", "message_id": "ac7b55ee-0086-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-08T23:00:07.558000", "message_id": "450f2afa-007e-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-08T22:01:01.330000", "message_id": "03561dd8-0076-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-08T21:00:52.280000", "message_id": "9c2cf454-006d-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-08T20:00:43.525000", "message_id": "3530a0b4-0065-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-08T19:00:36.777000", "message_id": "cf675f28-005c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-08T18:00:29.353000", "message_id": "6935f528-0054-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-08T17:00:22.361000", "message_id": "0346bdf4-004c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-08T16:00:13.975000", "message_id": "9c822048-0043-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-08T15:00:07.748000", "message_id": "3707934a-003b-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-08T14:01:00.700000", "message_id": "f4d32622-0032-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-08T13:00:51.666000", "message_id": "8daf4780-002a-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-08T13:00:51.666000", "message_id": "8daf4780-002a-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-08T12:00:42.597000", "message_id": "2681fd62-0022-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-08T11:00:35.748000", "message_id": "c0a82d98-0019-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-08T10:00:28.454000", "message_id": "5a8af7fa-0011-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-08T09:00:25.591000", "message_id": "f71020f4-0008-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-08T08:00:23.234000", "message_id": "93e3e3e2-0000-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-08T07:00:21.302000", "message_id": "30f87016-fff8-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-08T07:00:21.302000", "message_id": "30f87016-fff8-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-08T06:00:19.341000", "message_id": "ce0990f0-ffef-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-08T05:00:17.519000", "message_id": "6b2f74a2-ffe7-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-08T04:00:15.923000", "message_id": "0876668e-ffdf-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-08T03:00:13.875000", "message_id": "a5799e1e-ffd6-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-08T02:00:12.079000", "message_id": "42a4575a-ffce-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-08T01:00:10.203000", "message_id": "dfc061ae-ffc5-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-08T00:00:08.648000", "message_id": "7d102c86-ffbd-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T23:00:03.847000", "message_id": "186fa28c-ffb5-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T22:00:01.368000", "message_id": "b52f43ce-ffac-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T21:00:58.355000", "message_id": "7562e1ae-ffa4-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T20:00:55.785000", "message_id": "1215ab5c-ff9c-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T19:00:51.102000", "message_id": "ad8a064a-ff93-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T19:00:51.102000", "message_id": "ad8a064a-ff93-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T19:00:51.102000", "message_id": "ad8a064a-ff93-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T19:00:51.102000", "message_id": "ad8a064a-ff93-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T18:00:49.593000", "message_id": "4adc620c-ff8b-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T17:00:47.506000", "message_id": "e7da3024-ff82-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T16:00:45.287000", "message_id": "84c20e9c-ff7a-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T15:00:43.015000", "message_id": "21a475f0-ff72-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T14:00:40.793000", "message_id": "be8b7dae-ff69-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T13:00:38.015000", "message_id": "5b1f3952-ff61-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T12:00:35.541000", "message_id": "f7e201d8-ff58-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T11:00:33.074000", "message_id": "94a5fa00-ff50-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T10:00:28.878000", "message_id": "30604ff8-ff48-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T09:00:26.158000", "message_id": "ccfc68f0-ff3f-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T08:00:23.717000", "message_id": "69c42ff0-ff37-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T07:00:21.549000", "message_id": "06b49038-ff2f-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T06:00:16.339000", "message_id": "a1d4fad4-ff26-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T05:00:13.058000", "message_id": "3e1d546c-ff1e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T04:00:10.435000", "message_id": "dac92b14-ff15-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T03:00:06.778000", "message_id": "76d64400-ff0d-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T02:00:03.865000", "message_id": "1353ef70-ff05-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T01:00:01.898000", "message_id": "b064a2f4-fefc-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T00:00:01.185000", "message_id": "4e3260ec-fef4-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-06T23:00:36.393000", "message_id": "016a856c-feec-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-06T22:00:00.257000", "message_id": "8a1dfc58-fee3-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-06T22:00:00.257000", "message_id": "8a1dfc58-fee3-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-06T21:00:12.864000", "message_id": "2fdaf6cc-fedb-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-06T20:00:01.589000", "message_id": "c75fd250-fed2-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-06T20:00:01.589000", "message_id": "c75fd250-fed2-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-06T19:00:52.241000", "message_id": "83cb48b0-feca-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-06T18:00:45.903000", "message_id": "1e4115d6-fec2-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-06T17:00:34.359000", "message_id": "b5995b40-feb9-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-06T17:00:34.359000", "message_id": "b5995b40-feb9-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-06T16:00:25.210000", "message_id": "4e615fb6-feb1-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-06T15:00:16.218000", "message_id": "e74066a4-fea8-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-06T14:00:07.244000", "message_id": "8022c640-fea0-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-06T13:01:00.106000", "message_id": "3de04f1c-fe98-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-06T12:00:50.842000", "message_id": "d69683a6-fe8f-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-06T11:00:42.155000", "message_id": "6fa4c2e6-fe87-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-06T10:00:33.147000", "message_id": "0881774c-fe7f-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-06T09:00:25.644000", "message_id": "a24446ec-fe76-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-06T08:00:15.374000", "message_id": "3a60f73a-fe6e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-06T07:00:06.709000", "message_id": "d37304da-fe65-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-06T06:00:59.168000", "message_id": "90f2bac2-fe5d-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-06T05:00:49.834000", "message_id": "299ddf8a-fe55-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-06T04:00:41.447000", "message_id": "c2d98e14-fe4c-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-06T03:00:32.513000", "message_id": "5bc20df8-fe44-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-06T02:00:23.108000", "message_id": "f463046c-fe3b-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-06T01:00:14.104000", "message_id": "8d3fff4a-fe33-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-06T00:00:05.594000", "message_id": "2669dc26-fe2b-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-05T23:00:58.868000", "message_id": "e46584d6-fe22-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-05T22:00:49.211000", "message_id": "7cdf8d3c-fe1a-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-05T21:00:40.358000", "message_id": "15d459f4-fe12-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-05T20:00:32.318000", "message_id": "af453648-fe09-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-05T19:00:24.219000", "message_id": "48acde8e-fe01-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-05T18:00:16.095000", "message_id": "e210dc46-fdf8-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-05T17:00:08.185000", "message_id": "7b95b908-fdf0-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-05T16:00:00.104000", "message_id": "15002d20-fde8-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-05T15:00:53.620000", "message_id": "d321d74e-fddf-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-05T14:00:45.797000", "message_id": "6cb3bba6-fdd7-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-05T13:00:37.599000", "message_id": "060c2fbc-fdcf-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-05T12:00:29.375000", "message_id": "9f6149da-fdc6-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-05T11:00:21.406000", "message_id": "38dcd268-fdbe-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-05T10:00:13.148000", "message_id": "d22c1018-fdb5-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-05T09:00:05.225000", "message_id": "6baf2580-fdad-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-05T08:00:58.603000", "message_id": "29bc6d5c-fda5-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-05T07:00:50.476000", "message_id": "c31ec714-fd9c-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-05T06:00:42.317000", "message_id": "5c7d40ec-fd94-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-05T05:00:34.590000", "message_id": "f61e0d5c-fd8b-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-05T04:00:23.743000", "message_id": "8de21074-fd83-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-05T03:00:18.260000", "message_id": "28d95d7a-fd7b-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-05T02:00:12.649000", "message_id": "c3bcf99a-fd72-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-05T01:00:05.445000", "message_id": "5dad0210-fd6a-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-05T00:00:56.875000", "message_id": "1a90156a-fd62-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-04 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-04T23:58:54.807000", "message_id": "d1cf1682-fd61-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.create.end", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "message": "Success", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.571256", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-04T23:58:54.640000", "message_id": "d1b4fd74-fd61-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.update", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "old_state": "building", "old_task_state": "spawning", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-04T23:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04 23:58:46", "launched_at": "2013-08-04T23:58:54.571256", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "None", "audit_period_ending": "2013-08-04T23:58:54.628545", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-04T23:58:50.875000", "message_id": "cf75dbd2-fd61-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "spawning", "event_type": "compute.instance.update", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "building", "old_state": "None", "old_task_state": "None", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-04T23:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04 23:58:46", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "spawning", "audit_period_ending": "2013-08-04T23:58:50.872238", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-04T23:58:49.572000", "message_id": "ceaf6236-fd61-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "spawning", "event_type": "compute.instance.update", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "building", "old_state": "building", "old_task_state": "block_device_mapping", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-04T23:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04 23:58:46", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "spawning", "audit_period_ending": "2013-08-04T23:58:49.569396", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-04T23:58:48.595000", "message_id": "ce1a9660-fd61-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "block_device_mapping", "event_type": "compute.instance.update", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "building", "old_state": "building", "old_task_state": "networking", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-04T23:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04 23:58:46", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "block_device_mapping", "audit_period_ending": "2013-08-04T23:58:48.588834", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-04T23:58:48.411000", "message_id": "cdfdd322-fd61-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "networking", "event_type": "compute.instance.update", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "building", "old_state": "building", "old_task_state": "None", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-04T23:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04 23:58:46", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "networking", "audit_period_ending": "2013-08-04T23:58:48.409052", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-04T23:58:48.244000", "message_id": "cde4bd2e-fd61-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.update", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "building", "old_state": "None", "old_task_state": "None", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-04T23:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04 23:58:46", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "None", "audit_period_ending": "2013-08-04T23:58:48.240772", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-04T23:58:47.948000", "message_id": "cdcf8e68-fd61-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "scheduling", "event_type": "compute.instance.create.start", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "message": "", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "display_name": "trogdor", "hostname": "trogdor", "state": "building", "launched_at": "", "node": "None", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "user_id": "2b8fbe55863d4dfab5310796202b2019", "image_ref_url": "http://10.0.2.15:9292/images/", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-04T23:58:47.868000", "message_id": "cdb2f8c0-fd61-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.update", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "building", "old_state": "building", "old_task_state": "scheduling", "node": "None", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-04T23:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04 23:58:46", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "None", "audit_period_ending": "2013-08-04T23:58:47.856726", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-04T23:58:46.651000", "message_id": "ccf86654-fd61-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "scheduling", "event_type": "compute.instance.update", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "building", "old_state": "None", "old_task_state": "None", "node": "None", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "api.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-04T23:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04 23:58:46.466092", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "scheduling", "audit_period_ending": "2013-08-04T23:58:46.634349", "os_type": "None"}, "counter_type": "gauge"}], "http://localhost:8777/v2/meters/disk.root.size?q.field=resource_id&q.value=03bd0d4c-99da-4ccf-b308-2721f33e84ef": [{"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-12T04:00:31.053000", "message_id": "bb3a9dfe-0303-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-12 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-12T03:00:51.352000", "message_id": "659aeda2-02fb-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-12 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-12T02:00:27.616000", "message_id": "f5b3541e-02f2-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-12 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-12T01:00:46.889000", "message_id": "9f976ba4-02ea-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-12 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-12T00:00:24.671000", "message_id": "307cf778-02e2-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-11T23:00:42.248000", "message_id": "d939a61c-02d9-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-11T23:00:42.248000", "message_id": "d939a61c-02d9-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-11T23:00:42.248000", "message_id": "d939a61c-02d9-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-11T22:00:20.970000", "message_id": "6aa9831e-02d1-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-11T21:00:29.949000", "message_id": "0e594746-02c9-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-11T20:00:18.045000", "message_id": "a55a5ef4-02c0-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-11T19:00:11.694000", "message_id": "3fcf0948-02b8-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-11T18:00:02.953000", "message_id": "d8d5b488-02af-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-11T17:00:49.659000", "message_id": "92f7de12-02a7-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-11T16:00:45.632000", "message_id": "2ecd6c98-029f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-11T15:00:36.644000", "message_id": "c7a49990-0296-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-11T14:00:27.890000", "message_id": "60b1182e-028e-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-11T13:00:20.170000", "message_id": "fa500d4a-0285-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-11T12:00:11.470000", "message_id": "936b38e6-027d-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-11T12:00:11.470000", "message_id": "936b38e6-027d-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-11T12:00:11.470000", "message_id": "936b38e6-027d-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-11T12:00:11.470000", "message_id": "936b38e6-027d-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-11T12:00:11.470000", "message_id": "936b38e6-027d-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-11T11:00:02.791000", "message_id": "2c665c14-0275-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-11T11:00:02.791000", "message_id": "2c665c14-0275-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-11T11:00:02.791000", "message_id": "2c665c14-0275-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-11T11:00:02.791000", "message_id": "2c665c14-0275-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-11T11:00:02.791000", "message_id": "2c665c14-0275-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-11T10:00:29.291000", "message_id": "da6598ec-026c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-11T09:00:26.242000", "message_id": "76ccd352-0264-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-11T08:00:23.175000", "message_id": "1334a7aa-025c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-11T07:00:19.779000", "message_id": "af6856ca-0253-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-11T06:00:16.376000", "message_id": "4bb6dd02-024b-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-11T05:00:05.169000", "message_id": "e33fe460-0242-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-11T04:00:09.136000", "message_id": "83d9cffc-023a-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-11T04:00:09.136000", "message_id": "83d9cffc-023a-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-11T04:00:09.136000", "message_id": "83d9cffc-023a-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-11T04:00:09.136000", "message_id": "83d9cffc-023a-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-11T04:00:09.136000", "message_id": "83d9cffc-023a-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-11T03:00:02.103000", "message_id": "1df4ec60-0232-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-11T02:00:02.814000", "message_id": "bc7f7016-0229-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-11T01:00:00.542000", "message_id": "5970dc10-0221-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-11T00:00:59.421000", "message_id": "1ab067aa-0219-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T23:00:56.995000", "message_id": "b7862d48-0210-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T22:00:51.157000", "message_id": "5248a440-0208-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T21:00:43.938000", "message_id": "ec4e323e-01ff-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T20:00:38.819000", "message_id": "87672d4c-01f7-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T19:00:35.266000", "message_id": "2393ea38-01ef-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T18:00:31.825000", "message_id": "bfbd755e-01e6-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T18:00:31.825000", "message_id": "bfbd755e-01e6-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T17:00:28.325000", "message_id": "5bdf934e-01de-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T16:00:25.399000", "message_id": "f851ddf8-01d5-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T15:00:22.178000", "message_id": "94b7c030-01cd-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T14:00:19.113000", "message_id": "3113c4a0-01c5-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T13:00:15.642000", "message_id": "cd321f0c-01bc-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T12:00:04.219000", "message_id": "64b703f0-01b4-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T11:00:00.207000", "message_id": "008c2bb0-01ac-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T11:00:00.207000", "message_id": "008c2bb0-01ac-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T10:00:57.777000", "message_id": "c0f2dda8-01a3-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T09:00:54.231000", "message_id": "5d30e858-019b-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T08:00:51.280000", "message_id": "f99bf010-0192-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T08:00:51.280000", "message_id": "f99bf010-0192-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T07:00:47.572000", "message_id": "95c6902a-018a-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T07:00:47.572000", "message_id": "95c6902a-018a-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T07:00:47.572000", "message_id": "95c6902a-018a-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T06:00:44.446000", "message_id": "320df710-0182-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T05:00:41.286000", "message_id": "ce6b52fa-0179-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T05:00:41.286000", "message_id": "ce6b52fa-0179-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T05:00:41.286000", "message_id": "ce6b52fa-0179-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T05:00:41.286000", "message_id": "ce6b52fa-0179-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T05:00:41.286000", "message_id": "ce6b52fa-0179-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T04:00:38.426000", "message_id": "6af3dd4e-0171-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T03:00:35.018000", "message_id": "07115124-0169-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T03:00:35.018000", "message_id": "07115124-0169-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T03:00:35.018000", "message_id": "07115124-0169-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T03:00:35.018000", "message_id": "07115124-0169-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T03:00:35.018000", "message_id": "07115124-0169-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T02:00:32.158000", "message_id": "a3b67814-0160-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T02:00:32.158000", "message_id": "a3b67814-0160-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T01:00:28.476000", "message_id": "3fa40c54-0158-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T00:00:24.164000", "message_id": "db56f264-014f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-09T23:00:20.491000", "message_id": "7768f340-0147-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-09T22:00:16.917000", "message_id": "13620d12-013f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-09T21:00:13.410000", "message_id": "af9ef360-0136-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-09T20:00:10.365000", "message_id": "4c0ce094-012e-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-09T19:00:06.976000", "message_id": "e8292478-0125-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-09T18:00:05.339000", "message_id": "85679a8e-011d-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-09T17:00:01.471000", "message_id": "216e03a4-0115-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-09T16:00:59.697000", "message_id": "e254ccbe-010c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-09T15:00:53.117000", "message_id": "7caaa562-0104-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-09T14:00:42.273000", "message_id": "1475f35a-00fc-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-09T13:00:31.898000", "message_id": "ac7bfacc-00f3-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-09T12:00:21.607000", "message_id": "4497f22e-00eb-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-09T11:00:11.695000", "message_id": "dcd7c4aa-00e2-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-09T10:00:01.933000", "message_id": "7553bcb0-00da-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-09T09:00:53.697000", "message_id": "32533f2e-00d2-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-09T08:00:44.760000", "message_id": "cb3cec84-00c9-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-09T07:00:35.580000", "message_id": "64163f54-00c1-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-09T06:00:27.420000", "message_id": "fd63f9fc-00b8-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-09T05:00:17.823000", "message_id": "960525d6-00b0-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-09T04:00:02.333000", "message_id": "2aee732c-00a8-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-09T03:00:52.964000", "message_id": "e76828d0-009f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-09T02:00:37.311000", "message_id": "7c31b296-0097-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-09T01:00:26.887000", "message_id": "143eb6c8-008f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-09T01:00:26.887000", "message_id": "143eb6c8-008f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-09T01:00:26.887000", "message_id": "143eb6c8-008f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-09T01:00:26.887000", "message_id": "143eb6c8-008f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-09T01:00:26.887000", "message_id": "143eb6c8-008f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-09T00:00:17.043000", "message_id": "acbc9504-0086-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-08T23:00:07.558000", "message_id": "4533f286-007e-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-08T22:01:01.330000", "message_id": "039460a2-0076-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-08T21:00:52.280000", "message_id": "9c569516-006d-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-08T20:00:43.525000", "message_id": "355b6ee8-0065-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-08T19:00:36.777000", "message_id": "cf984aac-005c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-08T18:00:29.353000", "message_id": "695fbe3a-0054-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-08T17:00:22.361000", "message_id": "0375b744-004c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-08T16:00:13.975000", "message_id": "9ca71e70-0043-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-08T15:00:07.748000", "message_id": "373b0ec8-003b-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-08T14:01:00.700000", "message_id": "f5073fca-0032-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-08T13:00:51.666000", "message_id": "8e055404-002a-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-08T12:00:42.597000", "message_id": "26a86678-0022-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-08T12:00:42.597000", "message_id": "26a86678-0022-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-08T12:00:42.597000", "message_id": "26a86678-0022-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-08T11:00:35.748000", "message_id": "c0c81fae-0019-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-08T10:00:28.454000", "message_id": "5abae104-0011-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-08T09:00:25.591000", "message_id": "f72857f0-0008-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-08T08:00:23.234000", "message_id": "940d6686-0000-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-08T07:00:21.302000", "message_id": "31379ba6-fff8-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-08T07:00:21.302000", "message_id": "31379ba6-fff8-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-08T07:00:21.302000", "message_id": "31379ba6-fff8-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-08T07:00:21.302000", "message_id": "31379ba6-fff8-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-08T07:00:21.302000", "message_id": "31379ba6-fff8-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-08T06:00:19.341000", "message_id": "ce454df2-ffef-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-08T05:00:17.519000", "message_id": "6b6ef488-ffe7-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-08T04:00:15.923000", "message_id": "08aac8c0-ffdf-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-08T03:00:13.875000", "message_id": "a5965090-ffd6-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-08T02:00:12.079000", "message_id": "42c0f3d8-ffce-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-08T02:00:12.079000", "message_id": "42c0f3d8-ffce-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-08T01:00:10.203000", "message_id": "dff51480-ffc5-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-08T01:00:10.203000", "message_id": "dff51480-ffc5-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-08T01:00:10.203000", "message_id": "dff51480-ffc5-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-08T01:00:10.203000", "message_id": "dff51480-ffc5-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-08T01:00:10.203000", "message_id": "dff51480-ffc5-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-08T00:00:08.648000", "message_id": "7d52f1d8-ffbd-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T23:00:03.847000", "message_id": "1889fe16-ffb5-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T23:00:03.847000", "message_id": "1889fe16-ffb5-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T23:00:03.847000", "message_id": "1889fe16-ffb5-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T23:00:03.847000", "message_id": "1889fe16-ffb5-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T23:00:03.847000", "message_id": "1889fe16-ffb5-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T22:00:01.368000", "message_id": "b55ed9d6-ffac-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T22:00:01.368000", "message_id": "b55ed9d6-ffac-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T22:00:01.368000", "message_id": "b55ed9d6-ffac-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T22:00:01.368000", "message_id": "b55ed9d6-ffac-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T21:00:58.355000", "message_id": "759f0044-ffa4-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T20:00:55.785000", "message_id": "122e70e2-ff9c-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T19:00:51.102000", "message_id": "adcccdea-ff93-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T18:00:49.593000", "message_id": "4b029508-ff8b-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T18:00:49.593000", "message_id": "4b029508-ff8b-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T18:00:49.593000", "message_id": "4b029508-ff8b-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T18:00:49.593000", "message_id": "4b029508-ff8b-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T18:00:49.593000", "message_id": "4b029508-ff8b-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T17:00:47.506000", "message_id": "e7f6a290-ff82-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T16:00:45.287000", "message_id": "84ed2654-ff7a-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T16:00:45.287000", "message_id": "84ed2654-ff7a-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T16:00:45.287000", "message_id": "84ed2654-ff7a-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T16:00:45.287000", "message_id": "84ed2654-ff7a-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T16:00:45.287000", "message_id": "84ed2654-ff7a-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T15:00:43.015000", "message_id": "21db6754-ff72-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T15:00:43.015000", "message_id": "21db6754-ff72-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T14:00:40.793000", "message_id": "bec71378-ff69-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T14:00:40.793000", "message_id": "bec71378-ff69-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T14:00:40.793000", "message_id": "bec71378-ff69-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T14:00:40.793000", "message_id": "bec71378-ff69-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T13:00:38.015000", "message_id": "5b42aa18-ff61-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T12:00:35.541000", "message_id": "f821d876-ff58-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T11:00:33.074000", "message_id": "94d0f14c-ff50-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T10:00:28.878000", "message_id": "30928a90-ff48-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T09:00:26.158000", "message_id": "cd3b1168-ff3f-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T08:00:23.717000", "message_id": "69fa3bc2-ff37-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T08:00:23.717000", "message_id": "69fa3bc2-ff37-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T08:00:23.717000", "message_id": "69fa3bc2-ff37-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T08:00:23.717000", "message_id": "69fa3bc2-ff37-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T07:00:21.549000", "message_id": "06e68be2-ff2f-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T06:00:16.339000", "message_id": "a20dcb52-ff26-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T05:00:13.058000", "message_id": "3e50969c-ff1e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T04:00:10.435000", "message_id": "db048b32-ff15-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T03:00:06.778000", "message_id": "76fa89c8-ff0d-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T02:00:03.865000", "message_id": "1383fd00-ff05-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T01:00:01.898000", "message_id": "b08e2822-fefc-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T00:00:01.185000", "message_id": "4e557b54-fef4-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-06T23:00:36.393000", "message_id": "01968626-feec-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-06T22:00:00.257000", "message_id": "8a6ac6a0-fee3-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-06T21:00:12.864000", "message_id": "2ffa443c-fedb-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-06T20:00:01.589000", "message_id": "c7ae5da8-fed2-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-06T19:00:52.241000", "message_id": "83f13368-feca-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-06T18:00:45.903000", "message_id": "1e6fd308-fec2-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-06T17:00:34.359000", "message_id": "b5e51fb2-feb9-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-06T16:00:25.210000", "message_id": "4e808ef4-feb1-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-06T15:00:16.218000", "message_id": "e767ef12-fea8-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-06T14:00:07.244000", "message_id": "8045776c-fea0-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-06T13:01:00.106000", "message_id": "3dfc453c-fe98-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-06T12:00:50.842000", "message_id": "d6c7a936-fe8f-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-06T11:00:42.155000", "message_id": "6fb8f338-fe87-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-06T10:00:33.147000", "message_id": "08a2c4a6-fe7f-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-06T09:00:25.644000", "message_id": "a2671f5a-fe76-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-06T08:00:15.374000", "message_id": "3a8f3258-fe6e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-06T07:00:06.709000", "message_id": "d39be800-fe65-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-06T07:00:06.709000", "message_id": "d39be800-fe65-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-06T07:00:06.709000", "message_id": "d39be800-fe65-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-06T07:00:06.709000", "message_id": "d39be800-fe65-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-06T06:00:59.168000", "message_id": "9109962a-fe5d-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-06T06:00:59.168000", "message_id": "9109962a-fe5d-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-06T06:00:59.168000", "message_id": "9109962a-fe5d-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-06T05:00:49.834000", "message_id": "29c6866a-fe55-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-06T05:00:49.834000", "message_id": "29c6866a-fe55-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-06T05:00:49.834000", "message_id": "29c6866a-fe55-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-06T04:00:41.447000", "message_id": "c312cdaa-fe4c-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-06T03:00:32.513000", "message_id": "5be629f4-fe44-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-06T02:00:23.108000", "message_id": "f47fbbe8-fe3b-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-06T01:00:14.104000", "message_id": "8d712d54-fe33-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-06T00:00:05.594000", "message_id": "26905b80-fe2b-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-05T23:00:58.868000", "message_id": "e4705988-fe22-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-05T22:00:49.211000", "message_id": "7d026ab4-fe1a-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-05T21:00:40.358000", "message_id": "15f514c8-fe12-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-05T21:00:40.358000", "message_id": "15f514c8-fe12-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-05T21:00:40.358000", "message_id": "15f514c8-fe12-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-05T21:00:40.358000", "message_id": "15f514c8-fe12-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-05T20:00:32.318000", "message_id": "af5da3fe-fe09-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-05T20:00:32.318000", "message_id": "af5da3fe-fe09-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-05T20:00:32.318000", "message_id": "af5da3fe-fe09-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-05T20:00:32.318000", "message_id": "af5da3fe-fe09-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-05T19:00:24.219000", "message_id": "4937ca26-fe01-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-05T18:00:16.095000", "message_id": "e230efe0-fdf8-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-05T17:00:08.185000", "message_id": "7ba7dfd4-fdf0-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-05T16:00:00.104000", "message_id": "1517471c-fde8-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-05T15:00:53.620000", "message_id": "d340a7fa-fddf-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-05T15:00:53.620000", "message_id": "d340a7fa-fddf-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-05T15:00:53.620000", "message_id": "d340a7fa-fddf-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-05T15:00:53.620000", "message_id": "d340a7fa-fddf-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-05T14:00:45.797000", "message_id": "6cd235f4-fdd7-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-05T13:00:37.599000", "message_id": "0629f2ae-fdcf-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-05T13:00:37.599000", "message_id": "0629f2ae-fdcf-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-05T13:00:37.599000", "message_id": "0629f2ae-fdcf-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-05T13:00:37.599000", "message_id": "0629f2ae-fdcf-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-05T12:00:29.375000", "message_id": "9f744878-fdc6-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-05T11:00:21.406000", "message_id": "38fd1d7a-fdbe-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-05T10:00:13.148000", "message_id": "d24d738e-fdb5-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-05T10:00:13.148000", "message_id": "d24d738e-fdb5-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-05T10:00:13.148000", "message_id": "d24d738e-fdb5-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-05T09:00:05.225000", "message_id": "6bc8152c-fdad-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-05T09:00:05.225000", "message_id": "6bc8152c-fdad-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-05T09:00:05.225000", "message_id": "6bc8152c-fdad-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-05T09:00:05.225000", "message_id": "6bc8152c-fdad-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-05T08:00:58.603000", "message_id": "29e19280-fda5-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-05T08:00:58.603000", "message_id": "29e19280-fda5-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-05T07:00:50.476000", "message_id": "c33b3890-fd9c-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-05T07:00:50.476000", "message_id": "c33b3890-fd9c-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-05T07:00:50.476000", "message_id": "c33b3890-fd9c-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-05T07:00:50.476000", "message_id": "c33b3890-fd9c-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-05T06:00:42.317000", "message_id": "5ca29ad6-fd94-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-05T05:00:34.590000", "message_id": "f627ae70-fd8b-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-05T04:00:23.743000", "message_id": "8deb09d6-fd83-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-05T03:00:18.260000", "message_id": "28e327e2-fd7b-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-05T02:00:12.649000", "message_id": "c3c3b08c-fd72-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-05T01:00:05.445000", "message_id": "5db721b4-fd6a-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-05T00:00:56.875000", "message_id": "1a9bbce4-fd62-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-04 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-04T23:58:54.807000", "message_id": "d1d80710-fd61-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.create.end", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "message": "Success", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.571256", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-04T23:58:54.640000", "message_id": "d1c278dc-fd61-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.update", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "old_state": "building", "old_task_state": "spawning", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-04T23:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04 23:58:46", "launched_at": "2013-08-04T23:58:54.571256", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "None", "audit_period_ending": "2013-08-04T23:58:54.628545", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-04T23:58:50.875000", "message_id": "cf808c26-fd61-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "spawning", "event_type": "compute.instance.update", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "building", "old_state": "None", "old_task_state": "None", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-04T23:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04 23:58:46", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "spawning", "audit_period_ending": "2013-08-04T23:58:50.872238", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-04T23:58:49.572000", "message_id": "cebcbf12-fd61-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "spawning", "event_type": "compute.instance.update", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "building", "old_state": "building", "old_task_state": "block_device_mapping", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-04T23:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04 23:58:46", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "spawning", "audit_period_ending": "2013-08-04T23:58:49.569396", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-04T23:58:48.595000", "message_id": "ce2465d2-fd61-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "block_device_mapping", "event_type": "compute.instance.update", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "building", "old_state": "building", "old_task_state": "networking", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-04T23:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04 23:58:46", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "block_device_mapping", "audit_period_ending": "2013-08-04T23:58:48.588834", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-04T23:58:48.411000", "message_id": "ce060e52-fd61-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "networking", "event_type": "compute.instance.update", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "building", "old_state": "building", "old_task_state": "None", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-04T23:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04 23:58:46", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "networking", "audit_period_ending": "2013-08-04T23:58:48.409052", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-04T23:58:48.244000", "message_id": "cdf1355e-fd61-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.update", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "building", "old_state": "None", "old_task_state": "None", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-04T23:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04 23:58:46", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "None", "audit_period_ending": "2013-08-04T23:58:48.240772", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-04T23:58:47.948000", "message_id": "cddb2dea-fd61-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "scheduling", "event_type": "compute.instance.create.start", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "message": "", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "display_name": "trogdor", "hostname": "trogdor", "state": "building", "launched_at": "", "node": "None", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "user_id": "2b8fbe55863d4dfab5310796202b2019", "image_ref_url": "http://10.0.2.15:9292/images/", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-04T23:58:47.868000", "message_id": "cdc0fb50-fd61-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.update", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "building", "old_state": "building", "old_task_state": "scheduling", "node": "None", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-04T23:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04 23:58:46", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "None", "audit_period_ending": "2013-08-04T23:58:47.856726", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-04T23:58:46.651000", "message_id": "cd05e1c6-fd61-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "scheduling", "event_type": "compute.instance.update", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "building", "old_state": "None", "old_task_state": "None", "node": "None", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "api.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-04T23:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04 23:58:46.466092", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "scheduling", "audit_period_ending": "2013-08-04T23:58:46.634349", "os_type": "None"}, "counter_type": "gauge"}], "http://localhost:8777/v2/meters/vcpus?q.field=resource_id&q.value=03bd0d4c-99da-4ccf-b308-2721f33e84ef": [{"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-12T04:00:31.053000", "message_id": "bb2fa5a2-0303-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-12 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-12T03:00:51.352000", "message_id": "658b84f2-02fb-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-12 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-12T03:00:51.352000", "message_id": "658b84f2-02fb-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-12 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-12T03:00:51.352000", "message_id": "658b84f2-02fb-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-12 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-12T02:00:27.616000", "message_id": "f5ab064c-02f2-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-12 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-12T01:00:46.889000", "message_id": "9f88fa10-02ea-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-12 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-12T00:00:24.671000", "message_id": "30701986-02e2-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-11T23:00:42.248000", "message_id": "d928cc0c-02d9-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-11T23:00:42.248000", "message_id": "d928cc0c-02d9-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-11T22:00:20.970000", "message_id": "6aa11260-02d1-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-11T21:00:29.949000", "message_id": "0e3e8f6e-02c9-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-11T20:00:18.045000", "message_id": "a54f4712-02c0-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-11T19:00:11.694000", "message_id": "3fc3d320-02b8-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-11T18:00:02.953000", "message_id": "d8c6ba78-02af-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-11T18:00:02.953000", "message_id": "d8c6ba78-02af-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-11T18:00:02.953000", "message_id": "d8c6ba78-02af-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-11T17:00:49.659000", "message_id": "92eda5dc-02a7-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-11T16:00:45.632000", "message_id": "2eababbc-029f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-11T16:00:45.632000", "message_id": "2eababbc-029f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-11T16:00:45.632000", "message_id": "2eababbc-029f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-11T15:00:36.644000", "message_id": "c79a46fc-0296-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-11T15:00:36.644000", "message_id": "c79a46fc-0296-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-11T15:00:36.644000", "message_id": "c79a46fc-0296-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-11T15:00:36.644000", "message_id": "c79a46fc-0296-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-11T15:00:36.644000", "message_id": "c79a46fc-0296-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-11T14:00:27.890000", "message_id": "60a973bc-028e-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-11T13:00:20.170000", "message_id": "fa407182-0285-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-11T12:00:11.470000", "message_id": "9361501a-027d-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-11T11:00:02.791000", "message_id": "2c5d158c-0275-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-11T10:00:29.291000", "message_id": "da568942-026c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-11T09:00:26.242000", "message_id": "76c42680-0264-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-11T08:00:23.175000", "message_id": "1333a6b6-025c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-11T07:00:19.779000", "message_id": "af67447e-0253-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-11T06:00:16.376000", "message_id": "4baffa82-024b-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-11T05:00:05.169000", "message_id": "e333a948-0242-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-11T04:00:09.136000", "message_id": "83d1283e-023a-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-11T03:00:02.103000", "message_id": "1ded4834-0232-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-11T03:00:02.103000", "message_id": "1ded4834-0232-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-11T02:00:02.814000", "message_id": "bc74a848-0229-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-11T01:00:00.542000", "message_id": "59634c26-0221-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-11T00:00:59.421000", "message_id": "1aa132a8-0219-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T23:00:56.995000", "message_id": "b775595a-0210-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T22:00:51.157000", "message_id": "52402f7c-0208-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T21:00:43.938000", "message_id": "ec44ebde-01ff-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T21:00:43.938000", "message_id": "ec44ebde-01ff-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T21:00:43.938000", "message_id": "ec44ebde-01ff-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T21:00:43.938000", "message_id": "ec44ebde-01ff-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T20:00:38.819000", "message_id": "87661b82-01f7-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T19:00:35.266000", "message_id": "23804ece-01ef-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T18:00:31.825000", "message_id": "bfaea9d4-01e6-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T18:00:31.825000", "message_id": "bfaea9d4-01e6-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T18:00:31.825000", "message_id": "bfaea9d4-01e6-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T18:00:31.825000", "message_id": "bfaea9d4-01e6-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T18:00:31.825000", "message_id": "bfaea9d4-01e6-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T17:00:28.325000", "message_id": "5bde6410-01de-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T16:00:25.399000", "message_id": "f841c71a-01d5-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T16:00:25.399000", "message_id": "f841c71a-01d5-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T16:00:25.399000", "message_id": "f841c71a-01d5-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T16:00:25.399000", "message_id": "f841c71a-01d5-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T16:00:25.399000", "message_id": "f841c71a-01d5-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T15:00:22.178000", "message_id": "94a7c87e-01cd-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T14:00:19.113000", "message_id": "3102eeaa-01c5-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T13:00:15.642000", "message_id": "cd21e1c8-01bc-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T13:00:15.642000", "message_id": "cd21e1c8-01bc-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T13:00:15.642000", "message_id": "cd21e1c8-01bc-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T13:00:15.642000", "message_id": "cd21e1c8-01bc-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T13:00:15.642000", "message_id": "cd21e1c8-01bc-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T12:00:04.219000", "message_id": "64ae0b6a-01b4-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T12:00:04.219000", "message_id": "64ae0b6a-01b4-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T11:00:00.207000", "message_id": "007dfd74-01ac-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T10:00:57.777000", "message_id": "c0f1e998-01a3-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T09:00:54.231000", "message_id": "5d18c0e8-019b-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T09:00:54.231000", "message_id": "5d18c0e8-019b-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T09:00:54.231000", "message_id": "5d18c0e8-019b-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T09:00:54.231000", "message_id": "5d18c0e8-019b-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T08:00:51.280000", "message_id": "f98c7bee-0192-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T07:00:47.572000", "message_id": "95b0db5e-018a-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T07:00:47.572000", "message_id": "95b0db5e-018a-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T06:00:44.446000", "message_id": "320cf734-0182-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T05:00:41.286000", "message_id": "ce5aa02c-0179-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T05:00:41.286000", "message_id": "ce5aa02c-0179-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T05:00:41.286000", "message_id": "ce5aa02c-0179-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T04:00:38.426000", "message_id": "6ae9d24a-0171-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T04:00:38.426000", "message_id": "6ae9d24a-0171-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T04:00:38.426000", "message_id": "6ae9d24a-0171-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T04:00:38.426000", "message_id": "6ae9d24a-0171-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T04:00:38.426000", "message_id": "6ae9d24a-0171-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T03:00:35.018000", "message_id": "07069d9c-0169-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T02:00:32.158000", "message_id": "a3a5ec2e-0160-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T01:00:28.476000", "message_id": "3f953ba2-0158-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T00:00:24.164000", "message_id": "db4ca020-014f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-09T23:00:20.491000", "message_id": "775687b4-0147-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-09T22:00:16.917000", "message_id": "135a52e8-013f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-09T21:00:13.410000", "message_id": "af9174b0-0136-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-09T20:00:10.365000", "message_id": "4bf4a81c-012e-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-09T20:00:10.365000", "message_id": "4bf4a81c-012e-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-09T20:00:10.365000", "message_id": "4bf4a81c-012e-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-09T20:00:10.365000", "message_id": "4bf4a81c-012e-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-09T20:00:10.365000", "message_id": "4bf4a81c-012e-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-09T19:00:06.976000", "message_id": "e81ed9dc-0125-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-09T19:00:06.976000", "message_id": "e81ed9dc-0125-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-09T19:00:06.976000", "message_id": "e81ed9dc-0125-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-09T19:00:06.976000", "message_id": "e81ed9dc-0125-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-09T18:00:05.339000", "message_id": "85668acc-011d-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-09T17:00:01.471000", "message_id": "215f2122-0115-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-09T16:00:59.697000", "message_id": "e2506d04-010c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-09T15:00:53.117000", "message_id": "7ca7daee-0104-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-09T14:00:42.273000", "message_id": "14655bda-00fc-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-09T13:00:31.898000", "message_id": "ac6e456c-00f3-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-09T12:00:21.607000", "message_id": "4487b986-00eb-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-09T12:00:21.607000", "message_id": "4487b986-00eb-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-09T12:00:21.607000", "message_id": "4487b986-00eb-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-09T12:00:21.607000", "message_id": "4487b986-00eb-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-09T12:00:21.607000", "message_id": "4487b986-00eb-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-09T11:00:11.695000", "message_id": "dcd212a8-00e2-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-09T10:00:01.933000", "message_id": "754d0d5c-00da-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-09T09:00:53.697000", "message_id": "3252163a-00d2-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-09T08:00:44.760000", "message_id": "cb30b4dc-00c9-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-09T08:00:44.760000", "message_id": "cb30b4dc-00c9-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-09T08:00:44.760000", "message_id": "cb30b4dc-00c9-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-09T08:00:44.760000", "message_id": "cb30b4dc-00c9-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-09T07:00:35.580000", "message_id": "64022276-00c1-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-09T06:00:27.420000", "message_id": "fd55ee16-00b8-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-09T05:00:17.823000", "message_id": "95f762ca-00b0-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-09T04:00:02.333000", "message_id": "2aed61da-00a8-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-09T03:00:52.964000", "message_id": "e766c756-009f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-09T02:00:37.311000", "message_id": "7c30b102-0097-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-09T01:00:26.887000", "message_id": "1435e322-008f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-09T00:00:17.043000", "message_id": "aca961d2-0086-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-09T00:00:17.043000", "message_id": "aca961d2-0086-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-09T00:00:17.043000", "message_id": "aca961d2-0086-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-09T00:00:17.043000", "message_id": "aca961d2-0086-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-08T23:00:07.558000", "message_id": "452a8976-007e-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-08T22:01:01.330000", "message_id": "03929ed4-0076-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-08T21:00:52.280000", "message_id": "9c4cb9c4-006d-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-08T20:00:43.525000", "message_id": "3549ee52-0065-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-08T20:00:43.525000", "message_id": "3549ee52-0065-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-08T19:00:36.777000", "message_id": "cf8b63a0-005c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-08T19:00:36.777000", "message_id": "cf8b63a0-005c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-08T19:00:36.777000", "message_id": "cf8b63a0-005c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-08T19:00:36.777000", "message_id": "cf8b63a0-005c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-08T19:00:36.777000", "message_id": "cf8b63a0-005c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-08T18:00:29.353000", "message_id": "694e906a-0054-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-08T17:00:22.361000", "message_id": "0365c30c-004c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-08T16:00:13.975000", "message_id": "9ca61930-0043-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-08T15:00:07.748000", "message_id": "3728731c-003b-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-08T14:01:00.700000", "message_id": "f5062f22-0032-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-08T13:00:51.666000", "message_id": "8e0375e4-002a-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-08T12:00:42.597000", "message_id": "269b6630-0022-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-08T12:00:42.597000", "message_id": "269b6630-0022-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-08T11:00:35.748000", "message_id": "c0c08dd4-0019-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-08T10:00:28.454000", "message_id": "5aaf5316-0011-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-08T09:00:25.591000", "message_id": "f7213aec-0008-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-08T08:00:23.234000", "message_id": "93ffc620-0000-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-08T07:00:21.302000", "message_id": "312c58fe-fff8-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-08T06:00:19.341000", "message_id": "ce33c910-ffef-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-08T05:00:17.519000", "message_id": "6b62799c-ffe7-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-08T04:00:15.923000", "message_id": "089a6fe8-ffdf-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-08T03:00:13.875000", "message_id": "a58a1b36-ffd6-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-08T03:00:13.875000", "message_id": "a58a1b36-ffd6-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-08T03:00:13.875000", "message_id": "a58a1b36-ffd6-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-08T03:00:13.875000", "message_id": "a58a1b36-ffd6-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-08T02:00:12.079000", "message_id": "42afeee4-ffce-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-08T02:00:12.079000", "message_id": "42afeee4-ffce-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-08T01:00:10.203000", "message_id": "dfed31ac-ffc5-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-08T00:00:08.648000", "message_id": "7d3d7d8a-ffbd-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T23:00:03.847000", "message_id": "1882e770-ffb5-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T23:00:03.847000", "message_id": "1882e770-ffb5-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T22:00:01.368000", "message_id": "b5525cb0-ffac-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T21:00:58.355000", "message_id": "7588fb8c-ffa4-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T21:00:58.355000", "message_id": "7588fb8c-ffa4-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T21:00:58.355000", "message_id": "7588fb8c-ffa4-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T21:00:58.355000", "message_id": "7588fb8c-ffa4-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T20:00:55.785000", "message_id": "122d3cb8-ff9c-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T19:00:51.102000", "message_id": "adc2d236-ff93-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T18:00:49.593000", "message_id": "4af72bd2-ff8b-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T17:00:47.506000", "message_id": "e7eae248-ff82-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T17:00:47.506000", "message_id": "e7eae248-ff82-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T17:00:47.506000", "message_id": "e7eae248-ff82-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T17:00:47.506000", "message_id": "e7eae248-ff82-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T17:00:47.506000", "message_id": "e7eae248-ff82-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T16:00:45.287000", "message_id": "84e46bd6-ff7a-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T15:00:43.015000", "message_id": "21c5118e-ff72-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T14:00:40.793000", "message_id": "beb8711a-ff69-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T13:00:38.015000", "message_id": "5b363e40-ff61-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T12:00:35.541000", "message_id": "f813a238-ff58-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T11:00:33.074000", "message_id": "94ca95ea-ff50-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T11:00:33.074000", "message_id": "94ca95ea-ff50-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T11:00:33.074000", "message_id": "94ca95ea-ff50-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T10:00:28.878000", "message_id": "3086f7a2-ff48-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T09:00:26.158000", "message_id": "cd2ac574-ff3f-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T09:00:26.158000", "message_id": "cd2ac574-ff3f-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T09:00:26.158000", "message_id": "cd2ac574-ff3f-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T09:00:26.158000", "message_id": "cd2ac574-ff3f-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T09:00:26.158000", "message_id": "cd2ac574-ff3f-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T08:00:23.717000", "message_id": "69ec7c80-ff37-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T07:00:21.549000", "message_id": "06da061a-ff2f-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T06:00:16.339000", "message_id": "a201cd98-ff26-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T05:00:13.058000", "message_id": "3e4036d0-ff1e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T04:00:10.435000", "message_id": "daf74616-ff15-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T03:00:06.778000", "message_id": "76efd53c-ff0d-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T03:00:06.778000", "message_id": "76efd53c-ff0d-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T03:00:06.778000", "message_id": "76efd53c-ff0d-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T03:00:06.778000", "message_id": "76efd53c-ff0d-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T03:00:06.778000", "message_id": "76efd53c-ff0d-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T02:00:03.865000", "message_id": "136d9952-ff05-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T02:00:03.865000", "message_id": "136d9952-ff05-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T02:00:03.865000", "message_id": "136d9952-ff05-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T01:00:01.898000", "message_id": "b0832170-fefc-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T00:00:01.185000", "message_id": "4e4743cc-fef4-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-06T23:00:36.393000", "message_id": "018e7896-feec-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-06T22:00:00.257000", "message_id": "8a548728-fee3-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-06T21:00:12.864000", "message_id": "2feb1796-fedb-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-06T20:00:01.589000", "message_id": "c7a3593a-fed2-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-06T19:00:52.241000", "message_id": "83e41e80-feca-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-06T19:00:52.241000", "message_id": "83e41e80-feca-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-06T19:00:52.241000", "message_id": "83e41e80-feca-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-06T19:00:52.241000", "message_id": "83e41e80-feca-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-06T18:00:45.903000", "message_id": "1e64a488-fec2-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-06T17:00:34.359000", "message_id": "b5d862c2-feb9-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-06T16:00:25.210000", "message_id": "4e7f3392-feb1-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-06T15:00:16.218000", "message_id": "e7581bbe-fea8-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-06T14:00:07.244000", "message_id": "803816e4-fea0-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-06T13:01:00.106000", "message_id": "3df23222-fe98-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-06T12:00:50.842000", "message_id": "d6b9cc8a-fe8f-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-06T12:00:50.842000", "message_id": "d6b9cc8a-fe8f-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-06T12:00:50.842000", "message_id": "d6b9cc8a-fe8f-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-06T12:00:50.842000", "message_id": "d6b9cc8a-fe8f-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-06T12:00:50.842000", "message_id": "d6b9cc8a-fe8f-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-06T11:00:42.155000", "message_id": "6fb2e826-fe87-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-06T10:00:33.147000", "message_id": "0894042a-fe7f-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-06T10:00:33.147000", "message_id": "0894042a-fe7f-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-06T09:00:25.644000", "message_id": "a25b6f16-fe76-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-06T08:00:15.374000", "message_id": "3a7d2ed2-fe6e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-06T07:00:06.709000", "message_id": "d391ae08-fe65-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-06T06:00:59.168000", "message_id": "91019bfa-fe5d-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-06T05:00:49.834000", "message_id": "29bacf50-fe55-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-06T04:00:41.447000", "message_id": "c2f5f3c4-fe4c-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-06T03:00:32.513000", "message_id": "5bdfc3fc-fe44-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-06T02:00:23.108000", "message_id": "f479319c-fe3b-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-06T02:00:23.108000", "message_id": "f479319c-fe3b-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-06T01:00:14.104000", "message_id": "8d6c4ec4-fe33-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-06T00:00:05.594000", "message_id": "2682e518-fe2b-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-06T00:00:05.594000", "message_id": "2682e518-fe2b-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-06T00:00:05.594000", "message_id": "2682e518-fe2b-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-06T00:00:05.594000", "message_id": "2682e518-fe2b-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-06T00:00:05.594000", "message_id": "2682e518-fe2b-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-05T23:00:58.868000", "message_id": "e46bea4c-fe22-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-05T22:00:49.211000", "message_id": "7cf4488a-fe1a-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-05T21:00:40.358000", "message_id": "15ee28fc-fe12-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-05T20:00:32.318000", "message_id": "af578fe6-fe09-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-05T19:00:24.219000", "message_id": "49369d5e-fe01-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-05T18:00:16.095000", "message_id": "e2263c6c-fdf8-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-05T17:00:08.185000", "message_id": "7ba6e6ec-fdf0-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-05T16:00:00.104000", "message_id": "150dd5d8-fde8-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-05T16:00:00.104000", "message_id": "150dd5d8-fde8-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-05T15:00:53.620000", "message_id": "d339343e-fddf-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-05T14:00:45.797000", "message_id": "6cc68736-fdd7-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-05T14:00:45.797000", "message_id": "6cc68736-fdd7-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-05T14:00:45.797000", "message_id": "6cc68736-fdd7-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-05T14:00:45.797000", "message_id": "6cc68736-fdd7-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-05T13:00:37.599000", "message_id": "0622b142-fdcf-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-05T12:00:29.375000", "message_id": "9f6dcd90-fdc6-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-05T11:00:21.406000", "message_id": "38f07930-fdbe-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-05T11:00:21.406000", "message_id": "38f07930-fdbe-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-05T11:00:21.406000", "message_id": "38f07930-fdbe-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-05T11:00:21.406000", "message_id": "38f07930-fdbe-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-05T10:00:13.148000", "message_id": "d23f2040-fdb5-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-05T09:00:05.225000", "message_id": "6bbde142-fdad-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-05T09:00:05.225000", "message_id": "6bbde142-fdad-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-05T09:00:05.225000", "message_id": "6bbde142-fdad-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-05T09:00:05.225000", "message_id": "6bbde142-fdad-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-05T08:00:58.603000", "message_id": "29d95eee-fda5-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-05T07:00:50.476000", "message_id": "c33499b8-fd9c-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-05T06:00:42.317000", "message_id": "5c9dc98e-fd94-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-05T05:00:34.590000", "message_id": "f6265610-fd8b-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-05T04:00:23.743000", "message_id": "8de9102c-fd83-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-05T03:00:18.260000", "message_id": "28e185a4-fd7b-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-05T02:00:12.649000", "message_id": "c3c264b6-fd72-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-05T01:00:05.445000", "message_id": "5db59f92-fd6a-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-05T00:00:56.875000", "message_id": "1a9a1312-fd62-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-04 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-04T23:58:54.807000", "message_id": "d1d6ba90-fd61-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.create.end", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "message": "Success", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.571256", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-04T23:58:54.640000", "message_id": "d1c04940-fd61-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.update", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "old_state": "building", "old_task_state": "spawning", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-04T23:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04 23:58:46", "launched_at": "2013-08-04T23:58:54.571256", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "None", "audit_period_ending": "2013-08-04T23:58:54.628545", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-04T23:58:50.875000", "message_id": "cf7f0464-fd61-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "spawning", "event_type": "compute.instance.update", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "building", "old_state": "None", "old_task_state": "None", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-04T23:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04 23:58:46", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "spawning", "audit_period_ending": "2013-08-04T23:58:50.872238", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-04T23:58:49.572000", "message_id": "cebaface-fd61-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "spawning", "event_type": "compute.instance.update", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "building", "old_state": "building", "old_task_state": "block_device_mapping", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-04T23:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04 23:58:46", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "spawning", "audit_period_ending": "2013-08-04T23:58:49.569396", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-04T23:58:48.595000", "message_id": "ce2328c0-fd61-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "block_device_mapping", "event_type": "compute.instance.update", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "building", "old_state": "building", "old_task_state": "networking", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-04T23:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04 23:58:46", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "block_device_mapping", "audit_period_ending": "2013-08-04T23:58:48.588834", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-04T23:58:48.411000", "message_id": "ce0434a6-fd61-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "networking", "event_type": "compute.instance.update", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "building", "old_state": "building", "old_task_state": "None", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-04T23:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04 23:58:46", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "networking", "audit_period_ending": "2013-08-04T23:58:48.409052", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-04T23:58:48.244000", "message_id": "cdee7b52-fd61-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.update", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "building", "old_state": "None", "old_task_state": "None", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-04T23:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04 23:58:46", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "None", "audit_period_ending": "2013-08-04T23:58:48.240772", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-04T23:58:47.948000", "message_id": "cdd971e4-fd61-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "scheduling", "event_type": "compute.instance.create.start", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "message": "", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "display_name": "trogdor", "hostname": "trogdor", "state": "building", "launched_at": "", "node": "None", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "user_id": "2b8fbe55863d4dfab5310796202b2019", "image_ref_url": "http://10.0.2.15:9292/images/", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-04T23:58:47.868000", "message_id": "cdbda5b8-fd61-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.update", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "building", "old_state": "building", "old_task_state": "scheduling", "node": "None", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-04T23:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04 23:58:46", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "None", "audit_period_ending": "2013-08-04T23:58:47.856726", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-04T23:58:46.651000", "message_id": "cd0410e4-fd61-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "scheduling", "event_type": "compute.instance.update", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "building", "old_state": "None", "old_task_state": "None", "node": "None", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "api.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-04T23:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04 23:58:46.466092", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "scheduling", "audit_period_ending": "2013-08-04T23:58:46.634349", "os_type": "None"}, "counter_type": "gauge"}], "http://localhost:8777/v2/meters/instance?q.field=resource_id&q.value=03bd0d4c-99da-4ccf-b308-2721f33e84ef": [{"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-12T04:00:31.053000", "message_id": "bb269e08-0303-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-12 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-12T03:00:51.352000", "message_id": "657c5de2-02fb-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-12 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-12T02:00:27.616000", "message_id": "f59703f4-02f2-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-12 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-12T01:00:46.889000", "message_id": "9f69bb64-02ea-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-12 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-12T01:00:46.889000", "message_id": "9f69bb64-02ea-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-12 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-12T01:00:46.889000", "message_id": "9f69bb64-02ea-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-12 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-12T00:00:24.671000", "message_id": "3053463a-02e2-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-12T00:00:24.671000", "message_id": "3053463a-02e2-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-12T00:00:24.671000", "message_id": "3053463a-02e2-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-11T23:00:42.248000", "message_id": "d9007d2e-02d9-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-11T23:00:42.248000", "message_id": "d9007d2e-02d9-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-11T23:00:42.248000", "message_id": "d9007d2e-02d9-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-11T22:00:20.970000", "message_id": "6a896cd2-02d1-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-11T22:00:20.970000", "message_id": "6a896cd2-02d1-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-11T21:00:29.949000", "message_id": "0e1f3588-02c9-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-11T21:00:29.949000", "message_id": "0e1f3588-02c9-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-11T20:00:18.045000", "message_id": "a5437a04-02c0-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-11T19:00:11.694000", "message_id": "3fb8662a-02b8-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-11T19:00:11.694000", "message_id": "3fb8662a-02b8-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-11T18:00:02.953000", "message_id": "d8baa468-02af-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-11T17:00:49.659000", "message_id": "92d3849a-02a7-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-11T17:00:49.659000", "message_id": "92d3849a-02a7-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-11T16:00:45.632000", "message_id": "2ea1d6be-029f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-11T15:00:36.644000", "message_id": "c783f302-0296-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-11T15:00:36.644000", "message_id": "c783f302-0296-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-11T14:00:27.890000", "message_id": "608aa842-028e-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-11T14:00:27.890000", "message_id": "608aa842-028e-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-11T14:00:27.890000", "message_id": "608aa842-028e-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-11T13:00:20.170000", "message_id": "fa27841a-0285-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-11T12:00:11.470000", "message_id": "933a86ec-027d-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-11T11:00:02.791000", "message_id": "2c45ac3a-0275-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-11T11:00:02.791000", "message_id": "2c45ac3a-0275-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-11T10:00:29.291000", "message_id": "da4af686-026c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-11T10:00:29.291000", "message_id": "da4af686-026c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-11T09:00:26.242000", "message_id": "76b668b0-0264-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-11T09:00:26.242000", "message_id": "76b668b0-0264-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-11T08:00:23.175000", "message_id": "131f0422-025c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-11T07:00:19.779000", "message_id": "af541caa-0253-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-11T06:00:16.376000", "message_id": "4b8b581c-024b-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-11T06:00:16.376000", "message_id": "4b8b581c-024b-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-11T06:00:16.376000", "message_id": "4b8b581c-024b-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-11T05:00:05.169000", "message_id": "e31ea8ea-0242-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-11T04:00:09.136000", "message_id": "83b99f70-023a-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-11T03:00:02.103000", "message_id": "1dc567b0-0232-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-11T03:00:02.103000", "message_id": "1dc567b0-0232-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-11T03:00:02.103000", "message_id": "1dc567b0-0232-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-11T03:00:02.103000", "message_id": "1dc567b0-0232-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-11T02:00:02.814000", "message_id": "bc6264d0-0229-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-11T02:00:02.814000", "message_id": "bc6264d0-0229-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-11T01:00:00.542000", "message_id": "5947997c-0221-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-11T01:00:00.542000", "message_id": "5947997c-0221-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-11T01:00:00.542000", "message_id": "5947997c-0221-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-11T00:00:59.421000", "message_id": "1a945e0c-0219-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-11T00:00:59.421000", "message_id": "1a945e0c-0219-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T23:00:56.995000", "message_id": "b764a8b2-0210-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T22:00:51.157000", "message_id": "522ad190-0208-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T22:00:51.157000", "message_id": "522ad190-0208-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T22:00:51.157000", "message_id": "522ad190-0208-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T21:00:43.938000", "message_id": "ec17e4ea-01ff-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T21:00:43.938000", "message_id": "ec17e4ea-01ff-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T20:00:38.819000", "message_id": "8744cda6-01f7-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T20:00:38.819000", "message_id": "8744cda6-01f7-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T19:00:35.266000", "message_id": "235bd5ee-01ef-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T19:00:35.266000", "message_id": "235bd5ee-01ef-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T19:00:35.266000", "message_id": "235bd5ee-01ef-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T18:00:31.825000", "message_id": "bf9c05e0-01e6-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T17:00:28.325000", "message_id": "5baf60ca-01de-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T16:00:25.399000", "message_id": "f82a2ccc-01d5-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T15:00:22.178000", "message_id": "948c8bd6-01cd-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T14:00:19.113000", "message_id": "30e5e684-01c5-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T13:00:15.642000", "message_id": "cd0ff0a8-01bc-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T12:00:04.219000", "message_id": "647c50fc-01b4-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T12:00:04.219000", "message_id": "647c50fc-01b4-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T11:00:00.207000", "message_id": "0055bf4e-01ac-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T11:00:00.207000", "message_id": "0055bf4e-01ac-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T10:00:57.777000", "message_id": "c0dc196a-01a3-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T09:00:54.231000", "message_id": "5cfe3034-019b-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T09:00:54.231000", "message_id": "5cfe3034-019b-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T09:00:54.231000", "message_id": "5cfe3034-019b-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T08:00:51.280000", "message_id": "f9771894-0192-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T08:00:51.280000", "message_id": "f9771894-0192-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T08:00:51.280000", "message_id": "f9771894-0192-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T07:00:47.572000", "message_id": "9582c8fe-018a-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T07:00:47.572000", "message_id": "9582c8fe-018a-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T06:00:44.446000", "message_id": "31dca67e-0182-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T06:00:44.446000", "message_id": "31dca67e-0182-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T05:00:41.286000", "message_id": "ce3c6a58-0179-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T04:00:38.426000", "message_id": "6acbd588-0171-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T04:00:38.426000", "message_id": "6acbd588-0171-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T03:00:35.018000", "message_id": "06eeb6dc-0169-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T02:00:32.158000", "message_id": "a3828aa4-0160-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T01:00:28.476000", "message_id": "3f7e1e4a-0158-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-10T00:00:24.164000", "message_id": "db377498-014f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-09T23:00:20.491000", "message_id": "7737cf22-0147-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-09T23:00:20.491000", "message_id": "7737cf22-0147-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-09T23:00:20.491000", "message_id": "7737cf22-0147-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-09T22:00:16.917000", "message_id": "134eae8e-013f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-09T21:00:13.410000", "message_id": "af77577e-0136-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-09T20:00:10.365000", "message_id": "4bdbb726-012e-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-09T19:00:06.976000", "message_id": "e8135c06-0125-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-09T18:00:05.339000", "message_id": "855520b6-011d-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-09T18:00:05.339000", "message_id": "855520b6-011d-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-09T17:00:01.471000", "message_id": "2140d046-0115-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-09T17:00:01.471000", "message_id": "2140d046-0115-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-09T16:00:59.697000", "message_id": "e23192e4-010c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-09T16:00:59.697000", "message_id": "e23192e4-010c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-09T15:00:53.117000", "message_id": "7c85e934-0104-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-09T15:00:53.117000", "message_id": "7c85e934-0104-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-09T14:00:42.273000", "message_id": "1446ba90-00fc-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-09T13:00:31.898000", "message_id": "ac54c308-00f3-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-09T13:00:31.898000", "message_id": "ac54c308-00f3-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-09T12:00:21.607000", "message_id": "446be878-00eb-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-09T12:00:21.607000", "message_id": "446be878-00eb-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-09T11:00:11.695000", "message_id": "dcc17092-00e2-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-09T10:00:01.933000", "message_id": "7531cb14-00da-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-09T09:00:53.697000", "message_id": "324fbbf6-00d2-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-09T08:00:44.760000", "message_id": "cb25c7de-00c9-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-09T08:00:44.760000", "message_id": "cb25c7de-00c9-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-09T07:00:35.580000", "message_id": "63ec223c-00c1-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-09T06:00:27.420000", "message_id": "fd48dd66-00b8-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-09T05:00:17.823000", "message_id": "95cc9bd0-00b0-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-09T04:00:02.333000", "message_id": "2adcac1e-00a8-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-09T03:00:52.964000", "message_id": "e746e2ec-009f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-09T02:00:37.311000", "message_id": "7c228f8c-0097-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-09T01:00:26.887000", "message_id": "142276f2-008f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-09T01:00:26.887000", "message_id": "142276f2-008f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-09T00:00:17.043000", "message_id": "ac818b94-0086-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-09T00:00:17.043000", "message_id": "ac818b94-0086-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-09T00:00:17.043000", "message_id": "ac818b94-0086-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-08T23:00:07.558000", "message_id": "45160b90-007e-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-08T23:00:07.558000", "message_id": "45160b90-007e-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-08T22:01:01.330000", "message_id": "0368558e-0076-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-08T22:01:01.330000", "message_id": "0368558e-0076-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-08T22:01:01.330000", "message_id": "0368558e-0076-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-08T21:00:52.280000", "message_id": "9c39b2a2-006d-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-08T20:00:43.525000", "message_id": "35344908-0065-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-08T20:00:43.525000", "message_id": "35344908-0065-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-08T19:00:36.777000", "message_id": "cf743694-005c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-08T19:00:36.777000", "message_id": "cf743694-005c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-08T18:00:29.353000", "message_id": "693c5c1a-0054-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-08T17:00:22.361000", "message_id": "034c4bac-004c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-08T17:00:22.361000", "message_id": "034c4bac-004c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-08T16:00:13.975000", "message_id": "9c8896f8-0043-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-08T15:00:07.748000", "message_id": "370daec4-003b-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-08T14:01:00.700000", "message_id": "f4d873fc-0032-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-08T14:01:00.700000", "message_id": "f4d873fc-0032-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-08T13:00:51.666000", "message_id": "8de684b6-002a-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-08T12:00:42.597000", "message_id": "2689cab0-0022-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-08T12:00:42.597000", "message_id": "2689cab0-0022-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-08T11:00:35.748000", "message_id": "c0aec45a-0019-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-08T11:00:35.748000", "message_id": "c0aec45a-0019-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-08T10:00:28.454000", "message_id": "5a946da8-0011-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-08T10:00:28.454000", "message_id": "5a946da8-0011-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-08T10:00:28.454000", "message_id": "5a946da8-0011-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-08T09:00:25.591000", "message_id": "f715de72-0008-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-08T09:00:25.591000", "message_id": "f715de72-0008-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-08T08:00:23.234000", "message_id": "93ec54dc-0000-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-08T08:00:23.234000", "message_id": "93ec54dc-0000-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-08T08:00:23.234000", "message_id": "93ec54dc-0000-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-08T07:00:21.302000", "message_id": "3110a30c-fff8-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-08T06:00:19.341000", "message_id": "ce166906-ffef-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-08T05:00:17.519000", "message_id": "6b3a3e64-ffe7-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-08T04:00:15.923000", "message_id": "0880527a-ffdf-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-08T04:00:15.923000", "message_id": "0880527a-ffdf-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-08T04:00:15.923000", "message_id": "0880527a-ffdf-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-08T03:00:13.875000", "message_id": "a57f5dea-ffd6-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-08T02:00:12.079000", "message_id": "42a7874a-ffce-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-08T01:00:10.203000", "message_id": "dfcb31e2-ffc5-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-08T00:00:08.648000", "message_id": "7d1d8e76-ffbd-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-08T00:00:08.648000", "message_id": "7d1d8e76-ffbd-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T23:00:03.847000", "message_id": "18754fb6-ffb5-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T23:00:03.847000", "message_id": "18754fb6-ffb5-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T22:00:01.368000", "message_id": "b53406de-ffac-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T21:00:58.355000", "message_id": "756827fe-ffa4-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T21:00:58.355000", "message_id": "756827fe-ffa4-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T20:00:55.785000", "message_id": "12224cb8-ff9c-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T20:00:55.785000", "message_id": "12224cb8-ff9c-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T20:00:55.785000", "message_id": "12224cb8-ff9c-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T19:00:51.102000", "message_id": "adaff6e8-ff93-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T18:00:49.593000", "message_id": "4ae40278-ff8b-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T17:00:47.506000", "message_id": "e7dfdb5a-ff82-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T16:00:45.287000", "message_id": "84c9c0c4-ff7a-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T15:00:43.015000", "message_id": "21ad0bde-ff72-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T15:00:43.015000", "message_id": "21ad0bde-ff72-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T15:00:43.015000", "message_id": "21ad0bde-ff72-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T14:00:40.793000", "message_id": "be96b976-ff69-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T14:00:40.793000", "message_id": "be96b976-ff69-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T14:00:40.793000", "message_id": "be96b976-ff69-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T13:00:38.015000", "message_id": "5b24f91e-ff61-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T12:00:35.541000", "message_id": "f7ede9f8-ff58-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T12:00:35.541000", "message_id": "f7ede9f8-ff58-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T11:00:33.074000", "message_id": "94afe808-ff50-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T11:00:33.074000", "message_id": "94afe808-ff50-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T10:00:28.878000", "message_id": "30696232-ff48-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T09:00:26.158000", "message_id": "cd06c3ea-ff3f-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T09:00:26.158000", "message_id": "cd06c3ea-ff3f-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T09:00:26.158000", "message_id": "cd06c3ea-ff3f-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T08:00:23.717000", "message_id": "69cff2c2-ff37-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T07:00:21.549000", "message_id": "06ba5144-ff2f-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T06:00:16.339000", "message_id": "a1dac496-ff26-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T05:00:13.058000", "message_id": "3e22599e-ff1e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T04:00:10.435000", "message_id": "dadc1e86-ff15-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T04:00:10.435000", "message_id": "dadc1e86-ff15-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T04:00:10.435000", "message_id": "dadc1e86-ff15-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T03:00:06.778000", "message_id": "76e03c9e-ff0d-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T03:00:06.778000", "message_id": "76e03c9e-ff0d-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T02:00:03.865000", "message_id": "135c1c9a-ff05-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T02:00:03.865000", "message_id": "135c1c9a-ff05-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T01:00:01.898000", "message_id": "b06ff99c-fefc-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-07T00:00:01.185000", "message_id": "4e3a6526-fef4-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-06T23:00:36.393000", "message_id": "0175e4b6-feec-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-06T23:00:36.393000", "message_id": "0175e4b6-feec-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-06T23:00:36.393000", "message_id": "0175e4b6-feec-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-06T22:00:00.257000", "message_id": "8a35ad1c-fee3-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-06T21:00:12.864000", "message_id": "2fdffdf2-fedb-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-06T21:00:12.864000", "message_id": "2fdffdf2-fedb-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-06T20:00:01.589000", "message_id": "c785a638-fed2-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-06T19:00:52.241000", "message_id": "83d30c8a-feca-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-06T18:00:45.903000", "message_id": "1e4cb788-fec2-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-06T17:00:34.359000", "message_id": "b5b7fd20-feb9-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-06T16:00:25.210000", "message_id": "4e6b156a-feb1-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-06T15:00:16.218000", "message_id": "e744f386-fea8-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-06T14:00:07.244000", "message_id": "802859de-fea0-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-06T13:01:00.106000", "message_id": "3de4c290-fe98-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-06T13:01:00.106000", "message_id": "3de4c290-fe98-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-06T12:00:50.842000", "message_id": "d6a518da-fe8f-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-06T12:00:50.842000", "message_id": "d6a518da-fe8f-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-06T11:00:42.155000", "message_id": "6fa8de76-fe87-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-06T10:00:33.147000", "message_id": "0886ffc8-fe7f-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-06T10:00:33.147000", "message_id": "0886ffc8-fe7f-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-06T09:00:25.644000", "message_id": "a24c049a-fe76-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-06T09:00:25.644000", "message_id": "a24c049a-fe76-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-06T09:00:25.644000", "message_id": "a24c049a-fe76-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-06T08:00:15.374000", "message_id": "3a65c4fe-fe6e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-06T08:00:15.374000", "message_id": "3a65c4fe-fe6e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-06T07:00:06.709000", "message_id": "d37e335a-fe65-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-06T07:00:06.709000", "message_id": "d37e335a-fe65-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-06T06:00:59.168000", "message_id": "90f7f1a4-fe5d-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-06T05:00:49.834000", "message_id": "29a2d38c-fe55-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-06T04:00:41.447000", "message_id": "c2e021e8-fe4c-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-06T03:00:32.513000", "message_id": "5bc65836-fe44-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-06T03:00:32.513000", "message_id": "5bc65836-fe44-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-06T02:00:23.108000", "message_id": "f467224a-fe3b-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-06T02:00:23.108000", "message_id": "f467224a-fe3b-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-06T01:00:14.104000", "message_id": "8d4895b0-fe33-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-06T00:00:05.594000", "message_id": "266f4224-fe2b-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-05T23:00:58.868000", "message_id": "e4689950-fe22-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-05T22:00:49.211000", "message_id": "7ce3d798-fe1a-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-05T22:00:49.211000", "message_id": "7ce3d798-fe1a-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-05T21:00:40.358000", "message_id": "15dab57e-fe12-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-05T20:00:32.318000", "message_id": "af48ec66-fe09-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-05T20:00:32.318000", "message_id": "af48ec66-fe09-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-05T19:00:24.219000", "message_id": "48b0b266-fe01-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-05T18:00:16.095000", "message_id": "e21540b0-fdf8-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-05T18:00:16.095000", "message_id": "e21540b0-fdf8-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-05T17:00:08.185000", "message_id": "7b99840c-fdf0-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-05T17:00:08.185000", "message_id": "7b99840c-fdf0-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-05T16:00:00.104000", "message_id": "15045d28-fde8-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-05T15:00:53.620000", "message_id": "d3288d5a-fddf-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-05T15:00:53.620000", "message_id": "d3288d5a-fddf-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-05T14:00:45.797000", "message_id": "6cb892fc-fdd7-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-05T13:00:37.599000", "message_id": "0611e0b0-fdcf-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-05T12:00:29.375000", "message_id": "9f658b6c-fdc6-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-05T11:00:21.406000", "message_id": "38e14e42-fdbe-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-05T10:00:13.148000", "message_id": "d23088dc-fdb5-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-05T10:00:13.148000", "message_id": "d23088dc-fdb5-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-05T09:00:05.225000", "message_id": "6bb34c50-fdad-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-05T09:00:05.225000", "message_id": "6bb34c50-fdad-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-05T08:00:58.603000", "message_id": "29bffb66-fda5-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-05T08:00:58.603000", "message_id": "29bffb66-fda5-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-05T07:00:50.476000", "message_id": "c323bdc8-fd9c-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-05T06:00:42.317000", "message_id": "5c8d7138-fd94-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-05T05:00:34.590000", "message_id": "f6234a6a-fd8b-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-05T04:00:23.743000", "message_id": "8de582ae-fd83-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-05T03:00:18.260000", "message_id": "28de8fb6-fd7b-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-05T02:00:12.649000", "message_id": "c3bfa528-fd72-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-05T01:00:05.445000", "message_id": "5db225a6-fd6a-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-05T00:00:56.875000", "message_id": "1a945dbe-fd62-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-04 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-04T23:58:54.807000", "message_id": "d1d35030-fd61-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.create.end", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "message": "Success", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.571256", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-04T23:58:54.640000", "message_id": "d1ba8186-fd61-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.update", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "old_state": "building", "old_task_state": "spawning", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-04T23:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04 23:58:46", "launched_at": "2013-08-04T23:58:54.571256", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "None", "audit_period_ending": "2013-08-04T23:58:54.628545", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-04T23:58:50.875000", "message_id": "cf7b42fc-fd61-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "spawning", "event_type": "compute.instance.update", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "building", "old_state": "None", "old_task_state": "None", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-04T23:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04 23:58:46", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "spawning", "audit_period_ending": "2013-08-04T23:58:50.872238", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-04T23:58:49.572000", "message_id": "ceb40a52-fd61-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "spawning", "event_type": "compute.instance.update", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "building", "old_state": "building", "old_task_state": "block_device_mapping", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-04T23:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04 23:58:46", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "spawning", "audit_period_ending": "2013-08-04T23:58:49.569396", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-04T23:58:48.595000", "message_id": "ce1f7b8a-fd61-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "block_device_mapping", "event_type": "compute.instance.update", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "building", "old_state": "building", "old_task_state": "networking", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-04T23:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04 23:58:46", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "block_device_mapping", "audit_period_ending": "2013-08-04T23:58:48.588834", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-04T23:58:48.411000", "message_id": "ce009418-fd61-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "networking", "event_type": "compute.instance.update", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "building", "old_state": "building", "old_task_state": "None", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-04T23:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04 23:58:46", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "networking", "audit_period_ending": "2013-08-04T23:58:48.409052", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-04T23:58:48.244000", "message_id": "cdeba0c6-fd61-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.update", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "building", "old_state": "None", "old_task_state": "None", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-04T23:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04 23:58:46", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "None", "audit_period_ending": "2013-08-04T23:58:48.240772", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-04T23:58:47.948000", "message_id": "cdd32c94-fd61-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "scheduling", "event_type": "compute.instance.create.start", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "message": "", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "display_name": "trogdor", "hostname": "trogdor", "state": "building", "launched_at": "", "node": "None", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "user_id": "2b8fbe55863d4dfab5310796202b2019", "image_ref_url": "http://10.0.2.15:9292/images/", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-04T23:58:47.868000", "message_id": "cdb82052-fd61-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.update", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "building", "old_state": "building", "old_task_state": "scheduling", "node": "None", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-04T23:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04 23:58:46", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "None", "audit_period_ending": "2013-08-04T23:58:47.856726", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "timestamp": "2013-08-04T23:58:46.651000", "message_id": "ccffedb6-fd61-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "scheduling", "event_type": "compute.instance.update", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "building", "old_state": "None", "old_task_state": "None", "node": "None", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "api.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-04T23:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04 23:58:46.466092", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "scheduling", "audit_period_ending": "2013-08-04T23:58:46.634349", "os_type": "None"}, "counter_type": "gauge"}]} \ No newline at end of file diff --git a/tests/data/map_fixture_1.json b/tests/data/map_fixture_1.json new file mode 100644 index 0000000..5a224ce --- /dev/null +++ b/tests/data/map_fixture_1.json @@ -0,0 +1 @@ +{"http://localhost:8777/v2/meters/port?q.field=resource_id&q.value=07771c9c-f10e-4b08-9702-78c8618f5a48": [{"counter_name": "port", "user_id": "9692a61b44f246259af534f0b1d95942", "resource_id": "07771c9c-f10e-4b08-9702-78c8618f5a48", "timestamp": "2013-08-05T05:17:40.283000", "message_id": "5981ec68-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "port", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"status": "DOWN", "binding:host_id": "openstack", "name": "", "admin_state_up": "True", "network_id": "0e5f3762-a8a9-4051-ad35-49ad879ebfc3", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "host": "network.openstack", "binding:vif_type": "ovs", "device_owner": "compute:nova", "mac_address": "fa:16:3e:b3:f6:db", "event_type": "port.create.end", "id": "07771c9c-f10e-4b08-9702-78c8618f5a48", "device_id": "c01c63fe-7a29-4426-bab1-34d088e92415"}, "counter_type": "gauge"}, {"counter_name": "port", "user_id": "9692a61b44f246259af534f0b1d95942", "resource_id": "07771c9c-f10e-4b08-9702-78c8618f5a48", "timestamp": "2013-08-05T05:17:40.283000", "message_id": "5981ec68-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "port", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"status": "DOWN", "binding:host_id": "openstack", "name": "", "admin_state_up": "True", "network_id": "0e5f3762-a8a9-4051-ad35-49ad879ebfc3", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "host": "network.openstack", "binding:vif_type": "ovs", "device_owner": "compute:nova", "mac_address": "fa:16:3e:b3:f6:db", "event_type": "port.create.end", "id": "07771c9c-f10e-4b08-9702-78c8618f5a48", "device_id": "c01c63fe-7a29-4426-bab1-34d088e92415"}, "counter_type": "gauge"}], "http://localhost:8777/v2/meters/port.create?q.field=resource_id&q.value=07771c9c-f10e-4b08-9702-78c8618f5a48": [{"counter_name": "port.create", "user_id": "9692a61b44f246259af534f0b1d95942", "resource_id": "07771c9c-f10e-4b08-9702-78c8618f5a48", "timestamp": "2013-08-05T05:17:40.283000", "message_id": "5988a0e4-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "port", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"status": "DOWN", "binding:host_id": "openstack", "name": "", "admin_state_up": "True", "network_id": "0e5f3762-a8a9-4051-ad35-49ad879ebfc3", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "host": "network.openstack", "binding:vif_type": "ovs", "device_owner": "compute:nova", "mac_address": "fa:16:3e:b3:f6:db", "event_type": "port.create.end", "id": "07771c9c-f10e-4b08-9702-78c8618f5a48", "device_id": "c01c63fe-7a29-4426-bab1-34d088e92415"}, "counter_type": "delta"}]} \ No newline at end of file diff --git a/tests/data/map_fixture_10.json b/tests/data/map_fixture_10.json new file mode 100644 index 0000000..f0753f2 --- /dev/null +++ b/tests/data/map_fixture_10.json @@ -0,0 +1 @@ +{"http://localhost:8777/v2/meters/storage.objects.containers?q.field=resource_id&q.value=4cb54495d7784d3dbd61db9d7adf955f": [{"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-12T04:01:18", "message_id": "d76c5e04-0303-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-12T03:51:18", "message_id": "71baf2b0-0302-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-12T03:41:18", "message_id": "0c092b2c-0301-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-12T03:31:18", "message_id": "a66c4980-02ff-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-12T03:21:18", "message_id": "40b7d876-02fe-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-12T03:11:18", "message_id": "db0debce-02fc-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-12T03:01:17", "message_id": "7553716a-02fb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-12T02:51:17", "message_id": "0fafd412-02fa-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-12T02:41:17", "message_id": "a9ec6b64-02f8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-12T02:31:17", "message_id": "44482ae2-02f7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-12T02:21:17", "message_id": "de939804-02f5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-12T02:11:17", "message_id": "78e661ae-02f4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-12T02:01:17", "message_id": "133f5a0a-02f3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-12T01:51:17", "message_id": "ad94f1e8-02f1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-12T01:41:17", "message_id": "47e14c80-02f0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-12T01:31:17", "message_id": "e233eb5a-02ee-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-12T01:21:17", "message_id": "7c7f1e0c-02ed-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-12T01:11:16", "message_id": "16d61c64-02ec-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-12T01:01:16", "message_id": "b1134c22-02ea-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-12T00:51:16", "message_id": "4b7b07fc-02e9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-12T00:41:16", "message_id": "e5bf4fdc-02e7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-12T00:31:16", "message_id": "800f2c62-02e6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-12T00:21:16", "message_id": "1a8dd36c-02e5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-12T00:11:16", "message_id": "b4af2560-02e3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-12T00:01:16", "message_id": "4f05370a-02e2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T23:51:16", "message_id": "e956354a-02e0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T23:41:16", "message_id": "83afc842-02df-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T23:31:16", "message_id": "1e05a9f4-02de-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T23:21:15", "message_id": "b84c410a-02dc-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T23:11:15", "message_id": "52ad2540-02db-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T23:01:16", "message_id": "ed35f602-02d9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T22:51:15", "message_id": "874e0682-02d8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T22:41:15", "message_id": "2199a82e-02d7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T22:31:15", "message_id": "bbecd1e6-02d5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T22:21:15", "message_id": "563803d0-02d4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T22:11:15", "message_id": "f087e5ba-02d2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T22:01:15", "message_id": "8ade82e2-02d1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T21:51:15", "message_id": "25375852-02d0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T21:41:15", "message_id": "bf886786-02ce-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T21:31:14", "message_id": "59d46706-02cd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T21:21:14", "message_id": "f42ac716-02cb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T21:11:14", "message_id": "8e7bd456-02ca-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T21:01:14", "message_id": "28cae1ca-02c9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T20:51:14", "message_id": "c320b904-02c7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T20:41:14", "message_id": "5d6b6eac-02c6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T20:31:14", "message_id": "f7c4ba8c-02c4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T20:21:14", "message_id": "9215ca42-02c3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T20:11:14", "message_id": "2c72cf1a-02c2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T20:01:14", "message_id": "c6bced32-02c0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T19:51:14", "message_id": "61121030-02bf-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T19:41:14", "message_id": "fb600860-02bd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T19:31:14", "message_id": "95b53590-02bc-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T19:21:13", "message_id": "3004478c-02bb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T19:11:13", "message_id": "ca5115a6-02b9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T19:01:13", "message_id": "649c3a8e-02b8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T18:51:13", "message_id": "feea1bb2-02b6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T18:41:13", "message_id": "9942c5a8-02b5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T18:31:13", "message_id": "338ee922-02b4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T18:21:13", "message_id": "cddff19e-02b2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T18:11:13", "message_id": "6830c61c-02b1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T18:01:13", "message_id": "0280c854-02b0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T17:51:13", "message_id": "9cd5ce24-02ae-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T17:41:12", "message_id": "3723a322-02ad-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T17:31:12", "message_id": "d17b3e3c-02ab-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T17:21:12", "message_id": "6bc91fc4-02aa-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T17:11:12", "message_id": "06171bdc-02a9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T17:01:12", "message_id": "a07723fe-02a7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T16:51:12", "message_id": "3ac73c3e-02a6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T16:41:12", "message_id": "d5267576-02a4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T16:31:12", "message_id": "6f6f7954-02a3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T16:21:12", "message_id": "09b77eb4-02a2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T16:11:12", "message_id": "a40dbe44-02a0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T16:01:12", "message_id": "3e692796-029f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T15:51:12", "message_id": "d8b81430-029d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T15:41:12", "message_id": "731684dc-029c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T15:31:11", "message_id": "0d70ee02-029b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T15:21:11", "message_id": "a7d02096-0299-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T15:11:11", "message_id": "421e1c90-0298-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T15:01:11", "message_id": "dc6c45b2-0296-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T14:51:11", "message_id": "76b70c94-0295-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T14:41:11", "message_id": "1108e094-0294-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T14:31:11", "message_id": "ab589254-0292-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T14:21:11", "message_id": "45ab320a-0291-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T14:11:11", "message_id": "dff93426-028f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T14:01:11", "message_id": "7a53f116-028e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T13:51:11", "message_id": "14a876bc-028d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T13:41:11", "message_id": "aefb08c6-028b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T13:31:10", "message_id": "494cb4a8-028a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T13:21:10", "message_id": "e397bcc6-0288-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T13:11:10", "message_id": "7df0c5a8-0287-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T13:01:10", "message_id": "184911ca-0286-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T12:51:10", "message_id": "b29340b8-0284-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T12:41:10", "message_id": "4ce911a8-0283-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T12:31:10", "message_id": "e7360358-0281-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T12:21:10", "message_id": "81811e40-0280-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T12:11:10", "message_id": "1bd49c26-027f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T12:01:10", "message_id": "b62200cc-027d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T11:51:10", "message_id": "507aa1e4-027c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T11:41:09", "message_id": "eac06e02-027a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T11:31:09", "message_id": "85153bec-0279-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T11:21:09", "message_id": "1f65aa76-0278-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T11:11:09", "message_id": "b9b7cbce-0276-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T11:01:09", "message_id": "54082608-0275-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T10:51:09", "message_id": "ee56755e-0273-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T10:41:09", "message_id": "88acc6a0-0272-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T10:31:09", "message_id": "2303a5fe-0271-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T10:21:09", "message_id": "bd4a8b84-026f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T10:11:09", "message_id": "57ad66c6-026e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T10:01:09", "message_id": "f1f950a2-026c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T09:51:08", "message_id": "8c4a03ce-026b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T09:41:08", "message_id": "26980fa4-026a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T09:31:08", "message_id": "c0ef823c-0268-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T09:21:08", "message_id": "5b3fc6a0-0267-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T09:11:08", "message_id": "f597afda-0265-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T09:01:08", "message_id": "8fe7fe3e-0264-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T08:51:08", "message_id": "2a44c25c-0263-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T08:41:08", "message_id": "c497f3ee-0261-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T08:31:08", "message_id": "5eee0282-0260-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T08:21:08", "message_id": "f9326f38-025e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T08:11:08", "message_id": "93860ed4-025d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T08:01:08", "message_id": "2ddd3be4-025c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T07:51:07", "message_id": "c8267ec4-025a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T07:41:07", "message_id": "6282fa44-0259-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T07:31:07", "message_id": "fccf54dc-0257-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T07:21:07", "message_id": "97251492-0256-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T07:11:07", "message_id": "316622dc-0255-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T07:01:07", "message_id": "cbca93dc-0253-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T06:51:07", "message_id": "66178852-0252-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T06:41:07", "message_id": "0065da64-0251-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T06:31:07", "message_id": "9ab62b2a-024f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T06:21:07", "message_id": "35162e2e-024e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T06:11:07", "message_id": "cf5f7fdc-024c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T06:01:07", "message_id": "69c8ab2c-024b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T05:51:07", "message_id": "040dad9c-024a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T05:41:06", "message_id": "9e5c70ba-0248-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T05:31:06", "message_id": "38a5d94c-0247-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T05:21:06", "message_id": "d2f808e6-0245-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T05:11:06", "message_id": "6d407566-0244-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T05:01:06", "message_id": "07987f66-0243-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T04:51:06", "message_id": "a1f027b4-0241-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T04:41:06", "message_id": "3c3d7044-0240-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T04:31:06", "message_id": "d691c994-023e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T04:21:06", "message_id": "70fb4c46-023d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T04:11:06", "message_id": "0b31eed4-023c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T04:01:05", "message_id": "a5894092-023a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T03:51:05", "message_id": "3fdc4092-0239-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T03:41:05", "message_id": "da457a24-0237-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T03:31:05", "message_id": "74788110-0236-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T03:21:05", "message_id": "0ecb0668-0235-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T03:11:05", "message_id": "a919b428-0233-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T03:01:05", "message_id": "4368a18a-0232-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T02:51:05", "message_id": "ddb717fa-0230-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T02:41:05", "message_id": "77f7c064-022f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T02:31:05", "message_id": "1256a578-022e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T02:21:04", "message_id": "aca63f28-022c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T02:11:04", "message_id": "46f6ee4e-022b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T02:01:04", "message_id": "e153a9de-0229-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T01:51:04", "message_id": "7b9b7f1e-0228-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T01:41:04", "message_id": "1600257a-0227-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T01:31:04", "message_id": "b04e3f9c-0225-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T01:21:04", "message_id": "4a86a63c-0224-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T01:11:04", "message_id": "e4d88dba-0222-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T01:01:04", "message_id": "7f34c380-0221-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T00:51:04", "message_id": "197d8bd6-0220-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T00:41:04", "message_id": "b3cf1166-021e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T00:31:03", "message_id": "4e1e6d36-021d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T00:21:03", "message_id": "e86f32aa-021b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T00:11:03", "message_id": "82bdbcc0-021a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T00:01:03", "message_id": "1d1495c0-0219-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T23:51:03", "message_id": "b7668266-0217-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T23:41:03", "message_id": "51b581a2-0216-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T23:31:03", "message_id": "ec0ca0ac-0214-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T23:21:03", "message_id": "866480c2-0213-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T23:11:03", "message_id": "20aa542e-0212-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T23:01:03", "message_id": "bb56d4a4-0210-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T22:51:03", "message_id": "5562d892-020f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T22:41:08", "message_id": "f2c28436-020d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T22:31:03", "message_id": "8a0fff14-020c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T22:21:02", "message_id": "2457dce2-020b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T22:11:02", "message_id": "bebdb1fa-0209-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T22:01:02", "message_id": "58fdddc8-0208-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T21:51:02", "message_id": "f3670d8c-0206-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T21:41:02", "message_id": "8dae9b82-0205-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T21:31:02", "message_id": "27f94400-0204-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T21:21:02", "message_id": "c26ccf90-0202-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T21:11:02", "message_id": "5ca6052e-0201-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T21:01:02", "message_id": "f6e494e0-01ff-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T20:51:02", "message_id": "9197f72c-01fe-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T20:41:02", "message_id": "2b9ae9da-01fd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T20:31:02", "message_id": "c61cc80e-01fb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T20:21:01", "message_id": "60383cd6-01fa-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T20:11:01", "message_id": "fa7ffcc2-01f8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T20:01:01", "message_id": "94d3272e-01f7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T19:51:01", "message_id": "2f27cb24-01f6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T19:41:01", "message_id": "c97aad74-01f4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T19:31:01", "message_id": "63d2b864-01f3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T19:21:01", "message_id": "fe0a34d6-01f1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T19:11:01", "message_id": "986c33b4-01f0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T19:01:01", "message_id": "32bcf54a-01ef-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T18:51:00", "message_id": "ccfc239e-01ed-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T18:41:00", "message_id": "67629bf4-01ec-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T18:31:00", "message_id": "01ae7a54-01eb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T18:21:00", "message_id": "9bfcc266-01e9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T18:11:00", "message_id": "3647b6de-01e8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T18:01:00", "message_id": "d0981cf8-01e6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T17:51:00", "message_id": "6af2d33a-01e5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T17:41:00", "message_id": "0547550c-01e4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T17:31:00", "message_id": "9f92acbc-01e2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T17:21:00", "message_id": "39e5d00c-01e1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T17:11:00", "message_id": "d4305eae-01df-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T17:00:59", "message_id": "6e824762-01de-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T16:50:59", "message_id": "08d7578c-01dd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T16:40:59", "message_id": "a3247e52-01db-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T16:30:59", "message_id": "3d7a2814-01da-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T16:20:59", "message_id": "d7c33fd4-01d8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T16:10:59", "message_id": "721ea458-01d7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T16:00:59", "message_id": "0c75a80a-01d6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T15:50:59", "message_id": "a6c562a8-01d4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T15:40:59", "message_id": "41265ce6-01d3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T15:30:59", "message_id": "db73e036-01d1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T15:20:59", "message_id": "75ccb1f0-01d0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T15:10:59", "message_id": "101b76c6-01cf-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T15:00:58", "message_id": "aa65da70-01cd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T14:50:58", "message_id": "44be3114-01cc-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T14:40:58", "message_id": "df055cfe-01ca-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T14:30:58", "message_id": "794d456c-01c9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T14:20:58", "message_id": "139ecbc4-01c8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T14:10:58", "message_id": "adf8a9e4-01c6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T14:00:58", "message_id": "484a530a-01c5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T13:50:58", "message_id": "e29e62ae-01c3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T13:40:58", "message_id": "7ce7d8b0-01c2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T13:30:58", "message_id": "17463fc0-01c1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T13:20:58", "message_id": "b18ca85a-01bf-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T13:10:57", "message_id": "4bde6990-01be-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T13:00:57", "message_id": "e631250c-01bc-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T12:50:57", "message_id": "807ff86a-01bb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T12:40:57", "message_id": "1ad4a764-01ba-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T12:30:57", "message_id": "b52ca1e2-01b8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T12:20:57", "message_id": "4f82c9b2-01b7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T12:10:57", "message_id": "e9d9dc1e-01b5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T12:00:57", "message_id": "842125e0-01b4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T11:50:57", "message_id": "1e786c9a-01b3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T11:40:57", "message_id": "b8d2a6c2-01b1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T11:30:57", "message_id": "531f1730-01b0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T11:20:57", "message_id": "ed72e4b2-01ae-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T11:10:57", "message_id": "87ca5e5c-01ad-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T11:00:56", "message_id": "2205ed44-01ac-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T10:50:57", "message_id": "bc8a6158-01aa-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T10:40:56", "message_id": "56b67bce-01a9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T10:30:56", "message_id": "f1149fe0-01a7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T10:20:56", "message_id": "8b591948-01a6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T10:10:56", "message_id": "25c8f18a-01a5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T10:00:56", "message_id": "c0057428-01a3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T09:50:56", "message_id": "5a4a25a8-01a2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T09:40:56", "message_id": "f4a70082-01a0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T09:30:56", "message_id": "8f12b690-019f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T09:20:56", "message_id": "29479188-019e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T09:10:55", "message_id": "c39ff880-019c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T09:00:56", "message_id": "5e09f706-019b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T08:50:55", "message_id": "f8418cc8-0199-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T08:40:55", "message_id": "92a0937e-0198-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T08:30:55", "message_id": "2cd48da8-0197-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T08:20:55", "message_id": "c73405ba-0195-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T08:10:55", "message_id": "6174dcf0-0194-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T08:00:55", "message_id": "fbc99e5a-0192-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T07:50:55", "message_id": "962c4ada-0191-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T07:40:55", "message_id": "308138cc-0190-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T07:30:55", "message_id": "cacc027e-018e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T07:20:54", "message_id": "6521e282-018d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T07:10:54", "message_id": "ff7492dc-018b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T07:00:54", "message_id": "99c23026-018a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T06:50:54", "message_id": "3418152a-0189-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T06:40:54", "message_id": "ce6adb0a-0187-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T06:30:54", "message_id": "68be0c42-0186-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T06:20:54", "message_id": "03135d6c-0185-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T06:10:54", "message_id": "9d59428a-0183-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T06:00:54", "message_id": "37a16e28-0182-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T05:50:54", "message_id": "d2040edc-0180-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T05:40:54", "message_id": "6c507162-017f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T05:30:53", "message_id": "0696cfb6-017e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T05:20:53", "message_id": "a0ee2bd8-017c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T05:10:53", "message_id": "3b4559b0-017b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T05:00:53", "message_id": "d59ca966-0179-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T04:50:53", "message_id": "6fe272b4-0178-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T04:40:53", "message_id": "0a2c0670-0177-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T04:30:53", "message_id": "a4818620-0175-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T04:20:53", "message_id": "3ed15702-0174-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T04:10:53", "message_id": "d923fe2e-0172-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T04:00:53", "message_id": "737f2306-0171-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T03:50:53", "message_id": "0dd15480-0170-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T03:40:53", "message_id": "a824936e-016e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T03:30:52", "message_id": "4279bd9c-016d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T03:20:52", "message_id": "dcc56c72-016b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T03:10:52", "message_id": "7717a2a6-016a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T03:00:52", "message_id": "1169c08e-0169-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T02:50:52", "message_id": "abbe54da-0167-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T02:40:52", "message_id": "46078b26-0166-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T02:30:52", "message_id": "e058ab12-0164-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T02:20:52", "message_id": "7abcdc2a-0163-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T02:10:52", "message_id": "150ebd0e-0162-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T02:00:52", "message_id": "af58ebca-0160-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T01:50:52", "message_id": "49d1ab3a-015f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T01:40:52", "message_id": "e415b742-015d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T01:30:52", "message_id": "7e781d4a-015c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T01:20:52", "message_id": "18cb6eda-015b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T01:10:51", "message_id": "b30cdc06-0159-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T01:00:51", "message_id": "4d687e4c-0158-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T00:50:51", "message_id": "e79680d8-0156-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T00:40:51", "message_id": "81ecd8d2-0155-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T00:30:51", "message_id": "1c3dbb7e-0154-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T00:20:51", "message_id": "b68049a6-0152-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T00:10:51", "message_id": "50dd3650-0151-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T00:00:51", "message_id": "eb2b9320-014f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T23:50:50", "message_id": "857eadce-014e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T23:40:50", "message_id": "1fc8fdbe-014d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T23:30:50", "message_id": "ba0fcfc6-014b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T23:20:50", "message_id": "5472c976-014a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T23:10:50", "message_id": "eebc001c-0148-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T23:00:50", "message_id": "894d2f2c-0147-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T22:50:50", "message_id": "23617a2a-0146-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T22:40:50", "message_id": "bdab19bc-0144-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T22:30:50", "message_id": "57ffc104-0143-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T22:20:50", "message_id": "f2640338-0141-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T22:10:50", "message_id": "8c9f871c-0140-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T22:00:50", "message_id": "26fe8bc0-013f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T21:50:49", "message_id": "c152206c-013d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T21:40:49", "message_id": "5baafe74-013c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T21:30:49", "message_id": "f601f8bc-013a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T21:20:49", "message_id": "904bb27a-0139-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T21:10:49", "message_id": "2aa7326a-0138-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T21:00:49", "message_id": "c4fe8658-0136-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T20:50:49", "message_id": "5f4c9314-0135-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T20:40:49", "message_id": "f9a22dd6-0133-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T20:30:49", "message_id": "93e76ca0-0132-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T20:20:49", "message_id": "2e5b27b0-0131-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T20:10:49", "message_id": "c8959fec-012f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T20:00:49", "message_id": "62e6da54-012e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T19:50:49", "message_id": "fd43c0f0-012c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T19:40:48", "message_id": "97856b2a-012b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T19:30:48", "message_id": "31dd55c2-012a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T19:20:48", "message_id": "cc3f7462-0128-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T19:10:48", "message_id": "66845c92-0127-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T19:00:48", "message_id": "00d0c8dc-0126-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T18:50:48", "message_id": "9b1b52c4-0124-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T18:40:48", "message_id": "35701456-0123-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T18:30:48", "message_id": "cfb986b6-0121-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T18:20:48", "message_id": "6a0b1402-0120-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T18:10:47", "message_id": "04587330-011f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T18:00:47", "message_id": "9ea06be8-011d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T17:50:47", "message_id": "38faa5e8-011c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T17:40:47", "message_id": "d34756de-011a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T17:30:47", "message_id": "6d95f8e6-0119-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T17:20:47", "message_id": "07efac36-0118-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T17:10:47", "message_id": "a23cfe26-0116-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T17:00:47", "message_id": "3c90f02e-0115-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T16:50:47", "message_id": "d6dc04cc-0113-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T16:40:47", "message_id": "712baa16-0112-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T16:30:47", "message_id": "0b8ca774-0111-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T16:20:46", "message_id": "a5d30be0-010f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T16:10:46", "message_id": "402b6cf2-010e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T16:00:46", "message_id": "da7a72f0-010c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T15:50:49", "message_id": "765170ae-010b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T15:40:47", "message_id": "0f7afc0c-010a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T15:30:46", "message_id": "a99576b6-0108-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T15:20:46", "message_id": "43cadcaa-0107-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T15:10:46", "message_id": "de329b9a-0105-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T15:00:46", "message_id": "78712f0c-0104-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T14:50:46", "message_id": "12cce84a-0103-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T14:40:46", "message_id": "ad188a64-0101-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T14:30:46", "message_id": "47618d3e-0100-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T14:20:46", "message_id": "e1bf76c2-00fe-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T14:10:46", "message_id": "7c46cad0-00fd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T14:00:45", "message_id": "164ea082-00fc-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T13:50:45", "message_id": "b0af1e74-00fa-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T13:40:45", "message_id": "4af8e44e-00f9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T13:30:45", "message_id": "e549855a-00f7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T13:20:46", "message_id": "7ffea4d8-00f6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T13:10:45", "message_id": "19de8ebc-00f5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T13:00:45", "message_id": "b43befec-00f3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T12:50:45", "message_id": "4e82d5c2-00f2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T12:40:45", "message_id": "e8dc7f4e-00f0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T12:30:44", "message_id": "83331988-00ef-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T12:20:44", "message_id": "1d7cc482-00ee-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T12:10:44", "message_id": "b7cdf684-00ec-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T12:00:44", "message_id": "52211dbc-00eb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T11:50:44", "message_id": "ec7a3da0-00e9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T11:40:44", "message_id": "86c30664-00e8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T11:30:44", "message_id": "211c542e-00e7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T11:20:44", "message_id": "bb6b8380-00e5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T11:10:44", "message_id": "55c3205c-00e4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T11:00:44", "message_id": "f00b3570-00e2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T10:50:44", "message_id": "8a5ce4ea-00e1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T10:40:43", "message_id": "24acab54-00e0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T10:30:43", "message_id": "bf032d92-00de-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T10:20:43", "message_id": "594fe824-00dd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T10:10:43", "message_id": "f3a3a1f6-00db-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T10:00:43", "message_id": "8e059346-00da-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T09:50:43", "message_id": "284382c6-00d9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T09:40:43", "message_id": "c29e6162-00d7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T09:30:43", "message_id": "5cee7ed4-00d6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T09:20:43", "message_id": "f7417416-00d4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T09:10:43", "message_id": "919ad5f4-00d3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T09:00:43", "message_id": "2be70846-00d2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T08:50:42", "message_id": "c630ef9a-00d0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T08:40:42", "message_id": "608c3434-00cf-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T08:30:42", "message_id": "fadfa446-00cd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T08:20:42", "message_id": "95307b9e-00cc-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T08:10:42", "message_id": "2f7bb418-00cb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T08:00:42", "message_id": "c9cb2ec4-00c9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T07:50:42", "message_id": "641c7c1e-00c8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T07:40:42", "message_id": "fe98e2a2-00c6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T07:30:42", "message_id": "98c9f8f4-00c5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T07:20:42", "message_id": "330c1750-00c4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T07:10:42", "message_id": "cd5f8668-00c2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T07:00:41", "message_id": "67b4efd4-00c1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T06:50:41", "message_id": "01fff8d8-00c0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T06:40:41", "message_id": "9c5520ea-00be-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T06:30:41", "message_id": "36a808f8-00bd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T06:20:41", "message_id": "d0f3b15c-00bb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T06:10:41", "message_id": "6b4a17c0-00ba-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T06:00:41", "message_id": "05a50b24-00b9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T05:50:41", "message_id": "9ff10f7c-00b7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T05:40:41", "message_id": "3a49a9d2-00b6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T05:30:41", "message_id": "d4955b64-00b4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T05:20:41", "message_id": "6ee64964-00b3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T05:10:41", "message_id": "093a1d76-00b2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T05:00:40", "message_id": "a38e973c-00b0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T04:50:40", "message_id": "3df4988c-00af-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T04:40:40", "message_id": "d84b9b94-00ad-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T04:30:40", "message_id": "72994dec-00ac-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T04:20:40", "message_id": "0cfab24c-00ab-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T04:10:40", "message_id": "a75429d8-00a9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T04:00:40", "message_id": "41c987e4-00a8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T03:50:41", "message_id": "dc454f94-00a6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T03:40:40", "message_id": "76586366-00a5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T03:30:40", "message_id": "10dde426-00a4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T03:20:40", "message_id": "ab06e64e-00a2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T03:10:40", "message_id": "45625af4-00a1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T03:00:40", "message_id": "dfb627cc-009f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T02:50:40", "message_id": "79fa4b6c-009e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T02:40:40", "message_id": "14837e26-009d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T02:30:40", "message_id": "aea0ff26-009b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T02:20:40", "message_id": "48f66e50-009a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T02:10:39", "message_id": "e34a8650-0098-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T02:00:39", "message_id": "7d9d4d7a-0097-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T01:50:39", "message_id": "17da3922-0096-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T01:40:39", "message_id": "b22ab8f0-0094-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T01:30:39", "message_id": "4c7cfd3e-0093-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T01:20:39", "message_id": "e6d9a046-0091-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T01:10:39", "message_id": "811d79c2-0090-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T01:00:39", "message_id": "1b7bfdc4-008f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T00:50:39", "message_id": "b5c2da4e-008d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T00:40:38", "message_id": "500d8aba-008c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T00:30:38", "message_id": "ea6e4916-008a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T00:20:38", "message_id": "84c25478-0089-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T00:10:38", "message_id": "1f0f90f6-0088-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T00:00:38", "message_id": "b96048b4-0086-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T23:50:38", "message_id": "53aae1f6-0085-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T23:40:38", "message_id": "ee0ba3b8-0083-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T23:30:38", "message_id": "8851d5b6-0082-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T23:20:38", "message_id": "229b8146-0081-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T23:10:38", "message_id": "bcf876c4-007f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T23:00:38", "message_id": "5780671c-007e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T22:50:38", "message_id": "f192f81c-007c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T22:40:37", "message_id": "8bec3b50-007b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T22:30:37", "message_id": "262b2534-007a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T22:20:37", "message_id": "c087e5c4-0078-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T22:10:37", "message_id": "5ad86574-0077-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T22:00:37", "message_id": "f52860b8-0075-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T21:50:37", "message_id": "8f862b74-0074-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T21:40:37", "message_id": "29ce4600-0073-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T21:30:37", "message_id": "c42436c6-0071-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T21:20:37", "message_id": "5e84a798-0070-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T21:10:37", "message_id": "f8c9f260-006e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T21:00:37", "message_id": "93127dda-006d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T20:50:36", "message_id": "2d5f9e38-006c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T20:40:36", "message_id": "c7b1e9b6-006a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T20:30:36", "message_id": "620adfd8-0069-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T20:20:36", "message_id": "fc4f8564-0067-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T20:10:36", "message_id": "96ace068-0066-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T20:00:36", "message_id": "30f868f6-0065-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T19:50:36", "message_id": "cb502e68-0063-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T19:40:36", "message_id": "659b1070-0062-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T19:30:36", "message_id": "ffee1f20-0060-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T19:20:36", "message_id": "9a3a0406-005f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T19:10:35", "message_id": "348ebb8e-005e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T19:00:35", "message_id": "cee28ef6-005c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T18:50:35", "message_id": "6932d24c-005b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T18:40:35", "message_id": "037e7948-005a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T18:30:35", "message_id": "9ddec756-0058-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T18:20:35", "message_id": "381e654e-0057-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T18:10:35", "message_id": "d27ca300-0055-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T18:00:35", "message_id": "6cce3ccc-0054-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T17:50:35", "message_id": "07206ba8-0053-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T17:40:35", "message_id": "a17a3d52-0051-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T17:30:35", "message_id": "3bce5232-0050-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T17:20:35", "message_id": "d61d0c86-004e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T17:10:34", "message_id": "706ce7d6-004d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T17:00:34", "message_id": "0abac9c2-004c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T16:50:34", "message_id": "a50edd6c-004a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T16:40:34", "message_id": "3f684fda-0049-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T16:30:34", "message_id": "d9bb9aa8-0047-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T16:20:34", "message_id": "741017b6-0046-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T16:10:34", "message_id": "0e5c1fec-0045-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T16:00:34", "message_id": "a8b7b698-0043-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T15:50:34", "message_id": "4305db3c-0042-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T15:40:34", "message_id": "dd52b324-0040-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T15:30:34", "message_id": "77a832f2-003f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T15:20:34", "message_id": "11fddd04-003e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T15:10:34", "message_id": "ac4dc344-003c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T15:00:33", "message_id": "4697ed3c-003b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T14:50:33", "message_id": "e0f0b000-0039-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T14:40:33", "message_id": "7b3a46f0-0038-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T14:30:33", "message_id": "1594b552-0037-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T14:20:33", "message_id": "afe06bc6-0035-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T14:10:33", "message_id": "4a427eb8-0034-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T14:00:33", "message_id": "e4c39870-0032-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T13:50:33", "message_id": "7ed5a4b4-0031-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T13:40:33", "message_id": "1933e22a-0030-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T13:30:33", "message_id": "b3817b00-002e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T13:20:33", "message_id": "4dddb684-002d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T13:10:32", "message_id": "e829b0dc-002b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T13:00:32", "message_id": "82778c42-002a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T12:50:32", "message_id": "1ccbb824-0029-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T12:40:32", "message_id": "b711c812-0027-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T12:30:32", "message_id": "516b6528-0026-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T12:20:32", "message_id": "ebb4feac-0024-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T12:10:32", "message_id": "85ff56bc-0023-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T12:00:32", "message_id": "205bd0ca-0022-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T11:50:32", "message_id": "baa7f23c-0020-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T11:40:32", "message_id": "550f9ca0-001f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T11:30:32", "message_id": "ef64c2fa-001d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T11:20:31", "message_id": "89a7d58e-001c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T11:10:32", "message_id": "2418b73e-001b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T11:00:31", "message_id": "be56c3e2-0019-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T10:50:31", "message_id": "58a91db6-0018-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T10:40:31", "message_id": "f304f026-0016-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T10:30:31", "message_id": "8d72adc6-0015-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T10:20:31", "message_id": "27bd64ea-0014-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T10:10:31", "message_id": "c22324ae-0012-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T10:00:31", "message_id": "5c46e19e-0011-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T09:50:31", "message_id": "f696c14e-000f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T09:40:31", "message_id": "90dfcd7e-000e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T09:30:31", "message_id": "2b432778-000d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T09:20:30", "message_id": "c5866a7c-000b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T09:10:30", "message_id": "5fd54d3e-000a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T09:00:30", "message_id": "fa3025c2-0008-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T08:50:30", "message_id": "947e1cf8-0007-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T08:40:30", "message_id": "2ed6ca72-0006-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T08:30:30", "message_id": "c92c99dc-0004-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T08:20:30", "message_id": "637991ea-0003-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T08:10:30", "message_id": "fdd8cafa-0001-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T08:00:30", "message_id": "981e40ba-0000-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T07:50:30", "message_id": "326dce3a-ffff-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T07:40:30", "message_id": "ccbe01dc-fffd-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T07:30:30", "message_id": "670d33a4-fffc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T07:20:29", "message_id": "0167d122-fffb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T07:10:29", "message_id": "9baea74e-fff9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T07:00:29", "message_id": "35f9dcda-fff8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T06:50:29", "message_id": "d05d1b86-fff6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T06:40:29", "message_id": "6aa4324e-fff5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T06:30:29", "message_id": "04f1d948-fff4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T06:20:29", "message_id": "9f45d118-fff2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T06:10:29", "message_id": "3995dda0-fff1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T06:00:29", "message_id": "d3ee62fc-ffef-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T05:50:29", "message_id": "6e47da9c-ffee-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T05:40:29", "message_id": "08a04054-ffed-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T05:30:29", "message_id": "a2e8b1b6-ffeb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T05:20:28", "message_id": "3d304146-ffea-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T05:10:28", "message_id": "d785ca74-ffe8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T05:00:28", "message_id": "71da73d8-ffe7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T04:50:28", "message_id": "0c1e0b78-ffe6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T04:40:28", "message_id": "a68063fc-ffe4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T04:30:28", "message_id": "40c422e8-ffe3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T04:20:28", "message_id": "db1d9bbe-ffe1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T04:10:28", "message_id": "756f4c5a-ffe0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T04:00:28", "message_id": "0fb76592-ffdf-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T03:50:28", "message_id": "aa0dee38-ffdd-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T03:40:27", "message_id": "445b1e5e-ffdc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T03:30:27", "message_id": "deac9a52-ffda-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T03:20:27", "message_id": "78fc9bea-ffd9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T03:10:27", "message_id": "1351e030-ffd8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T03:00:27", "message_id": "ada36eb2-ffd6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T02:50:27", "message_id": "47ee92b4-ffd5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T02:40:27", "message_id": "e23d23c8-ffd3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T02:30:27", "message_id": "7c97819a-ffd2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T02:20:27", "message_id": "170229d0-ffd1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T02:10:27", "message_id": "b12c4fb0-ffcf-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T02:00:27", "message_id": "4b871542-ffce-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T01:50:26", "message_id": "e5d17de2-ffcc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T01:40:26", "message_id": "8022ea4a-ffcb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T01:30:26", "message_id": "1a7534e2-ffca-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T01:20:26", "message_id": "b4cc3664-ffc8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T01:10:26", "message_id": "4f2232ec-ffc7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T01:00:26", "message_id": "e96f94f4-ffc5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T00:50:26", "message_id": "83c59aa0-ffc4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T00:40:26", "message_id": "1e1905ee-ffc3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T00:30:26", "message_id": "b867c5d8-ffc1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T00:20:26", "message_id": "53136120-ffc0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T00:10:26", "message_id": "ed078a56-ffbe-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T00:00:26", "message_id": "87835828-ffbd-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T23:50:25", "message_id": "21b3c0a6-ffbc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T23:40:25", "message_id": "bc095834-ffba-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T23:30:25", "message_id": "5662c7dc-ffb9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T23:20:25", "message_id": "f0cf2164-ffb7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T23:10:25", "message_id": "8b1fd328-ffb6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T23:00:25", "message_id": "2597fad6-ffb5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T22:50:25", "message_id": "bf9261f0-ffb3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T22:40:25", "message_id": "59f0525e-ffb2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T22:30:25", "message_id": "f4406d6e-ffb0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T22:20:24", "message_id": "8e800cce-ffaf-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T22:10:25", "message_id": "28e52fda-ffae-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T22:00:24", "message_id": "c32b4522-ffac-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T21:50:24", "message_id": "5d6e0216-ffab-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T21:40:24", "message_id": "f7c81ed4-ffa9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T21:30:24", "message_id": "9220d3c4-ffa8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T21:20:24", "message_id": "2c688f5a-ffa7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T21:10:24", "message_id": "c6ac468a-ffa5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T21:00:24", "message_id": "6106cd1a-ffa4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T20:50:24", "message_id": "fb581b46-ffa2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T20:40:23", "message_id": "95a3c288-ffa1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T20:30:23", "message_id": "2ff98dba-ffa0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T20:20:23", "message_id": "ca4b9662-ff9e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T20:10:23", "message_id": "6490bae2-ff9d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T20:00:23", "message_id": "fee9a4c0-ff9b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T19:50:23", "message_id": "99332efe-ff9a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T19:40:23", "message_id": "338d2420-ff99-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T19:30:23", "message_id": "cdde3f8e-ff97-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T19:20:23", "message_id": "68342f50-ff96-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T19:10:23", "message_id": "0282c6c2-ff95-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T19:00:23", "message_id": "9ccd229c-ff93-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T18:50:23", "message_id": "37258048-ff92-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T18:40:22", "message_id": "d178960a-ff90-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T18:30:22", "message_id": "6bb7efce-ff8f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T18:20:22", "message_id": "06082a0a-ff8e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T18:10:22", "message_id": "a05d5c08-ff8c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T18:00:22", "message_id": "3ab19a46-ff8b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T17:50:22", "message_id": "d5016740-ff89-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T17:40:22", "message_id": "6f59aeda-ff88-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T17:30:22", "message_id": "09a8ae3e-ff87-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T17:20:22", "message_id": "a3f4f120-ff85-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T17:10:22", "message_id": "3e4d0ea8-ff84-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T17:00:21", "message_id": "d89211cc-ff82-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T16:50:21", "message_id": "72da8216-ff81-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T16:40:21", "message_id": "0d3111ec-ff80-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T16:30:21", "message_id": "a78dc0f2-ff7e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T16:20:21", "message_id": "41d1eb36-ff7d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T16:10:21", "message_id": "dc2b6268-ff7b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T16:00:21", "message_id": "767ce848-ff7a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T15:50:21", "message_id": "10d0be1c-ff79-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T15:40:21", "message_id": "ab1c984e-ff77-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T15:30:21", "message_id": "4568b6e6-ff76-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T15:20:20", "message_id": "dfbde5a6-ff74-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T15:10:20", "message_id": "7a0a21e4-ff73-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T15:00:20", "message_id": "145a393e-ff72-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T14:50:20", "message_id": "aeac9678-ff70-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T14:40:20", "message_id": "48fb7066-ff6f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T14:30:20", "message_id": "e362181e-ff6d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T14:20:20", "message_id": "7db11e6c-ff6c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T14:10:20", "message_id": "1800ca82-ff6b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T14:00:20", "message_id": "b25117c4-ff69-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T13:50:20", "message_id": "4c9e867e-ff68-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T13:40:20", "message_id": "e7063024-ff66-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T13:30:20", "message_id": "814c760e-ff65-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T13:20:19", "message_id": "1b9db8aa-ff64-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T13:10:19", "message_id": "b5f4fe42-ff62-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T13:00:19", "message_id": "504f9cc4-ff61-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T12:50:19", "message_id": "eaa62fb0-ff5f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T12:40:19", "message_id": "84efccea-ff5e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T12:30:19", "message_id": "1f464870-ff5d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T12:20:19", "message_id": "b99bb538-ff5b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T12:10:19", "message_id": "53e15488-ff5a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T12:00:19", "message_id": "ee2f2f76-ff58-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T11:50:19", "message_id": "8887dfe8-ff57-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T11:40:19", "message_id": "22dd5278-ff56-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T11:30:19", "message_id": "bd2d5884-ff54-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T11:20:18", "message_id": "577c9352-ff53-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T11:10:19", "message_id": "f1ea4bb6-ff51-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T11:00:18", "message_id": "8c33d400-ff50-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T10:50:18", "message_id": "2684f4d2-ff4f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T10:40:18", "message_id": "c0e0b090-ff4d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T10:30:18", "message_id": "5b29a74e-ff4c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T10:20:18", "message_id": "f57bfca4-ff4a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T10:10:18", "message_id": "8fda069e-ff49-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T10:00:18", "message_id": "2a35545c-ff48-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T09:50:18", "message_id": "c474f95c-ff46-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T09:40:18", "message_id": "5ece7d5e-ff45-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T09:30:18", "message_id": "f90da9dc-ff43-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T09:20:18", "message_id": "93673ca2-ff42-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T09:10:17", "message_id": "2db8502c-ff41-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T09:00:17", "message_id": "c7fbf7ee-ff3f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T08:50:17", "message_id": "6250531e-ff3e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T08:40:17", "message_id": "fca692fe-ff3c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T08:30:17", "message_id": "96f4b8e2-ff3b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T08:20:17", "message_id": "3137d0f8-ff3a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T08:10:17", "message_id": "cb88800a-ff38-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T08:00:17", "message_id": "65d7b312-ff37-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T07:50:17", "message_id": "002927b8-ff36-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T07:40:16", "message_id": "9a76455a-ff34-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T07:30:16", "message_id": "34d2880e-ff33-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T07:20:16", "message_id": "cf193748-ff31-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T07:10:16", "message_id": "696848d6-ff30-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T07:00:16", "message_id": "03c2e94c-ff2f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T06:50:16", "message_id": "9e153ab0-ff2d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T06:40:16", "message_id": "3865465c-ff2c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T06:30:16", "message_id": "d2ac351a-ff2a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T06:20:16", "message_id": "6d0e48e8-ff29-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T06:10:16", "message_id": "076b92b2-ff28-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T06:00:16", "message_id": "a1ab3f6e-ff26-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T05:50:16", "message_id": "3c081f16-ff25-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T05:40:15", "message_id": "d64971bc-ff23-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T05:30:16", "message_id": "70c31e66-ff22-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T05:20:15", "message_id": "0af6a310-ff21-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T05:10:15", "message_id": "a53c8efa-ff1f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T05:00:15", "message_id": "3fa38c20-ff1e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T04:50:15", "message_id": "d9e656ac-ff1c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T04:40:15", "message_id": "743f39be-ff1b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T04:30:15", "message_id": "0e9e515e-ff1a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T04:20:15", "message_id": "a8de47a8-ff18-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T04:10:15", "message_id": "433ac59e-ff17-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T04:00:15", "message_id": "dd89ea78-ff15-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T03:50:15", "message_id": "77f2a78c-ff14-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T03:40:14", "message_id": "12321186-ff13-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T03:30:14", "message_id": "ac796dea-ff11-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T03:20:14", "message_id": "46d01062-ff10-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T03:10:14", "message_id": "e1352ffe-ff0e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T03:00:14", "message_id": "7b73af7a-ff0d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T02:50:14", "message_id": "15dfdc5c-ff0c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T02:40:14", "message_id": "b02a65ea-ff0a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T02:30:14", "message_id": "4a7def38-ff09-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T02:20:14", "message_id": "e4c48f9a-ff07-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T02:10:14", "message_id": "7f14c864-ff06-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T02:00:14", "message_id": "1962a168-ff05-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T01:50:14", "message_id": "b3c332e2-ff03-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T01:40:13", "message_id": "4e074106-ff02-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T01:30:13", "message_id": "e8606478-ff00-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T01:20:13", "message_id": "82b25b46-feff-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T01:10:13", "message_id": "1d0a499e-fefe-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T01:00:13", "message_id": "b74dd770-fefc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T00:50:13", "message_id": "51aa4e68-fefb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T00:40:13", "message_id": "ec003952-fef9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T00:30:13", "message_id": "864134be-fef8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T00:20:13", "message_id": "209301d4-fef7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T00:10:13", "message_id": "bae5dbbe-fef5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T00:00:12", "message_id": "552dec2c-fef4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T23:50:12", "message_id": "ef91445a-fef2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T23:40:12", "message_id": "89e1989a-fef1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T23:30:12", "message_id": "243772ea-fef0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T23:20:12", "message_id": "be9a0b24-feee-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T23:10:12", "message_id": "58d0baa0-feed-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T23:00:12", "message_id": "f36ed10c-feeb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T22:50:12", "message_id": "8d7a9a8a-feea-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T22:40:12", "message_id": "27cf1676-fee9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T22:30:12", "message_id": "c221a0a6-fee7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T22:20:12", "message_id": "5c6b75b2-fee6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T22:10:12", "message_id": "f6d37b92-fee4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T22:00:12", "message_id": "913c86b2-fee3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T21:50:11", "message_id": "2b6b1368-fee2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T21:40:12", "message_id": "c5e4bfcc-fee0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T21:30:11", "message_id": "6019cd28-fedf-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T21:20:11", "message_id": "fa6cae06-fedd-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T21:10:11", "message_id": "94b5a8a2-fedc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T21:00:11", "message_id": "2efc0eee-fedb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T20:50:11", "message_id": "c95880fa-fed9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T20:40:11", "message_id": "63b7df62-fed8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T20:30:11", "message_id": "fe031052-fed6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T20:20:11", "message_id": "9881341c-fed5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T20:10:11", "message_id": "32a005f2-fed4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T20:00:11", "message_id": "cd08c568-fed2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T19:50:10", "message_id": "67512996-fed1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T19:40:10", "message_id": "01a83f5e-fed0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T19:30:10", "message_id": "9bf9036a-fece-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T19:20:10", "message_id": "36468a3e-fecd-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T19:10:10", "message_id": "d09622d6-fecb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T19:00:10", "message_id": "6ad6aa48-feca-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T18:50:10", "message_id": "0552f5ba-fec9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T18:40:10", "message_id": "9f8b0322-fec7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T18:30:10", "message_id": "39d3a0b2-fec6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T18:20:10", "message_id": "d429e3a8-fec4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T18:10:09", "message_id": "6e76c694-fec3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T18:00:09", "message_id": "08bb10d6-fec2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T17:50:09", "message_id": "a3131612-fec0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T17:40:09", "message_id": "3d6b8d68-febf-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T17:30:09", "message_id": "d7b6a328-febd-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T17:20:09", "message_id": "720e30a0-febc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T17:10:09", "message_id": "0c53d5b8-febb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T17:00:09", "message_id": "a6a708ee-feb9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T16:50:09", "message_id": "40fa5844-feb8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T16:40:09", "message_id": "db431b68-feb6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T16:30:09", "message_id": "759a59d0-feb5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T16:20:08", "message_id": "0fe76aca-feb4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T16:10:08", "message_id": "aa44414e-feb2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T16:00:08", "message_id": "44966012-feb1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T15:50:08", "message_id": "dedfd40c-feaf-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T15:40:08", "message_id": "793d698a-feae-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T15:30:08", "message_id": "13837efa-fead-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T15:20:08", "message_id": "add8133c-feab-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T15:10:08", "message_id": "48261742-feaa-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T15:00:08", "message_id": "e276f0c0-fea8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T14:50:08", "message_id": "7ccd2c04-fea7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T14:40:08", "message_id": "172b65ba-fea6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T14:30:08", "message_id": "b184ca40-fea4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T14:20:07", "message_id": "4bd399a2-fea3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T14:10:07", "message_id": "e62096b0-fea1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T14:00:07", "message_id": "808eef64-fea0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T13:50:07", "message_id": "1ad18eda-fe9f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T13:40:07", "message_id": "b515a6a4-fe9d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T13:30:07", "message_id": "4f671a00-fe9c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T13:20:07", "message_id": "e9b7a7c0-fe9a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T13:10:07", "message_id": "8405f6a8-fe99-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T13:00:07", "message_id": "1e6174c2-fe98-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T12:50:07", "message_id": "b8b6b200-fe96-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T12:40:07", "message_id": "531b7fc6-fe95-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T12:30:07", "message_id": "ed5a3b74-fe93-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T12:20:06", "message_id": "87a54ba8-fe92-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T12:10:06", "message_id": "2202d65e-fe91-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T12:00:06", "message_id": "bc545b44-fe8f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T11:50:06", "message_id": "56a2a98c-fe8e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T11:40:06", "message_id": "f1020dd0-fe8c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T11:30:07", "message_id": "8bdfec52-fe8b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T11:20:06", "message_id": "25990a42-fe8a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T11:10:06", "message_id": "bfe4fc52-fe88-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T11:00:06", "message_id": "5a3ea0c0-fe87-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T10:50:06", "message_id": "f491e71a-fe85-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T10:40:06", "message_id": "8ee4041c-fe84-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T10:30:05", "message_id": "29313e88-fe83-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T10:20:05", "message_id": "c3874362-fe81-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T10:10:05", "message_id": "5dcdd6d6-fe80-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T10:00:05", "message_id": "f824f6b2-fe7e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T09:50:05", "message_id": "92717b20-fe7d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T09:40:05", "message_id": "2cc950f0-fe7c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T09:30:05", "message_id": "c71e2880-fe7a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T09:20:05", "message_id": "61672218-fe79-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T09:10:05", "message_id": "fbbfde56-fe77-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T09:00:05", "message_id": "960f5a74-fe76-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T08:50:05", "message_id": "305f53d8-fe75-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T08:40:04", "message_id": "cab1e2f4-fe73-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T08:30:04", "message_id": "65006fbc-fe72-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T08:20:04", "message_id": "ff53ad2e-fe70-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T08:10:04", "message_id": "99a8b4ac-fe6f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T08:00:04", "message_id": "33fadad2-fe6e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T07:50:04", "message_id": "ce4b8fd4-fe6c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T07:40:04", "message_id": "68ad580c-fe6b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T07:30:04", "message_id": "02fc9d34-fe6a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T07:20:04", "message_id": "9d50f72e-fe68-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T07:10:04", "message_id": "37a0603c-fe67-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T07:00:04", "message_id": "d1f0c796-fe65-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T06:50:04", "message_id": "6c3fdc8a-fe64-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T06:40:04", "message_id": "069e0a10-fe63-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T06:30:03", "message_id": "a0ef8118-fe61-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T06:20:03", "message_id": "3b3a725c-fe60-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T06:10:03", "message_id": "d5866b56-fe5e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T06:00:03", "message_id": "6fd6e9e4-fe5d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T05:50:03", "message_id": "0a296fdc-fe5c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T05:40:03", "message_id": "a48103a8-fe5a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T05:30:03", "message_id": "3ec8693a-fe59-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T05:20:03", "message_id": "d91ca458-fe57-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T05:10:03", "message_id": "7373bda4-fe56-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T05:00:03", "message_id": "0dc06c4c-fe55-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T04:50:02", "message_id": "a8118b16-fe53-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T04:40:02", "message_id": "426aff50-fe52-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T04:30:02", "message_id": "dcbf6494-fe50-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T04:20:02", "message_id": "770819a8-fe4f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T04:10:02", "message_id": "114ebee2-fe4e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T04:00:02", "message_id": "abaae8d2-fe4c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T03:50:02", "message_id": "45fa1ad6-fe4b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T03:40:02", "message_id": "e04f358c-fe49-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T03:30:02", "message_id": "7a9928ca-fe48-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T03:20:02", "message_id": "14e62bd2-fe47-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T03:10:02", "message_id": "af42b2ce-fe45-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T03:00:01", "message_id": "498e511e-fe44-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T02:50:01", "message_id": "e3dd1cac-fe42-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T02:40:01", "message_id": "7e2c9a32-fe41-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T02:30:01", "message_id": "188ad244-fe40-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T02:20:01", "message_id": "b2df77a2-fe3e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T02:10:01", "message_id": "4d284c28-fe3d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T02:00:01", "message_id": "e77f9008-fe3b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T01:50:01", "message_id": "81d36c58-fe3a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T01:40:01", "message_id": "1c30a51a-fe39-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T01:30:01", "message_id": "b680b012-fe37-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T01:20:01", "message_id": "50dbb604-fe36-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T01:10:01", "message_id": "eb230f34-fe34-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T01:00:01", "message_id": "857b4b66-fe33-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T00:50:00", "message_id": "1fc398a6-fe32-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T00:40:00", "message_id": "ba1b4d24-fe30-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T00:30:00", "message_id": "5466e638-fe2f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T00:20:00", "message_id": "eeb67a3e-fe2d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T00:10:00", "message_id": "890adca8-fe2c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T00:00:00", "message_id": "235c9014-fe2b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T23:50:00", "message_id": "bdaf81be-fe29-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T23:40:00", "message_id": "58045ca0-fe28-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T23:30:00", "message_id": "f25433f4-fe26-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T23:20:00", "message_id": "8cb196dc-fe25-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T23:10:00", "message_id": "273c9078-fe24-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T23:00:00", "message_id": "c18fd646-fe22-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T22:49:59", "message_id": "5b991ce0-fe21-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T22:39:59", "message_id": "f5e4d0fc-fe1f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T22:29:59", "message_id": "903df6da-fe1e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T22:19:59", "message_id": "2a92c096-fe1d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T22:09:59", "message_id": "c4e05d4a-fe1b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T21:59:59", "message_id": "5f304df8-fe1a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T21:49:59", "message_id": "f9808d98-fe18-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T21:39:59", "message_id": "93cdd04c-fe17-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T21:29:59", "message_id": "2e16da2e-fe16-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T21:19:59", "message_id": "c86efe6e-fe14-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T21:09:58", "message_id": "62c0334a-fe13-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T20:59:58", "message_id": "fd1435a6-fe11-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T20:49:58", "message_id": "975a5638-fe10-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T20:39:58", "message_id": "31ab8ede-fe0f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T20:29:58", "message_id": "cbfaab02-fe0d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T20:19:58", "message_id": "6655bd74-fe0c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T20:09:58", "message_id": "00a0c1f0-fe0b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T19:59:58", "message_id": "9af5ef5c-fe09-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T19:49:58", "message_id": "3547ceba-fe08-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T19:39:58", "message_id": "cfa4d2ca-fe06-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T19:29:58", "message_id": "69f1cad8-fe05-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T19:19:57", "message_id": "0442ae42-fe04-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T19:09:57", "message_id": "9e99f736-fe02-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T18:59:57", "message_id": "38e7a916-fe01-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T18:49:57", "message_id": "d336c13e-fdff-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T18:39:57", "message_id": "6d8fad9c-fdfe-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T18:29:57", "message_id": "07e2892a-fdfd-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T18:19:57", "message_id": "a2379030-fdfb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T18:09:57", "message_id": "3c97d038-fdfa-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T17:59:57", "message_id": "d6dcdc4e-fdf8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T17:49:57", "message_id": "7132b612-fdf7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T17:39:57", "message_id": "0b85596a-fdf6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T17:29:57", "message_id": "a5d9d042-fdf4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T17:19:56", "message_id": "40294d64-fdf3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T17:09:56", "message_id": "da7d3a80-fdf1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T16:59:56", "message_id": "74cf12d6-fdf0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T16:49:56", "message_id": "0f1fed26-fdef-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T16:39:56", "message_id": "a97ba902-fded-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T16:29:56", "message_id": "43f58b58-fdec-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T16:19:56", "message_id": "de26446c-fdea-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T16:09:56", "message_id": "7883b8a2-fde9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T15:59:56", "message_id": "12d2b40a-fde8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T15:49:56", "message_id": "ad2ab996-fde6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T15:39:56", "message_id": "477ec21e-fde5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T15:29:56", "message_id": "e1d01144-fde3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T15:19:56", "message_id": "7c51c174-fde2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T15:09:56", "message_id": "166b25fe-fde1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T14:59:55", "message_id": "b0baa712-fddf-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T14:49:55", "message_id": "4b18f874-fdde-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T14:39:55", "message_id": "e562a102-fddc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T14:29:55", "message_id": "7fb72810-fddb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T14:19:55", "message_id": "1a080abc-fdda-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T14:09:55", "message_id": "b45e9bd2-fdd8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T13:59:55", "message_id": "4eaa480a-fdd7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T13:49:55", "message_id": "e8ff1022-fdd5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T13:39:55", "message_id": "834b68e4-fdd4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T13:29:55", "message_id": "1d99a8e0-fdd3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T13:19:55", "message_id": "b7eb2bb4-fdd1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T13:09:54", "message_id": "5240ad76-fdd0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T12:59:54", "message_id": "ec939fe8-fdce-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T12:49:54", "message_id": "86e59954-fdcd-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T12:39:54", "message_id": "2132cdc6-fdcc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T12:29:54", "message_id": "bb8327b0-fdca-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T12:19:54", "message_id": "55d73970-fdc9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T12:09:54", "message_id": "f021d186-fdc7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T11:59:54", "message_id": "8a77f352-fdc6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T11:49:54", "message_id": "24cd0cdc-fdc5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T11:39:54", "message_id": "bf220f32-fdc3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T11:29:54", "message_id": "5971c2dc-fdc2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T11:19:54", "message_id": "f3c7bd20-fdc0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T11:09:53", "message_id": "8e188e56-fdbf-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T10:59:53", "message_id": "286bf35a-fdbe-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T10:49:54", "message_id": "c2e7afa2-fdbc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T10:39:53", "message_id": "5d0e4494-fdbb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T10:29:53", "message_id": "f76ab0a6-fdb9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T10:19:53", "message_id": "91b847ce-fdb8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T10:09:53", "message_id": "2c18ee88-fdb7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T09:59:53", "message_id": "c66bbc42-fdb5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T09:49:53", "message_id": "60bf9914-fdb4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T09:39:53", "message_id": "fb1108b0-fdb2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T09:29:53", "message_id": "95656ff2-fdb1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T09:19:53", "message_id": "2fb481a8-fdb0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T09:09:52", "message_id": "ca0120ec-fdae-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T08:59:52", "message_id": "645a9440-fdad-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T08:49:52", "message_id": "feb8dae4-fdab-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T08:39:52", "message_id": "98fdba0e-fdaa-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T08:29:52", "message_id": "334ef2b4-fda9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T08:19:52", "message_id": "cd9da4c0-fda7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T08:09:52", "message_id": "68096528-fda6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T07:59:52", "message_id": "0245737c-fda5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T07:49:52", "message_id": "9c94152a-fda3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T07:39:52", "message_id": "36ebfb1c-fda2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T07:29:52", "message_id": "d139f194-fda0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T07:19:52", "message_id": "6b8e3e8c-fd9f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T07:09:52", "message_id": "06060cbc-fd9e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T06:59:51", "message_id": "a02a8a72-fd9c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T06:49:51", "message_id": "3a81102a-fd9b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T06:39:51", "message_id": "d4c8894e-fd99-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T06:29:51", "message_id": "6f1d1034-fd98-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T06:19:51", "message_id": "09689cf0-fd97-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T06:09:51", "message_id": "a3be0364-fd95-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T05:59:51", "message_id": "3e1150bc-fd94-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T05:49:51", "message_id": "d863ae96-fd92-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T05:39:51", "message_id": "72b4426e-fd91-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T05:29:51", "message_id": "0d1205e6-fd90-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T05:19:50", "message_id": "a7608584-fd8e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T05:09:50", "message_id": "41aafd6a-fd8d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T04:59:50", "message_id": "dc0a81f2-fd8b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T04:49:50", "message_id": "7667f114-fd8a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T04:39:50", "message_id": "10c8520a-fd89-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T04:29:50", "message_id": "ab1a9ab8-fd87-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T04:19:50", "message_id": "4552c116-fd86-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T04:09:50", "message_id": "dfbfa446-fd84-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T03:59:50", "message_id": "79d5ff8c-fd83-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T03:49:50", "message_id": "1446b86a-fd82-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T03:39:50", "message_id": "ae9fd010-fd80-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T03:29:50", "message_id": "48fc011c-fd7f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T03:19:50", "message_id": "e35a4798-fd7d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T03:09:50", "message_id": "7da5e8ea-fd7c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T02:59:49", "message_id": "17dca108-fd7b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T02:49:49", "message_id": "b21eb5f0-fd79-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T02:39:49", "message_id": "4cb14ac6-fd78-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T02:29:49", "message_id": "e6f1e80e-fd76-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T02:19:49", "message_id": "814c8e7e-fd75-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T02:09:49", "message_id": "1b9709c0-fd74-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T01:59:49", "message_id": "b5d63ef4-fd72-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T01:49:49", "message_id": "502ed81e-fd71-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T01:39:49", "message_id": "ea8830c4-fd6f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T01:29:49", "message_id": "85068ca6-fd6e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T01:19:49", "message_id": "1f670480-fd6d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T01:09:49", "message_id": "b9a47340-fd6b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T00:59:48", "message_id": "53dbebb6-fd6a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T00:49:48", "message_id": "ee1cf7b2-fd68-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T00:39:48", "message_id": "888417ba-fd67-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T00:29:48", "message_id": "22dce6c2-fd66-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T00:19:48", "message_id": "bd386522-fd64-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T00:09:48", "message_id": "57a9506e-fd63-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-04T23:59:48", "message_id": "f1ffce06-fd61-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-04T23:49:48", "message_id": "8c3a7ee6-fd60-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-04T23:39:05", "message_id": "0cff66e2-fd5f-11e2-b8cf-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-04T23:29:05", "message_id": "a76b6732-fd5d-11e2-b8cf-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}], "http://localhost:8777/v2/meters/storage.objects.size?q.field=resource_id&q.value=4cb54495d7784d3dbd61db9d7adf955f": [{"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-12T04:01:18", "message_id": "d76a81ce-0303-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-12T03:51:18", "message_id": "71ba0a62-0302-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-12T03:41:18", "message_id": "0c081656-0301-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-12T03:31:18", "message_id": "a66b7ea6-02ff-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-12T03:21:18", "message_id": "40b71382-02fe-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-12T03:11:18", "message_id": "db0cf836-02fc-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-12T03:01:17", "message_id": "7552b5fe-02fb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-12T02:51:17", "message_id": "0faed60c-02fa-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-12T02:41:17", "message_id": "a9eaecda-02f8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-12T02:31:17", "message_id": "4447744e-02f7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-12T02:21:17", "message_id": "de9282ca-02f5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-12T02:11:17", "message_id": "78e5a17e-02f4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-12T02:01:17", "message_id": "133e7f68-02f3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-12T01:51:17", "message_id": "ad9419c6-02f1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-12T01:41:17", "message_id": "47e00f50-02f0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-12T01:31:17", "message_id": "e23342fe-02ee-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-12T01:21:17", "message_id": "7c7e05da-02ed-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-12T01:11:16", "message_id": "16d53f38-02ec-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-12T01:01:16", "message_id": "b1128c38-02ea-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-12T00:51:16", "message_id": "4b78b5e2-02e9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-12T00:41:16", "message_id": "e5be6ff4-02e7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-12T00:31:16", "message_id": "800df0ea-02e6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-12T00:21:16", "message_id": "1a8c9f2e-02e5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-12T00:11:16", "message_id": "b4ae640e-02e3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-12T00:01:16", "message_id": "4f022af6-02e2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T23:51:16", "message_id": "e955176e-02e0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T23:41:16", "message_id": "83aef9d0-02df-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T23:31:16", "message_id": "1e04c548-02de-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T23:21:15", "message_id": "b84b5538-02dc-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T23:11:15", "message_id": "52ac22f8-02db-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T23:01:16", "message_id": "ed353488-02d9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T22:51:15", "message_id": "874c902c-02d8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T22:41:15", "message_id": "219897ae-02d7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T22:31:15", "message_id": "bbebb720-02d5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T22:21:15", "message_id": "56370980-02d4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T22:11:15", "message_id": "f08734b2-02d2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T22:01:15", "message_id": "8adddcfc-02d1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T21:51:15", "message_id": "253678b0-02d0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T21:41:15", "message_id": "bf874298-02ce-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T21:31:14", "message_id": "59d34e7a-02cd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T21:21:14", "message_id": "f429de78-02cb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T21:11:14", "message_id": "8e7ac43a-02ca-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T21:01:14", "message_id": "28ca071e-02c9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T20:51:14", "message_id": "c31fb590-02c7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T20:41:14", "message_id": "5d6a69e4-02c6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T20:31:14", "message_id": "f7c3ca14-02c4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T20:21:14", "message_id": "9214ce4e-02c3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T20:11:14", "message_id": "2c71d362-02c2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T20:01:14", "message_id": "c6bbe9dc-02c0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T19:51:14", "message_id": "61110104-02bf-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T19:41:14", "message_id": "fb5efbc8-02bd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T19:31:13", "message_id": "95b4770e-02bc-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T19:21:13", "message_id": "300319e8-02bb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T19:11:13", "message_id": "ca5018d6-02b9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T19:01:13", "message_id": "649b0704-02b8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T18:51:13", "message_id": "fee8d0e0-02b6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T18:41:13", "message_id": "9941430e-02b5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T18:31:13", "message_id": "338e12cc-02b4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T18:21:13", "message_id": "cddf2476-02b2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T18:11:13", "message_id": "68300790-02b1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T18:01:13", "message_id": "027f14be-02b0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T17:51:12", "message_id": "9cd4e07c-02ae-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T17:41:12", "message_id": "37228d8e-02ad-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T17:31:12", "message_id": "d17a7fb0-02ab-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T17:21:12", "message_id": "6bc848ec-02aa-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T17:11:12", "message_id": "0615a1c6-02a9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T17:01:12", "message_id": "a075859e-02a7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T16:51:12", "message_id": "3ac64ee6-02a6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T16:41:12", "message_id": "d525cfe0-02a4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T16:31:12", "message_id": "6f6eac7c-02a3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T16:21:12", "message_id": "09b6b7cc-02a2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T16:11:12", "message_id": "a40c758e-02a0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T16:01:12", "message_id": "3e684146-029f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T15:51:12", "message_id": "d8b753c4-029d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T15:41:12", "message_id": "7315d6fe-029c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T15:31:11", "message_id": "0d703070-029b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T15:21:11", "message_id": "a7cf5e40-0299-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T15:11:11", "message_id": "421cb346-0298-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T15:01:11", "message_id": "dc6b48ec-0296-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T14:51:11", "message_id": "76b6269e-0295-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T14:41:11", "message_id": "110805d4-0294-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T14:31:11", "message_id": "ab57e304-0292-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T14:21:11", "message_id": "45aa4a16-0291-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T14:11:11", "message_id": "dff880e4-028f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T14:01:11", "message_id": "7a531908-028e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T13:51:11", "message_id": "14a7b7c2-028d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T13:41:11", "message_id": "aefa2ece-028b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T13:31:10", "message_id": "494b9758-028a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T13:21:10", "message_id": "e3971e42-0288-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T13:11:10", "message_id": "7df00d8e-0287-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T13:01:10", "message_id": "1847f59c-0286-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T12:51:10", "message_id": "b2924e88-0284-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T12:41:10", "message_id": "4ce81d2a-0283-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T12:31:10", "message_id": "e7347b00-0281-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T12:21:10", "message_id": "81806b3a-0280-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T12:11:10", "message_id": "1bd38782-027f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T12:01:10", "message_id": "b6211ec8-027d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T11:51:10", "message_id": "5079d8a4-027c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T11:41:09", "message_id": "eabf9720-027a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T11:31:09", "message_id": "8514473c-0279-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T11:21:09", "message_id": "1f64ca8e-0278-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T11:11:09", "message_id": "b9b6d228-0276-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T11:01:09", "message_id": "54076236-0275-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T10:51:09", "message_id": "ee559be8-0273-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T10:41:09", "message_id": "88abd2b8-0272-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T10:31:09", "message_id": "23019eda-0271-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T10:21:09", "message_id": "bd49a6ba-026f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T10:11:09", "message_id": "57ac69d8-026e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T10:01:09", "message_id": "f1f8ac6a-026c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T09:51:08", "message_id": "8c48d3be-026b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T09:41:08", "message_id": "2697479a-026a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T09:31:08", "message_id": "c0eed9b8-0268-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T09:21:08", "message_id": "5b3eadba-0267-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T09:11:08", "message_id": "f5966198-0265-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T09:01:08", "message_id": "8fe6d6a8-0264-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T08:51:08", "message_id": "2a43db80-0263-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T08:41:08", "message_id": "c496fb2e-0261-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T08:31:08", "message_id": "5eed2308-0260-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T08:21:08", "message_id": "f93140ae-025e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T08:11:08", "message_id": "93853dc4-025d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T08:01:08", "message_id": "2ddc4842-025c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T07:51:07", "message_id": "c825c3c6-025a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T07:41:07", "message_id": "62816152-0259-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T07:31:07", "message_id": "fccdc40a-0257-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T07:21:07", "message_id": "9722ac2a-0256-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T07:11:07", "message_id": "3164feac-0255-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T07:01:07", "message_id": "cbc9aca6-0253-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T06:51:07", "message_id": "66156fd6-0252-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T06:41:07", "message_id": "0064d3da-0251-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T06:31:07", "message_id": "9ab4d98c-024f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T06:21:07", "message_id": "35154266-024e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T06:11:07", "message_id": "cf5d985c-024c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T06:01:07", "message_id": "69c7b82a-024b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T05:51:07", "message_id": "040cee34-024a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T05:41:06", "message_id": "9e5b90fa-0248-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T05:31:06", "message_id": "38a4e14a-0247-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T05:21:06", "message_id": "d2f709dc-0245-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T05:11:06", "message_id": "6d3f7e40-0244-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T05:01:06", "message_id": "0797549c-0243-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T04:51:06", "message_id": "a1ef51c2-0241-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T04:41:06", "message_id": "3c3c8076-0240-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T04:31:06", "message_id": "d690fdca-023e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T04:21:06", "message_id": "70f9e0f4-023d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T04:11:06", "message_id": "0b30c2de-023c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T04:01:05", "message_id": "a5882220-023a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T03:51:05", "message_id": "3fdb3120-0239-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T03:41:05", "message_id": "da441026-0237-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T03:31:05", "message_id": "7477b8d4-0236-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T03:21:05", "message_id": "0eca2374-0235-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T03:11:05", "message_id": "a917f8ea-0233-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T03:01:05", "message_id": "4367c594-0232-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T02:51:05", "message_id": "ddb5ae74-0230-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T02:41:05", "message_id": "77f72f0a-022f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T02:31:05", "message_id": "1255d0da-022e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T02:21:04", "message_id": "aca46e78-022c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T02:11:04", "message_id": "46f5fca0-022b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T02:01:04", "message_id": "e152a7aa-0229-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T01:51:04", "message_id": "7b9ae220-0228-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T01:41:04", "message_id": "15ff06f4-0227-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T01:31:04", "message_id": "b04c7540-0225-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T01:21:04", "message_id": "4a854620-0224-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T01:11:04", "message_id": "e4d7bff2-0222-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T01:01:04", "message_id": "7f33edde-0221-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T00:51:04", "message_id": "197cb24c-0220-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T00:41:04", "message_id": "b3ce3e62-021e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T00:31:03", "message_id": "4e1da1d0-021d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T00:21:03", "message_id": "e86e60aa-021b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T00:11:03", "message_id": "82bcf18c-021a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T00:01:03", "message_id": "1d13337e-0219-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T23:51:03", "message_id": "b765a512-0217-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T23:41:03", "message_id": "51b416aa-0216-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T23:31:03", "message_id": "ec0bcf74-0214-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T23:21:03", "message_id": "8663c77c-0213-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T23:11:03", "message_id": "20a972e8-0212-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T23:01:03", "message_id": "bb55d086-0210-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T22:51:03", "message_id": "5561dc9e-020f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T22:41:08", "message_id": "f2c0fcb0-020d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T22:31:03", "message_id": "8a0f0bb8-020c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T22:21:02", "message_id": "24570fec-020b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T22:11:02", "message_id": "bebcb34a-0209-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T22:01:02", "message_id": "58fcf9d0-0208-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T21:51:02", "message_id": "f365e25e-0206-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T21:41:02", "message_id": "8dadb4d8-0205-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T21:31:02", "message_id": "27f850a4-0204-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T21:21:02", "message_id": "c26bdf2c-0202-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T21:11:02", "message_id": "5ca5361c-0201-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T21:01:02", "message_id": "f6e3a314-01ff-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T20:51:02", "message_id": "919618e4-01fe-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T20:41:02", "message_id": "2b99e4e0-01fd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T20:31:02", "message_id": "c61b98e4-01fb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T20:21:01", "message_id": "60372a1c-01fa-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T20:11:01", "message_id": "fa7a4264-01f8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T20:01:01", "message_id": "94d255ec-01f7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T19:51:01", "message_id": "2f26d976-01f6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T19:41:01", "message_id": "c979096a-01f4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T19:31:01", "message_id": "63d1ee34-01f3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T19:21:01", "message_id": "fe09665a-01f1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T19:11:01", "message_id": "986b3252-01f0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T19:01:01", "message_id": "32bc13c8-01ef-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T18:51:00", "message_id": "ccfb0eb4-01ed-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T18:41:00", "message_id": "67617b34-01ec-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T18:31:00", "message_id": "01ad48aa-01eb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T18:21:00", "message_id": "9bfc0aec-01e9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T18:11:00", "message_id": "3646f58c-01e8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T18:01:00", "message_id": "d0973ff4-01e6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T17:51:00", "message_id": "6af17e54-01e5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T17:41:00", "message_id": "0546abac-01e4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T17:31:00", "message_id": "9f91e2be-01e2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T17:21:00", "message_id": "39e4ed9a-01e1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T17:11:00", "message_id": "d42f8d8a-01df-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T17:00:59", "message_id": "6e817530-01de-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T16:50:59", "message_id": "08d695fe-01dd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T16:40:59", "message_id": "a3238bfa-01db-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T16:30:59", "message_id": "3d795a42-01da-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T16:20:59", "message_id": "d7c259e8-01d8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T16:10:59", "message_id": "721e0b42-01d7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T16:00:59", "message_id": "0c747304-01d6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T15:50:59", "message_id": "a6c440e4-01d4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T15:40:59", "message_id": "41259914-01d3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T15:30:59", "message_id": "db72afa4-01d1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T15:20:59", "message_id": "75cbaf76-01d0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T15:10:59", "message_id": "101a5ea8-01cf-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T15:00:58", "message_id": "aa65215c-01cd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T14:50:58", "message_id": "44bcb014-01cc-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T14:40:58", "message_id": "df046376-01ca-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T14:30:58", "message_id": "794c8884-01c9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T14:20:58", "message_id": "139d99e8-01c8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T14:10:58", "message_id": "adf7cb3c-01c6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T14:00:58", "message_id": "48497a16-01c5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T13:50:58", "message_id": "e29d9162-01c3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T13:40:58", "message_id": "7ce6fe5e-01c2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T13:30:58", "message_id": "17449422-01c1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T13:20:58", "message_id": "b18ba932-01bf-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T13:10:57", "message_id": "4bdd7a62-01be-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T13:00:57", "message_id": "e6303390-01bc-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T12:50:57", "message_id": "807e988a-01bb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T12:40:57", "message_id": "1ad3c628-01ba-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T12:30:57", "message_id": "b52b9b30-01b8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T12:20:57", "message_id": "4f81cb5c-01b7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T12:10:57", "message_id": "e9d89908-01b5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T12:00:57", "message_id": "84207564-01b4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T11:50:57", "message_id": "1e776160-01b3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T11:40:57", "message_id": "b8d1f24a-01b1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T11:30:57", "message_id": "531dafc6-01b0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T11:20:57", "message_id": "ed710908-01ae-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T11:10:57", "message_id": "87c96510-01ad-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T11:00:56", "message_id": "220470cc-01ac-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T10:50:57", "message_id": "bc897a18-01aa-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T10:40:56", "message_id": "56b58372-01a9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T10:30:56", "message_id": "f11266ee-01a7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T10:20:56", "message_id": "8b58242a-01a6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T10:10:56", "message_id": "25c80dd8-01a5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T10:00:56", "message_id": "c0042654-01a3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T09:50:56", "message_id": "5a492e5a-01a2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T09:40:56", "message_id": "f4a618d4-01a0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T09:30:56", "message_id": "8f119f58-019f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T09:20:56", "message_id": "2946bf60-019e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T09:10:55", "message_id": "c39f2518-019c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T09:00:56", "message_id": "5e08e5d2-019b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T08:50:55", "message_id": "f8401348-0199-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T08:40:55", "message_id": "929f845c-0198-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T08:30:55", "message_id": "2cd3da8e-0197-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T08:20:55", "message_id": "c73335f4-0195-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T08:10:55", "message_id": "6173a7a4-0194-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T08:00:55", "message_id": "fbc87304-0192-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T07:50:55", "message_id": "962b1688-0191-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T07:40:55", "message_id": "3080403e-0190-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T07:30:55", "message_id": "cacb2854-018e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T07:20:54", "message_id": "65213aa8-018d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T07:10:54", "message_id": "ff734b66-018b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T07:00:54", "message_id": "99c08a1e-018a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T06:50:54", "message_id": "341737e0-0189-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T06:40:54", "message_id": "ce6a180a-0187-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T06:30:54", "message_id": "68bd71a6-0186-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T06:20:54", "message_id": "0312a16a-0185-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T06:10:54", "message_id": "9d582440-0183-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T06:00:54", "message_id": "37a08cc4-0182-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T05:50:54", "message_id": "d202b488-0180-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T05:40:54", "message_id": "6c4f3ec8-017f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T05:30:53", "message_id": "0695e89e-017e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T05:20:53", "message_id": "a0ecef20-017c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T05:10:53", "message_id": "3b43be3e-017b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T05:00:53", "message_id": "d59bd68a-0179-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T04:50:53", "message_id": "6fe1364c-0178-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T04:40:53", "message_id": "0a2b397a-0177-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T04:30:53", "message_id": "a4807820-0175-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T04:20:53", "message_id": "3ed09100-0174-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T04:10:53", "message_id": "d923033e-0172-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T04:00:53", "message_id": "737e3e78-0171-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T03:50:53", "message_id": "0dd00b02-0170-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T03:40:53", "message_id": "a8238de8-016e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T03:30:52", "message_id": "4278d332-016d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T03:20:52", "message_id": "dcc4c7f4-016b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T03:10:52", "message_id": "7716c1ba-016a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T03:00:52", "message_id": "1168fc76-0169-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T02:50:52", "message_id": "abbd59ea-0167-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T02:40:52", "message_id": "4606b782-0166-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T02:30:52", "message_id": "e057f38e-0164-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T02:20:52", "message_id": "7abbf832-0163-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T02:10:52", "message_id": "150de258-0162-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T02:00:52", "message_id": "af583ce8-0160-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T01:50:52", "message_id": "49d0c9fe-015f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T01:40:52", "message_id": "e414438a-015d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T01:30:52", "message_id": "7e7741ae-015c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T01:20:52", "message_id": "18ca41ea-015b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T01:10:51", "message_id": "b30c128a-0159-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T01:00:51", "message_id": "4d6764c6-0158-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T00:50:51", "message_id": "e794c770-0156-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T00:40:51", "message_id": "81ec1410-0155-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T00:30:51", "message_id": "1c3ca9b4-0154-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T00:20:51", "message_id": "b67f547e-0152-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T00:10:51", "message_id": "50dc7b66-0151-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T00:00:51", "message_id": "eb2abc2a-014f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T23:50:50", "message_id": "857c9638-014e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T23:40:50", "message_id": "1fc84342-014d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T23:30:50", "message_id": "ba0eec28-014b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T23:20:50", "message_id": "5471e52e-014a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T23:10:50", "message_id": "eebb1396-0148-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T23:00:50", "message_id": "894c18d0-0147-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T22:50:50", "message_id": "2360751c-0146-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T22:40:50", "message_id": "bda9ee16-0144-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T22:30:50", "message_id": "57ff0dfe-0143-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T22:20:50", "message_id": "f2631d4c-0141-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T22:10:49", "message_id": "8c9e840c-0140-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T22:00:49", "message_id": "26fd8e82-013f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T21:50:49", "message_id": "c1512b4e-013d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T21:40:49", "message_id": "5baa1a72-013c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T21:30:49", "message_id": "f600f7c8-013a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T21:20:49", "message_id": "904accc0-0139-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T21:10:49", "message_id": "2aa6886a-0138-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T21:00:49", "message_id": "c4fd90ae-0136-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T20:50:49", "message_id": "5f4b1c96-0135-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T20:40:49", "message_id": "f9a17210-0133-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T20:30:49", "message_id": "93e66daa-0132-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T20:20:49", "message_id": "2e594904-0131-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T20:10:49", "message_id": "c894e6c4-012f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T20:00:49", "message_id": "62e5c056-012e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T19:50:49", "message_id": "fd42907c-012c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T19:40:48", "message_id": "97847c88-012b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T19:30:48", "message_id": "31dc7918-012a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T19:20:48", "message_id": "cc3e51e0-0128-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T19:10:48", "message_id": "66834eb0-0127-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T19:00:48", "message_id": "00cea458-0126-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T18:50:48", "message_id": "9b19fbc2-0124-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T18:40:48", "message_id": "356f0976-0123-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T18:30:48", "message_id": "cfb8d36a-0121-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T18:20:48", "message_id": "6a07db98-0120-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T18:10:47", "message_id": "04577778-011f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T18:00:47", "message_id": "9e9fa636-011d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T17:50:47", "message_id": "38f9fb0c-011c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T17:40:47", "message_id": "d3466b5c-011a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T17:30:47", "message_id": "6d954bda-0119-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T17:20:47", "message_id": "07ee9166-0118-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T17:10:47", "message_id": "a23c3202-0116-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T17:00:47", "message_id": "3c8fa21e-0115-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T16:50:47", "message_id": "d6daf2b2-0113-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T16:40:47", "message_id": "712aa0c6-0112-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T16:30:47", "message_id": "0b8beeec-0111-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T16:20:46", "message_id": "a5d23300-010f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T16:10:46", "message_id": "402a7bb2-010e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T16:00:46", "message_id": "da7929ae-010c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T15:50:49", "message_id": "764fb02a-010b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T15:40:47", "message_id": "0f79feb0-010a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T15:30:46", "message_id": "a993f818-0108-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T15:20:46", "message_id": "43ca28c8-0107-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T15:10:46", "message_id": "de31aa78-0105-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T15:00:46", "message_id": "78702d00-0104-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T14:50:46", "message_id": "12cb14e8-0103-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T14:40:46", "message_id": "ad16efb0-0101-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T14:30:46", "message_id": "4760d1c8-0100-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T14:20:46", "message_id": "e1be946e-00fe-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T14:10:46", "message_id": "7c45f29a-00fd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T14:00:45", "message_id": "164da42a-00fc-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T13:50:45", "message_id": "b0ae1e66-00fa-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T13:40:45", "message_id": "4af7800e-00f9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T13:30:45", "message_id": "e5488204-00f7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T13:20:46", "message_id": "7ffd6aaa-00f6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T13:10:45", "message_id": "19dd925a-00f5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T13:00:45", "message_id": "b43b1e82-00f3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T12:50:45", "message_id": "4e820e44-00f2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T12:40:45", "message_id": "e8dba5b0-00f0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T12:30:44", "message_id": "833228ca-00ef-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T12:20:44", "message_id": "1d7be436-00ee-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T12:10:44", "message_id": "b7ccfbf8-00ec-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T12:00:44", "message_id": "522031e0-00eb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T11:50:44", "message_id": "ec798608-00e9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T11:40:44", "message_id": "86c25a8e-00e8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T11:30:44", "message_id": "211b96ba-00e7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T11:20:44", "message_id": "bb6a88a4-00e5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T11:10:44", "message_id": "55c234ee-00e4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T11:00:44", "message_id": "f009dfe0-00e2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T10:50:44", "message_id": "8a5ba5b2-00e1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T10:40:43", "message_id": "24ab5d44-00e0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T10:30:43", "message_id": "bf026cb8-00de-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T10:20:43", "message_id": "594e80f6-00dd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T10:10:43", "message_id": "f3a29964-00db-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T10:00:43", "message_id": "8e043406-00da-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T09:50:43", "message_id": "28429a3c-00d9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T09:40:43", "message_id": "c29dada8-00d7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T09:30:43", "message_id": "5cedb1fc-00d6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T09:20:43", "message_id": "f7401ec2-00d4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T09:10:43", "message_id": "9199e13a-00d3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T09:00:43", "message_id": "2be637d6-00d2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T08:50:42", "message_id": "c63046bc-00d0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T08:40:42", "message_id": "608ac7ac-00cf-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T08:30:42", "message_id": "faded30e-00cd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T08:20:42", "message_id": "952fce9c-00cc-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T08:10:42", "message_id": "2f7a72b0-00cb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T08:00:42", "message_id": "c9ca1412-00c9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T07:50:42", "message_id": "641b5582-00c8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T07:40:42", "message_id": "fe978e84-00c6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T07:30:42", "message_id": "98c83352-00c5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T07:20:42", "message_id": "330b6706-00c4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T07:10:42", "message_id": "cd5e63c8-00c2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T07:00:41", "message_id": "67b3f39a-00c1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T06:50:41", "message_id": "01ff4f1e-00c0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T06:40:41", "message_id": "9c542424-00be-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T06:30:41", "message_id": "36a6feb8-00bd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T06:20:41", "message_id": "d0f2d516-00bb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T06:10:41", "message_id": "6b493aa8-00ba-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T06:00:41", "message_id": "05a441ee-00b9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T05:50:41", "message_id": "9ff043c6-00b7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T05:40:41", "message_id": "3a48ad7a-00b6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T05:30:41", "message_id": "d4941268-00b4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T05:20:41", "message_id": "6ee550ea-00b3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T05:10:41", "message_id": "0938e33e-00b2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T05:00:40", "message_id": "a38da8a4-00b0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T04:50:40", "message_id": "3df38320-00af-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T04:40:40", "message_id": "d84af2c0-00ad-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T04:30:40", "message_id": "729855f4-00ac-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T04:20:40", "message_id": "0cf9c5a8-00ab-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T04:10:40", "message_id": "a752b31e-00a9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T04:00:40", "message_id": "41c7c544-00a8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T03:50:41", "message_id": "dc444f4a-00a6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T03:40:40", "message_id": "76575e9e-00a5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T03:30:40", "message_id": "10dd06d2-00a4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T03:20:40", "message_id": "ab060512-00a2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T03:10:40", "message_id": "45619358-00a1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T03:00:40", "message_id": "dfb551d0-009f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T02:50:40", "message_id": "79f947e4-009e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T02:40:40", "message_id": "14823dae-009d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T02:30:40", "message_id": "ae9fdb3c-009b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T02:20:40", "message_id": "48f5c9a0-009a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T02:10:39", "message_id": "e349ab0e-0098-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T02:00:39", "message_id": "7d9bdf94-0097-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T01:50:39", "message_id": "17d97a6e-0096-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T01:40:39", "message_id": "b22935ca-0094-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T01:30:39", "message_id": "4c7bdc4c-0093-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T01:20:39", "message_id": "e6d8b7f8-0091-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T01:10:39", "message_id": "811cb938-0090-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T01:00:39", "message_id": "1b7b19d6-008f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T00:50:39", "message_id": "b5c1acc8-008d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T00:40:38", "message_id": "500cd354-008c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T00:30:38", "message_id": "ea6d07d6-008a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T00:20:38", "message_id": "84c18d54-0089-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T00:10:38", "message_id": "1f0e7630-0088-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T00:00:38", "message_id": "b95f3492-0086-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T23:50:38", "message_id": "53aa0d8a-0085-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T23:40:38", "message_id": "ee0ab7e6-0083-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T23:30:38", "message_id": "8850e85e-0082-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T23:20:38", "message_id": "229ab838-0081-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T23:10:38", "message_id": "bcf77fb2-007f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T23:00:38", "message_id": "577fbf06-007e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T22:50:38", "message_id": "f19223ba-007c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T22:40:37", "message_id": "8beb0406-007b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T22:30:37", "message_id": "262a7fda-007a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T22:20:37", "message_id": "c0870438-0078-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T22:10:37", "message_id": "5ad6ff7c-0077-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T22:00:37", "message_id": "f527b280-0075-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T21:50:37", "message_id": "8f847176-0074-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T21:40:37", "message_id": "29cd446c-0073-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T21:30:37", "message_id": "c422dc72-0071-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T21:20:37", "message_id": "5e839d80-0070-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T21:10:37", "message_id": "f8c78d4a-006e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T21:00:37", "message_id": "9310ae6a-006d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T20:50:36", "message_id": "2d5e4344-006c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T20:40:36", "message_id": "c7b107da-006a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T20:30:36", "message_id": "6209f578-0069-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T20:20:36", "message_id": "fc4ebe40-0067-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T20:10:36", "message_id": "96ac270e-0066-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T20:00:36", "message_id": "30f7543e-0065-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T19:50:36", "message_id": "cb4f5aec-0063-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T19:40:36", "message_id": "659a343e-0062-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T19:30:36", "message_id": "ffed0068-0060-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T19:20:36", "message_id": "9a38b27c-005f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T19:10:35", "message_id": "348d940c-005e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T19:00:35", "message_id": "cee16c88-005c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T18:50:35", "message_id": "6930f54e-005b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T18:40:35", "message_id": "037d96ea-005a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T18:30:35", "message_id": "9dddec1e-0058-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T18:20:35", "message_id": "381db7ca-0057-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T18:10:35", "message_id": "d27b41e0-0055-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T18:00:35", "message_id": "6cccf420-0054-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T17:50:35", "message_id": "071f88fa-0053-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T17:40:35", "message_id": "a179758e-0051-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T17:30:35", "message_id": "3bcd5418-0050-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T17:20:35", "message_id": "d61adea2-004e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T17:10:34", "message_id": "706b43f4-004d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T17:00:34", "message_id": "0ab9e57a-004c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T16:50:34", "message_id": "a50c8ab2-004a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T16:40:34", "message_id": "3f67a27e-0049-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T16:30:34", "message_id": "d9ba7fba-0047-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T16:20:34", "message_id": "740ef098-0046-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T16:10:34", "message_id": "0e5b0e54-0045-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T16:00:34", "message_id": "a8b67b8e-0043-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T15:50:34", "message_id": "43050ec8-0042-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T15:40:34", "message_id": "dd52023a-0040-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T15:30:34", "message_id": "77a74266-003f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T15:20:34", "message_id": "11fd0e6a-003e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T15:10:33", "message_id": "ac4ca11c-003c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T15:00:33", "message_id": "4696fa1c-003b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T14:50:33", "message_id": "e0ef9d5a-0039-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T14:40:33", "message_id": "7b399f70-0038-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T14:30:33", "message_id": "1593d592-0037-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T14:20:33", "message_id": "afdf86a2-0035-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T14:10:33", "message_id": "4a419746-0034-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T14:00:33", "message_id": "e4c2ef88-0032-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T13:50:33", "message_id": "7ed4a3b6-0031-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T13:40:33", "message_id": "1932bd00-0030-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T13:30:33", "message_id": "b380c0ac-002e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T13:20:33", "message_id": "4ddc88f4-002d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T13:10:32", "message_id": "e828a584-002b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T13:00:32", "message_id": "8276af8e-002a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T12:50:32", "message_id": "1ccadc2e-0029-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T12:40:32", "message_id": "b710f9a0-0027-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T12:30:32", "message_id": "516a9d5a-0026-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T12:20:32", "message_id": "ebb41f14-0024-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T12:10:32", "message_id": "85fe56f4-0023-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T12:00:32", "message_id": "205b0ec4-0022-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T11:50:32", "message_id": "baa71312-0020-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T11:40:32", "message_id": "550ee472-001f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T11:30:32", "message_id": "ef63fbcc-001d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T11:20:31", "message_id": "89a540a8-001c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T11:10:32", "message_id": "2416d1b2-001b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T11:00:31", "message_id": "be55cfe6-0019-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T10:50:31", "message_id": "58a7fb7a-0018-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T10:40:31", "message_id": "f30410fc-0016-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T10:30:31", "message_id": "8d718bf8-0015-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T10:20:31", "message_id": "27bb6992-0014-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T10:10:31", "message_id": "c22248c2-0012-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T10:00:31", "message_id": "5c460e22-0011-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T09:50:31", "message_id": "f695da68-000f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T09:40:31", "message_id": "90dee79c-000e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T09:30:31", "message_id": "2b42956a-000d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T09:20:30", "message_id": "c585d94a-000b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T09:10:30", "message_id": "5fd47fb2-000a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T09:00:30", "message_id": "fa2eda1e-0008-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T08:50:30", "message_id": "947d846e-0007-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T08:40:30", "message_id": "2ed626a8-0006-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T08:30:30", "message_id": "c92bdd76-0004-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T08:20:30", "message_id": "6378876e-0003-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T08:10:30", "message_id": "fdd7bcf0-0001-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T08:00:30", "message_id": "981d9098-0000-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T07:50:30", "message_id": "326cc210-ffff-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T07:40:30", "message_id": "ccbd48dc-fffd-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T07:30:30", "message_id": "670c4a0c-fffc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T07:20:29", "message_id": "0166b04e-fffb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T07:10:29", "message_id": "9badcb12-fff9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T07:00:29", "message_id": "35f8d2d6-fff8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T06:50:29", "message_id": "d05bbbec-fff6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T06:40:29", "message_id": "6aa37f48-fff5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T06:30:29", "message_id": "04f0f172-fff4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T06:20:29", "message_id": "9f44d380-fff2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T06:10:29", "message_id": "39953846-fff1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T06:00:29", "message_id": "d3ed80b2-ffef-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T05:50:29", "message_id": "6e46dbec-ffee-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T05:40:29", "message_id": "089f6634-ffed-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T05:30:29", "message_id": "a2e7d354-ffeb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T05:20:28", "message_id": "3d2f4aca-ffea-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T05:10:28", "message_id": "d784aa90-ffe8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T05:00:28", "message_id": "71d9a82c-ffe7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T04:50:28", "message_id": "0c1d43f0-ffe6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T04:40:28", "message_id": "a67eb02a-ffe4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T04:30:28", "message_id": "40c307be-ffe3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T04:20:28", "message_id": "db1ccb8a-ffe1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T04:10:28", "message_id": "756e2190-ffe0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T04:00:28", "message_id": "0fb64982-ffdf-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T03:50:28", "message_id": "aa0d1e9a-ffdd-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T03:40:27", "message_id": "445a6ad6-ffdc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T03:30:27", "message_id": "deabc4ba-ffda-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T03:20:27", "message_id": "78fb6694-ffd9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T03:10:27", "message_id": "13507b64-ffd8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T03:00:27", "message_id": "ada28efc-ffd6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T02:50:27", "message_id": "47edb09c-ffd5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T02:40:27", "message_id": "e23c2ab8-ffd3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T02:30:27", "message_id": "7c968d9e-ffd2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T02:20:27", "message_id": "17013138-ffd1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T02:10:27", "message_id": "b12afc3c-ffcf-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T02:00:26", "message_id": "4b863410-ffce-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T01:50:26", "message_id": "e5d0a2b4-ffcc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T01:40:26", "message_id": "802233ca-ffcb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T01:30:26", "message_id": "1a7375d0-ffca-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T01:20:26", "message_id": "b4cb53d4-ffc8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T01:10:26", "message_id": "4f215764-ffc7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T01:00:26", "message_id": "e96e8924-ffc5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T00:50:26", "message_id": "83c480ac-ffc4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T00:40:26", "message_id": "1e183c0e-ffc3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T00:30:26", "message_id": "b8666d82-ffc1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T00:20:26", "message_id": "531193d6-ffc0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T00:10:26", "message_id": "ed06703a-ffbe-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T00:00:26", "message_id": "878250cc-ffbd-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T23:50:25", "message_id": "21b2c7d2-ffbc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T23:40:25", "message_id": "bc0873a6-ffba-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T23:30:25", "message_id": "5661a17c-ffb9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T23:20:25", "message_id": "f0cdad34-ffb7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T23:10:25", "message_id": "8b1e6d58-ffb6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T23:00:25", "message_id": "25965050-ffb5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T22:50:25", "message_id": "bf915f44-ffb3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T22:40:25", "message_id": "59ef4346-ffb2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T22:30:25", "message_id": "f43f0c62-ffb0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T22:20:24", "message_id": "8e7f61c0-ffaf-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T22:10:24", "message_id": "28e45f10-ffae-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T22:00:24", "message_id": "c32a9df2-ffac-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T21:50:24", "message_id": "5d6cf452-ffab-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T21:40:24", "message_id": "f7c745ea-ffa9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T21:30:24", "message_id": "921fb962-ffa8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T21:20:24", "message_id": "2c67b1f2-ffa7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T21:10:24", "message_id": "c6ab91a4-ffa5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T21:00:24", "message_id": "610613a2-ffa4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T20:50:24", "message_id": "fb56cf5c-ffa2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T20:40:23", "message_id": "95a27cfc-ffa1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T20:30:23", "message_id": "2ff817b4-ffa0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T20:20:23", "message_id": "ca4aa464-ff9e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T20:10:23", "message_id": "648fc0b0-ff9d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T20:00:23", "message_id": "fee8fe76-ff9b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T19:50:23", "message_id": "993283aa-ff9a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T19:40:23", "message_id": "338c4be0-ff99-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T19:30:23", "message_id": "cddd6dfc-ff97-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T19:20:23", "message_id": "68333d8e-ff96-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T19:10:23", "message_id": "0282120e-ff95-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T19:00:23", "message_id": "9ccbbdf8-ff93-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T18:50:22", "message_id": "3724dd6e-ff92-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T18:40:22", "message_id": "d1776424-ff90-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T18:30:22", "message_id": "6bb72e2c-ff8f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T18:20:22", "message_id": "0606f5b8-ff8e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T18:10:22", "message_id": "a05c49bc-ff8c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T18:00:22", "message_id": "3ab0c404-ff8b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T17:50:22", "message_id": "d5006f34-ff89-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T17:40:22", "message_id": "6f58972a-ff88-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T17:30:22", "message_id": "09a7d7f2-ff87-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T17:20:22", "message_id": "a3f42ae2-ff85-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T17:10:22", "message_id": "3e4c481a-ff84-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T17:00:21", "message_id": "d8911cea-ff82-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T16:50:21", "message_id": "72d9ae22-ff81-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T16:40:21", "message_id": "0d300b76-ff80-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T16:30:21", "message_id": "a78ceb50-ff7e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T16:20:21", "message_id": "41d06810-ff7d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T16:10:21", "message_id": "dc2a874e-ff7b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T16:00:21", "message_id": "767bfbfe-ff7a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T15:50:21", "message_id": "10cfe01e-ff79-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T15:40:21", "message_id": "ab1bc112-ff77-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T15:30:21", "message_id": "4567ba52-ff76-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T15:20:20", "message_id": "dfbb936e-ff74-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T15:10:20", "message_id": "7a094f26-ff73-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T15:00:20", "message_id": "1459170c-ff72-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T14:50:20", "message_id": "aeabee62-ff70-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T14:40:20", "message_id": "48faa212-ff6f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T14:30:20", "message_id": "e360e656-ff6d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T14:20:20", "message_id": "7db082cc-ff6c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T14:10:20", "message_id": "17ffed10-ff6b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T14:00:20", "message_id": "b250425e-ff69-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T13:50:20", "message_id": "4c9dce28-ff68-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T13:40:20", "message_id": "e70567de-ff66-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T13:30:20", "message_id": "814b0314-ff65-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T13:20:19", "message_id": "1b9ceb46-ff64-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T13:10:19", "message_id": "b5f3d6ac-ff62-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T13:00:19", "message_id": "504ed92e-ff61-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T12:50:19", "message_id": "eaa4c440-ff5f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T12:40:19", "message_id": "84ef2254-ff5e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T12:30:19", "message_id": "1f456e32-ff5d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T12:20:19", "message_id": "b99b0c3c-ff5b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T12:10:19", "message_id": "53e0787e-ff5a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T12:00:19", "message_id": "ee2e5736-ff58-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T11:50:19", "message_id": "8886f254-ff57-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T11:40:19", "message_id": "22dc4aea-ff56-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T11:30:19", "message_id": "bd2c0786-ff54-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T11:20:18", "message_id": "577bba22-ff53-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T11:10:19", "message_id": "f1e94a0e-ff51-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T11:00:18", "message_id": "8c30ff14-ff50-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T10:50:18", "message_id": "26841652-ff4f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T10:40:18", "message_id": "c0df78f6-ff4d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T10:30:18", "message_id": "5b28d314-ff4c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T10:20:18", "message_id": "f57b25cc-ff4a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T10:10:18", "message_id": "8fd95596-ff49-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T10:00:18", "message_id": "2a34a0a2-ff48-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T09:50:18", "message_id": "c47420ea-ff46-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T09:40:18", "message_id": "5ecdcbca-ff45-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T09:30:18", "message_id": "f90cf582-ff43-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T09:20:18", "message_id": "93666412-ff42-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T09:10:17", "message_id": "2db75d16-ff41-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T09:00:17", "message_id": "c7fb1c84-ff3f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T08:50:17", "message_id": "624e2b8e-ff3e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T08:40:17", "message_id": "fca5d206-ff3c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T08:30:17", "message_id": "96f3bc26-ff3b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T08:20:17", "message_id": "31371578-ff3a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T08:10:17", "message_id": "cb87bc60-ff38-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T08:00:17", "message_id": "65d6efc2-ff37-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T07:50:17", "message_id": "00283628-ff36-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T07:40:16", "message_id": "9a752814-ff34-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T07:30:16", "message_id": "34d0dfcc-ff33-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T07:20:16", "message_id": "cf18441e-ff31-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T07:10:16", "message_id": "69677078-ff30-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T07:00:16", "message_id": "03c1f4e2-ff2f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T06:50:16", "message_id": "9e145492-ff2d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T06:40:16", "message_id": "38646bc4-ff2c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T06:30:16", "message_id": "d2ab1978-ff2a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T06:20:16", "message_id": "6d0d5320-ff29-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T06:10:16", "message_id": "076abb3a-ff28-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T06:00:16", "message_id": "a1aa7f52-ff26-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T05:50:16", "message_id": "3c06c1ca-ff25-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T05:40:15", "message_id": "d648bcc2-ff23-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T05:30:16", "message_id": "70c24946-ff22-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T05:20:15", "message_id": "0af5f136-ff21-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T05:10:15", "message_id": "a53abdaa-ff1f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T05:00:15", "message_id": "3fa1e9ce-ff1e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T04:50:15", "message_id": "d9e53a38-ff1c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T04:40:15", "message_id": "743e5e2c-ff1b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T04:30:15", "message_id": "0e9cf6ce-ff1a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T04:20:15", "message_id": "a8ddaa46-ff18-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T04:10:15", "message_id": "4339ece6-ff17-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T04:00:15", "message_id": "dd88178e-ff15-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T03:50:15", "message_id": "77f05ec8-ff14-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T03:40:14", "message_id": "123139be-ff13-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T03:30:14", "message_id": "ac786f44-ff11-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T03:20:14", "message_id": "46cf292c-ff10-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T03:10:14", "message_id": "e1341f6a-ff0e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T03:00:14", "message_id": "7b71b29c-ff0d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T02:50:14", "message_id": "15df238e-ff0c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T02:40:14", "message_id": "b0294be2-ff0a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T02:30:14", "message_id": "4a7ca02e-ff09-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T02:20:14", "message_id": "e4c3bfe8-ff07-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T02:10:14", "message_id": "7f141914-ff06-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T02:00:14", "message_id": "19619872-ff05-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T01:50:14", "message_id": "b3c1dd84-ff03-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T01:40:13", "message_id": "4e067a46-ff02-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T01:30:13", "message_id": "e85f411a-ff00-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T01:20:13", "message_id": "82b116aa-feff-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T01:10:13", "message_id": "1d095674-fefe-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T01:00:13", "message_id": "b74cb638-fefc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T00:50:13", "message_id": "51a940b8-fefb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T00:40:13", "message_id": "ebfe7680-fef9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T00:30:13", "message_id": "86403f3c-fef8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T00:20:13", "message_id": "209230d8-fef7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T00:10:13", "message_id": "bae5028e-fef5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T00:00:12", "message_id": "552d3c82-fef4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T23:50:12", "message_id": "ef9048d4-fef2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T23:40:12", "message_id": "89e06042-fef1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T23:30:12", "message_id": "243662d8-fef0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T23:20:12", "message_id": "be982548-feee-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T23:10:12", "message_id": "58cfe5e4-feed-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T23:00:12", "message_id": "f36da71e-feeb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T22:50:12", "message_id": "8d79a9e0-feea-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T22:40:12", "message_id": "27ce7090-fee9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T22:30:12", "message_id": "c220dcd4-fee7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T22:20:12", "message_id": "5c69e12a-fee6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T22:10:12", "message_id": "f6d2526c-fee4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T22:00:12", "message_id": "913a9bf4-fee3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T21:50:11", "message_id": "2b6a1fd0-fee2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T21:40:12", "message_id": "c5e25b6a-fee0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T21:30:11", "message_id": "6018bbe0-fedf-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T21:20:11", "message_id": "fa6bdaee-fedd-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T21:10:11", "message_id": "94b48dc8-fedc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T21:00:11", "message_id": "2efabbfc-fedb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T20:50:11", "message_id": "c9579c3a-fed9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T20:40:11", "message_id": "63b66b5a-fed8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T20:30:11", "message_id": "fe022656-fed6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T20:20:11", "message_id": "988002e0-fed5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T20:10:11", "message_id": "329eef64-fed4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T20:00:11", "message_id": "cd07f660-fed2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T19:50:10", "message_id": "67502398-fed1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T19:40:10", "message_id": "01a776a0-fed0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T19:30:10", "message_id": "9bf83a20-fece-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T19:20:10", "message_id": "3645216c-fecd-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T19:10:10", "message_id": "d09522aa-fecb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T19:00:10", "message_id": "6ad570e2-feca-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T18:50:10", "message_id": "0551f34a-fec9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T18:40:10", "message_id": "9f89d9a2-fec7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T18:30:10", "message_id": "39d2e0c8-fec6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T18:20:10", "message_id": "d42900aa-fec4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T18:10:09", "message_id": "6e75895a-fec3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T18:00:09", "message_id": "08ba1082-fec2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T17:50:09", "message_id": "a3123b34-fec0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T17:40:09", "message_id": "3d6a5718-febf-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T17:30:09", "message_id": "d7b5aa68-febd-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T17:20:09", "message_id": "720d22d2-febc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T17:10:09", "message_id": "0c532456-febb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T17:00:09", "message_id": "a6a5f6a2-feb9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T16:50:09", "message_id": "40f97f96-feb8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T16:40:09", "message_id": "db42282a-feb6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T16:30:09", "message_id": "75995a12-feb5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T16:20:08", "message_id": "0fe6839e-feb4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T16:10:08", "message_id": "aa433e3e-feb2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T16:00:08", "message_id": "44958aac-feb1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T15:50:08", "message_id": "dedee8bc-feaf-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T15:40:08", "message_id": "793c938e-feae-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T15:30:08", "message_id": "13822fb4-fead-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T15:20:08", "message_id": "add755f0-feab-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T15:10:08", "message_id": "48253b1a-feaa-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T15:00:08", "message_id": "e2764b02-fea8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T14:50:08", "message_id": "7ccc3560-fea7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T14:40:08", "message_id": "172a75ba-fea6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T14:30:08", "message_id": "b18416f4-fea4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T14:20:07", "message_id": "4bd2d2f6-fea3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T14:10:07", "message_id": "e61f701e-fea1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T14:00:07", "message_id": "808d7404-fea0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T13:50:07", "message_id": "1ad0c7de-fe9f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T13:40:07", "message_id": "b513d2a2-fe9d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T13:30:07", "message_id": "4f664030-fe9c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T13:20:07", "message_id": "e9b6a00a-fe9a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T13:10:07", "message_id": "84053a06-fe99-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T13:00:07", "message_id": "1e60d4e0-fe98-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T12:50:07", "message_id": "b8b55e00-fe96-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T12:40:07", "message_id": "531a8e0e-fe95-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T12:30:07", "message_id": "ed594ca0-fe93-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T12:20:06", "message_id": "87a48682-fe92-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T12:10:06", "message_id": "22023a46-fe91-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T12:00:06", "message_id": "bc53663a-fe8f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T11:50:06", "message_id": "56a1ebdc-fe8e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T11:40:06", "message_id": "f10086ae-fe8c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T11:30:07", "message_id": "8bde9bd6-fe8b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T11:20:06", "message_id": "25984ab2-fe8a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T11:10:06", "message_id": "bfe43f24-fe88-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T11:00:06", "message_id": "5a3d77b8-fe87-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T10:50:06", "message_id": "f4913e5a-fe85-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T10:40:06", "message_id": "8ee2ea78-fe84-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T10:30:05", "message_id": "2930847a-fe83-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T10:20:05", "message_id": "c3868ed6-fe81-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T10:10:05", "message_id": "5dcd1214-fe80-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T10:00:05", "message_id": "f8241ee0-fe7e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T09:50:05", "message_id": "9270a934-fe7d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T09:40:05", "message_id": "2cc7f89a-fe7c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T09:30:05", "message_id": "c71cb400-fe7a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T09:20:05", "message_id": "6165c968-fe79-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T09:10:05", "message_id": "fbbe7214-fe77-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T09:00:05", "message_id": "960cbfd0-fe76-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T08:50:05", "message_id": "305e5d52-fe75-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T08:40:04", "message_id": "cab0ffce-fe73-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T08:30:04", "message_id": "64ff5a5a-fe72-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T08:20:04", "message_id": "ff52d1b0-fe70-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T08:10:04", "message_id": "99a7f1de-fe6f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T08:00:04", "message_id": "33fa1aca-fe6e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T07:50:04", "message_id": "ce4ab276-fe6c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T07:40:04", "message_id": "68ac0362-fe6b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T07:30:04", "message_id": "02fbda84-fe6a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T07:20:04", "message_id": "9d50112e-fe68-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T07:10:04", "message_id": "379f4cba-fe67-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T07:00:04", "message_id": "d1efca44-fe65-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T06:50:04", "message_id": "6c3f2f9c-fe64-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T06:40:04", "message_id": "069cafee-fe63-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T06:30:03", "message_id": "a0eeb6de-fe61-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T06:20:03", "message_id": "3b397f14-fe60-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T06:10:03", "message_id": "d5851dc8-fe5e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T06:00:03", "message_id": "6fd63864-fe5d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T05:50:03", "message_id": "0a28b84e-fe5c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T05:40:03", "message_id": "a47fdc44-fe5a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T05:30:03", "message_id": "3ec78f38-fe59-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T05:20:03", "message_id": "d91b8a78-fe57-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T05:10:03", "message_id": "7372d132-fe56-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T05:00:03", "message_id": "0dbece14-fe55-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T04:50:02", "message_id": "a8109788-fe53-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T04:40:02", "message_id": "426a2486-fe52-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T04:30:02", "message_id": "dcbeaaae-fe50-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T04:20:02", "message_id": "7706eab0-fe4f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T04:10:02", "message_id": "114df336-fe4e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T04:00:02", "message_id": "abaa012e-fe4c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T03:50:02", "message_id": "45f92540-fe4b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T03:40:02", "message_id": "e04deace-fe49-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T03:30:02", "message_id": "7a984914-fe48-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T03:20:02", "message_id": "14e5749e-fe47-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T03:10:02", "message_id": "af41e3bc-fe45-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T03:00:01", "message_id": "498d537c-fe44-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T02:50:01", "message_id": "e3dc579a-fe42-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T02:40:01", "message_id": "7e2b31b0-fe41-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T02:30:01", "message_id": "1889c7d2-fe40-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T02:20:01", "message_id": "b2de820c-fe3e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T02:10:01", "message_id": "4d277fbe-fe3d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T02:00:01", "message_id": "e77e97b6-fe3b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T01:50:01", "message_id": "81d1f68e-fe3a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T01:40:01", "message_id": "1c2fc35c-fe39-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T01:30:01", "message_id": "b67fb70c-fe37-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T01:20:01", "message_id": "50dace38-fe36-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T01:10:01", "message_id": "eb21c61a-fe34-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T01:00:01", "message_id": "857aaad0-fe33-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T00:50:00", "message_id": "1fc23d08-fe32-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T00:40:00", "message_id": "ba1a6440-fe30-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T00:30:00", "message_id": "54660cb8-fe2f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T00:20:00", "message_id": "eeb583f4-fe2d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T00:10:00", "message_id": "8909764c-fe2c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T00:00:00", "message_id": "235bc896-fe2b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T23:50:00", "message_id": "bdae951a-fe29-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T23:40:00", "message_id": "58035b7a-fe28-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T23:30:00", "message_id": "f252431e-fe26-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T23:20:00", "message_id": "8caf640c-fe25-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T23:10:00", "message_id": "273b6158-fe24-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T23:00:00", "message_id": "c18ebb6c-fe22-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T22:49:59", "message_id": "5b97b2f6-fe21-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T22:39:59", "message_id": "f5e35fa6-fe1f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T22:29:59", "message_id": "903d333a-fe1e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T22:19:59", "message_id": "2a91e6ee-fe1d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T22:09:59", "message_id": "c4df9518-fe1b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T21:59:59", "message_id": "5f2f720c-fe1a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T21:49:59", "message_id": "f97fd768-fe18-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T21:39:59", "message_id": "93cce916-fe17-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T21:29:59", "message_id": "2e162296-fe16-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T21:19:58", "message_id": "c86deda8-fe14-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T21:09:58", "message_id": "62bf2f40-fe13-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T20:59:58", "message_id": "fd135460-fe11-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T20:49:58", "message_id": "97596534-fe10-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T20:39:58", "message_id": "31aac44a-fe0f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T20:29:58", "message_id": "cbfa08d2-fe0d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T20:19:58", "message_id": "6654ff2e-fe0c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T20:09:58", "message_id": "009f4b22-fe0b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T19:59:58", "message_id": "9af4ba6a-fe09-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T19:49:58", "message_id": "3547271c-fe08-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T19:39:58", "message_id": "cfa3ffc6-fe06-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T19:29:58", "message_id": "69f108dc-fe05-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T19:19:57", "message_id": "0441f5a6-fe04-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T19:09:57", "message_id": "9e98c46a-fe02-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T18:59:57", "message_id": "38e7025e-fe01-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T18:49:57", "message_id": "d335e6ce-fdff-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T18:39:57", "message_id": "6d8ed534-fdfe-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T18:29:57", "message_id": "07e1c68e-fdfd-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T18:19:57", "message_id": "a236f94a-fdfb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T18:09:57", "message_id": "3c970ad6-fdfa-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T17:59:57", "message_id": "d6dc0f08-fdf8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T17:49:57", "message_id": "71320ac8-fdf7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T17:39:57", "message_id": "0b8337a2-fdf6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T17:29:57", "message_id": "a5d8f032-fdf4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T17:19:56", "message_id": "40288ad2-fdf3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T17:09:56", "message_id": "da7c8c98-fdf1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T16:59:56", "message_id": "74cdf4f0-fdf0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T16:49:56", "message_id": "0f1e711c-fdef-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T16:39:56", "message_id": "a979edc4-fded-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T16:29:56", "message_id": "43f4b0c0-fdec-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T16:19:56", "message_id": "de25b416-fdea-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T16:09:56", "message_id": "78824ab2-fde9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T15:59:56", "message_id": "12d221e8-fde8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T15:49:56", "message_id": "ad29f290-fde6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T15:39:56", "message_id": "477dfbcc-fde5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T15:29:56", "message_id": "e1cf4d72-fde3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T15:19:56", "message_id": "7c50be28-fde2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T15:09:56", "message_id": "166a5296-fde1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T14:59:55", "message_id": "b0b9d472-fddf-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T14:49:55", "message_id": "4b17d976-fdde-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T14:39:55", "message_id": "e561ee88-fddc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T14:29:55", "message_id": "7fb66ede-fddb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T14:19:55", "message_id": "1a074b18-fdda-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T14:09:55", "message_id": "b45d9c78-fdd8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T13:59:55", "message_id": "4ea985a0-fdd7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T13:49:55", "message_id": "e8fe6af0-fdd5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T13:39:55", "message_id": "834ac47a-fdd4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T13:29:55", "message_id": "1d98d938-fdd3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T13:19:55", "message_id": "b7ea4ed8-fdd1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T13:09:54", "message_id": "523f9fee-fdd0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T12:59:54", "message_id": "ec92b204-fdce-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T12:49:54", "message_id": "86e39fc8-fdcd-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T12:39:54", "message_id": "213220d8-fdcc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T12:29:54", "message_id": "bb827a18-fdca-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T12:19:54", "message_id": "55d65b5e-fdc9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T12:09:54", "message_id": "f020f7ca-fdc7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T11:59:54", "message_id": "8a770cb2-fdc6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T11:49:54", "message_id": "24cc4892-fdc5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T11:39:54", "message_id": "bf211f0a-fdc3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T11:29:54", "message_id": "5970f5f0-fdc2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T11:19:53", "message_id": "f3c6b3a8-fdc0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T11:09:53", "message_id": "8e17bf3a-fdbf-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T10:59:53", "message_id": "286b4608-fdbe-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T10:49:54", "message_id": "c2e6e2f2-fdbc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T10:39:53", "message_id": "5d0d4a9e-fdbb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T10:29:53", "message_id": "f769a652-fdb9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T10:19:53", "message_id": "91b77f92-fdb8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T10:09:53", "message_id": "2c184230-fdb7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T09:59:53", "message_id": "c66adeda-fdb5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T09:49:53", "message_id": "60bee974-fdb4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T09:39:53", "message_id": "fb101090-fdb2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T09:29:53", "message_id": "9564bdbe-fdb1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T09:19:53", "message_id": "2fb36a3e-fdb0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T09:09:52", "message_id": "ca007c14-fdae-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T08:59:52", "message_id": "6457ffe6-fdad-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T08:49:52", "message_id": "feb8192e-fdab-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T08:39:52", "message_id": "98fd0f00-fdaa-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T08:29:52", "message_id": "334e1b1e-fda9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T08:19:52", "message_id": "cd9cfe9e-fda7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T08:09:52", "message_id": "6808c618-fda6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T07:59:52", "message_id": "024438c2-fda5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T07:49:52", "message_id": "9c927ca6-fda3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T07:39:52", "message_id": "36eb2700-fda2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T07:29:52", "message_id": "d139117a-fda0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T07:19:52", "message_id": "6b8d10c0-fd9f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T07:09:52", "message_id": "060543f4-fd9e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T06:59:51", "message_id": "a029f620-fd9c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T06:49:51", "message_id": "3a8060e4-fd9b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T06:39:51", "message_id": "d4c7c360-fd99-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T06:29:51", "message_id": "6f1c4bea-fd98-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T06:19:51", "message_id": "0967dac2-fd97-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T06:09:51", "message_id": "a3bd3ede-fd95-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T05:59:51", "message_id": "3e108f1a-fd94-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T05:49:51", "message_id": "d8629dbc-fd92-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T05:39:51", "message_id": "72b39490-fd91-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T05:29:51", "message_id": "0d107f46-fd90-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T05:19:50", "message_id": "a75f96f6-fd8e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T05:09:50", "message_id": "41a9b7a2-fd8d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T04:59:50", "message_id": "dc09d00e-fd8b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T04:49:50", "message_id": "76676262-fd8a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T04:39:50", "message_id": "10c743d8-fd89-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T04:29:50", "message_id": "ab19c804-fd87-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T04:19:50", "message_id": "455222ba-fd86-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T04:09:50", "message_id": "dfbe89b2-fd84-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T03:59:50", "message_id": "79d543f8-fd83-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T03:49:50", "message_id": "1445f948-fd82-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T03:39:50", "message_id": "ae9ed566-fd80-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T03:29:50", "message_id": "48fb3a48-fd7f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T03:19:50", "message_id": "e3595900-fd7d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T03:09:50", "message_id": "7da5400c-fd7c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T02:59:49", "message_id": "17dbfcb2-fd7b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T02:49:49", "message_id": "b21dc820-fd79-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T02:39:49", "message_id": "4caf9960-fd78-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T02:29:49", "message_id": "e6f1236a-fd76-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T02:19:49", "message_id": "814b7606-fd75-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T02:09:49", "message_id": "1b965bc4-fd74-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T01:59:49", "message_id": "b5d56b5a-fd72-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T01:49:49", "message_id": "502bd3bc-fd71-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T01:39:49", "message_id": "ea8784f8-fd6f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T01:29:49", "message_id": "850557d2-fd6e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T01:19:49", "message_id": "1f65f13a-fd6d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T01:09:49", "message_id": "b9a3b2de-fd6b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T00:59:48", "message_id": "53db4300-fd6a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T00:49:48", "message_id": "ee1c36c4-fd68-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T00:39:48", "message_id": "8883461e-fd67-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T00:29:48", "message_id": "22dc28b8-fd66-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T00:19:48", "message_id": "bd37a6a0-fd64-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T00:09:48", "message_id": "57a85948-fd63-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-04T23:59:48", "message_id": "f1ff26a4-fd61-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-04T23:49:48", "message_id": "8c39b178-fd60-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-04T23:39:06", "message_id": "0d67d48e-fd5f-11e2-b8cf-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-04T23:29:06", "message_id": "a7d6b5dc-fd5d-11e2-b8cf-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 33836584.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}], "http://localhost:8777/v2/meters/storage.objects?q.field=resource_id&q.value=4cb54495d7784d3dbd61db9d7adf955f": [{"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-12T04:01:18", "message_id": "d7697392-0303-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-12T03:51:18", "message_id": "71b906c6-0302-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-12T03:41:18", "message_id": "0c07154e-0301-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-12T03:31:18", "message_id": "a66ab46c-02ff-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-12T03:21:18", "message_id": "40b6064a-02fe-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-12T03:11:18", "message_id": "db0c539a-02fc-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-12T03:01:17", "message_id": "7551c0fe-02fb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-12T02:51:17", "message_id": "0fae0ac4-02fa-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-12T02:41:17", "message_id": "a9e9e3a8-02f8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-12T02:31:17", "message_id": "4446cdd2-02f7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-12T02:21:17", "message_id": "de91caa6-02f5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-12T02:11:17", "message_id": "78e4c3f8-02f4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-12T02:01:17", "message_id": "133d9a30-02f3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-12T01:51:17", "message_id": "ad934ef6-02f1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-12T01:41:17", "message_id": "47dee1d4-02f0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-12T01:31:17", "message_id": "e23285ee-02ee-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-12T01:21:17", "message_id": "7c7cee52-02ed-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-12T01:11:16", "message_id": "16d40104-02ec-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-12T01:01:16", "message_id": "b1114ef4-02ea-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-12T00:51:16", "message_id": "4b77c588-02e9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-12T00:41:16", "message_id": "e5bdb10e-02e7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-12T00:31:16", "message_id": "800ccb20-02e6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-12T00:21:16", "message_id": "1a8ad414-02e5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-12T00:11:16", "message_id": "b4adbab8-02e3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-12T00:01:16", "message_id": "4f00f55a-02e2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T23:51:16", "message_id": "e9542cf0-02e0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T23:41:16", "message_id": "83ae36e4-02df-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T23:31:16", "message_id": "1e0384c6-02de-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T23:21:15", "message_id": "b84a618c-02dc-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T23:11:15", "message_id": "52aaf7b6-02db-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T23:01:16", "message_id": "ed34541e-02d9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T22:51:15", "message_id": "874bcc00-02d8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T22:41:15", "message_id": "21975a38-02d7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T22:31:15", "message_id": "bbea67e4-02d5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T22:21:15", "message_id": "56362420-02d4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T22:11:15", "message_id": "f08653a8-02d2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T22:01:15", "message_id": "8add2294-02d1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T21:51:15", "message_id": "253563a8-02d0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T21:41:15", "message_id": "bf8673e0-02ce-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T21:31:14", "message_id": "59d27860-02cd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T21:21:14", "message_id": "f428913a-02cb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T21:11:14", "message_id": "8e79b46e-02ca-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T21:01:14", "message_id": "28c941bc-02c9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T20:51:14", "message_id": "c31e8544-02c7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T20:41:14", "message_id": "5d695946-02c6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T20:31:14", "message_id": "f7c2af80-02c4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T20:21:14", "message_id": "9213d016-02c3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T20:11:14", "message_id": "2c70ba7c-02c2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T20:01:14", "message_id": "c6ba57a2-02c0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T19:51:14", "message_id": "611009de-02bf-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T19:41:14", "message_id": "fb5e1c12-02bd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T19:31:13", "message_id": "95b3aa36-02bc-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T19:21:13", "message_id": "3001db5a-02bb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T19:11:13", "message_id": "ca4f6760-02b9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T19:01:13", "message_id": "649a4170-02b8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T18:51:13", "message_id": "fee7d474-02b6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T18:41:13", "message_id": "99401ba0-02b5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T18:31:13", "message_id": "338d08f0-02b4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T18:21:13", "message_id": "cddda5f6-02b2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T18:11:13", "message_id": "682f4490-02b1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T18:01:13", "message_id": "027e658c-02b0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T17:51:12", "message_id": "9cd39ab4-02ae-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T17:41:12", "message_id": "3721b990-02ad-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T17:31:12", "message_id": "d1797606-02ab-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T17:21:12", "message_id": "6bc6f974-02aa-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T17:11:12", "message_id": "0614a7a8-02a9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T17:01:12", "message_id": "a074c44c-02a7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T16:51:12", "message_id": "3ac51558-02a6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T16:41:12", "message_id": "d52523ec-02a4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T16:31:12", "message_id": "6f6d4ff8-02a3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T16:21:12", "message_id": "09b5e25c-02a2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T16:11:12", "message_id": "a40b870a-02a0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T16:01:12", "message_id": "3e678ab2-029f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T15:51:12", "message_id": "d8b633ea-029d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T15:41:12", "message_id": "7314c458-029c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T15:31:11", "message_id": "0d6f5bfa-029b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T15:21:11", "message_id": "a7ce97da-0299-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T15:11:11", "message_id": "421bdc32-0298-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T15:01:11", "message_id": "dc6a6558-0296-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T14:51:11", "message_id": "76b52ee2-0295-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T14:41:11", "message_id": "110757a6-0294-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T14:31:11", "message_id": "ab569f62-0292-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T14:21:11", "message_id": "45a91b3c-0291-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T14:11:11", "message_id": "dff7e080-028f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T14:01:11", "message_id": "7a526648-028e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T13:51:11", "message_id": "14a6d6f4-028d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T13:41:11", "message_id": "aef974c0-028b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T13:31:10", "message_id": "494a858e-028a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T13:21:10", "message_id": "e396764a-0288-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T13:11:10", "message_id": "7def3c6a-0287-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T13:01:10", "message_id": "18471cda-0286-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T12:51:10", "message_id": "b29168a6-0284-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T12:41:10", "message_id": "4ce6d758-0283-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T12:31:10", "message_id": "e733abe4-0281-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T12:21:10", "message_id": "817fcfae-0280-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T12:11:10", "message_id": "1bd27ffe-027f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T12:01:10", "message_id": "b6205358-027d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T11:51:10", "message_id": "5079280a-027c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T11:41:09", "message_id": "eabebf62-027a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T11:31:09", "message_id": "851375be-0279-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T11:21:09", "message_id": "1f641940-0278-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T11:11:09", "message_id": "b9b590fc-0276-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T11:01:09", "message_id": "5405d2f4-0275-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T10:51:09", "message_id": "ee54ee8c-0273-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T10:41:09", "message_id": "88ab0392-0272-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T10:31:09", "message_id": "230095e4-0271-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T10:21:09", "message_id": "bd488834-026f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T10:11:09", "message_id": "57ab1a88-026e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T10:01:09", "message_id": "f1f7dba0-026c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T09:51:08", "message_id": "8c4790b2-026b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T09:41:08", "message_id": "2696123a-026a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T09:31:08", "message_id": "c0edc00a-0268-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T09:21:08", "message_id": "5b3d49e8-0267-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T09:11:08", "message_id": "f5955db6-0265-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T09:01:08", "message_id": "8fe5abfc-0264-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T08:51:08", "message_id": "2a42e9c8-0263-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T08:41:08", "message_id": "c4962870-0261-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T08:31:08", "message_id": "5eebb586-0260-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T08:21:08", "message_id": "f930025c-025e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T08:11:08", "message_id": "93846d04-025d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T08:01:08", "message_id": "2ddaa500-025c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T07:51:07", "message_id": "c824ef78-025a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T07:41:07", "message_id": "62805578-0259-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T07:31:07", "message_id": "fccbcda8-0257-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T07:21:07", "message_id": "9720d2e2-0256-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T07:11:07", "message_id": "31641974-0255-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T07:01:07", "message_id": "cbc7d58e-0253-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T06:51:07", "message_id": "66139882-0252-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T06:41:07", "message_id": "0063b39c-0251-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T06:31:07", "message_id": "9ab38974-024f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T06:21:07", "message_id": "351455a4-024e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T06:11:07", "message_id": "cf5cdee4-024c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T06:01:07", "message_id": "69c6ddb0-024b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T05:51:06", "message_id": "040c22ba-024a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T05:41:06", "message_id": "9e5a2a80-0248-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T05:31:06", "message_id": "38a3a884-0247-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T05:21:06", "message_id": "d2f6524e-0245-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T05:11:06", "message_id": "6d3e601e-0244-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T05:01:06", "message_id": "0795eca6-0243-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T04:51:06", "message_id": "a1ee5ad8-0241-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T04:41:06", "message_id": "3c3b9ce2-0240-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T04:31:06", "message_id": "d6903b7e-023e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T04:21:06", "message_id": "70f8e4b0-023d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T04:11:06", "message_id": "0b2ff1e2-023c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T04:01:05", "message_id": "a5874bb6-023a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T03:51:05", "message_id": "3fda72f8-0239-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T03:41:05", "message_id": "da42b866-0237-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T03:31:05", "message_id": "7476fd7c-0236-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T03:21:05", "message_id": "0ec903cc-0235-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T03:11:05", "message_id": "a9173efa-0233-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T03:01:05", "message_id": "43670b22-0232-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T02:51:05", "message_id": "ddb44f8e-0230-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T02:41:05", "message_id": "77f687f8-022f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T02:31:05", "message_id": "1255075e-022e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T02:21:04", "message_id": "aca3a70e-022c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T02:11:04", "message_id": "46f51b96-022b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T02:01:04", "message_id": "e1511994-0229-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T01:51:04", "message_id": "7b9a330c-0228-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T01:41:04", "message_id": "15fdf70a-0227-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T01:31:04", "message_id": "b04b91ca-0225-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T01:21:04", "message_id": "4a8482da-0224-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T01:11:04", "message_id": "e4d70bf2-0222-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T01:01:04", "message_id": "7f32cd00-0221-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T00:51:04", "message_id": "197ba0b4-0220-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T00:41:04", "message_id": "b3cd69c4-021e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T00:31:03", "message_id": "4e1cc03a-021d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T00:21:03", "message_id": "e86db894-021b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T00:11:03", "message_id": "82bc32b0-021a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-11T00:01:03", "message_id": "1d11a95a-0219-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T23:51:03", "message_id": "b764c8f4-0217-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T23:41:03", "message_id": "51b32b00-0216-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T23:31:03", "message_id": "ec0af568-0214-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T23:21:03", "message_id": "86630d3c-0213-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T23:11:03", "message_id": "20a89cf6-0212-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T23:01:03", "message_id": "bb54da32-0210-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T22:51:03", "message_id": "5560b90e-020f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T22:41:08", "message_id": "f2bf98b6-020d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T22:31:03", "message_id": "8a0e34e0-020c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T22:21:02", "message_id": "24561254-020b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T22:11:02", "message_id": "bebbaf22-0209-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T22:01:02", "message_id": "58fbebd0-0208-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T21:51:02", "message_id": "f364fcf4-0206-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T21:41:02", "message_id": "8dacb5d8-0205-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T21:31:02", "message_id": "27f77882-0204-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T21:21:02", "message_id": "c26160a6-0202-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T21:11:02", "message_id": "5ca4693a-0201-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T21:01:02", "message_id": "f6e2c07a-01ff-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T20:51:02", "message_id": "9194bac6-01fe-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T20:41:02", "message_id": "2b990a66-01fd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T20:31:02", "message_id": "c61a87c4-01fb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T20:21:01", "message_id": "60360272-01fa-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T20:11:01", "message_id": "fa798f4a-01f8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T20:01:01", "message_id": "94d1956c-01f7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T19:51:01", "message_id": "2f25f5ba-01f6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T19:41:01", "message_id": "c977ab56-01f4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T19:31:01", "message_id": "63d129cc-01f3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T19:21:01", "message_id": "fe0864e4-01f1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T19:11:01", "message_id": "986a634a-01f0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T19:01:01", "message_id": "32bb4a56-01ef-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T18:51:00", "message_id": "ccfa376e-01ed-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T18:41:00", "message_id": "676094f8-01ec-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T18:31:00", "message_id": "01ac0e5e-01eb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T18:21:00", "message_id": "9bfaf332-01e9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T18:11:00", "message_id": "364617c0-01e8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T18:01:00", "message_id": "d0950676-01e6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T17:51:00", "message_id": "6af02324-01e5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T17:41:00", "message_id": "0545a82e-01e4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T17:31:00", "message_id": "9f90e490-01e2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T17:21:00", "message_id": "39e34bfc-01e1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T17:11:00", "message_id": "d42ed016-01df-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T17:00:59", "message_id": "6e809e26-01de-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T16:50:59", "message_id": "08d5cd68-01dd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T16:40:59", "message_id": "a3229844-01db-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T16:30:59", "message_id": "3d788716-01da-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T16:20:59", "message_id": "d7c19076-01d8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T16:10:59", "message_id": "721d62c8-01d7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T16:00:59", "message_id": "0c7358b6-01d6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T15:50:59", "message_id": "a6c35206-01d4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T15:40:59", "message_id": "41245f18-01d3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T15:30:59", "message_id": "db71819c-01d1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T15:20:59", "message_id": "75cadc04-01d0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T15:10:59", "message_id": "1019984c-01cf-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T15:00:58", "message_id": "aa646712-01cd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T14:50:58", "message_id": "44bbf282-01cc-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T14:40:58", "message_id": "df039efa-01ca-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T14:30:58", "message_id": "794bd538-01c9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T14:20:58", "message_id": "139c9930-01c8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T14:10:58", "message_id": "adf6ca98-01c6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T14:00:58", "message_id": "4848c24c-01c5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T13:50:58", "message_id": "e29c77be-01c3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T13:40:58", "message_id": "7ce60238-01c2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T13:30:58", "message_id": "17430d64-01c1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T13:20:58", "message_id": "b18aca6c-01bf-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T13:10:57", "message_id": "4bdca66e-01be-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T13:00:57", "message_id": "e62f6a1e-01bc-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T12:50:57", "message_id": "807d81f2-01bb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T12:40:57", "message_id": "1ad2b120-01ba-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T12:30:57", "message_id": "b52a95be-01b8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T12:20:57", "message_id": "4f8022ac-01b7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T12:10:57", "message_id": "e9d7adae-01b5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T12:00:57", "message_id": "841fbc00-01b4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T11:50:57", "message_id": "1e75feec-01b3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T11:40:57", "message_id": "b8d12022-01b1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T11:30:57", "message_id": "531c5d06-01b0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T11:20:57", "message_id": "ed6fa540-01ae-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T11:10:57", "message_id": "87c897f2-01ad-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T11:00:56", "message_id": "2203a5de-01ac-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T10:50:57", "message_id": "bc8861b4-01aa-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T10:40:56", "message_id": "56b482a6-01a9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T10:30:56", "message_id": "f1117838-01a7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T10:20:56", "message_id": "8b574ac8-01a6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T10:10:56", "message_id": "25c6fbd2-01a5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T10:00:56", "message_id": "c003509e-01a3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T09:50:56", "message_id": "5a486132-01a2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T09:40:56", "message_id": "f4a54e22-01a0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T09:30:56", "message_id": "8f10eb08-019f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T09:20:56", "message_id": "2945b200-019e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T09:10:55", "message_id": "c39e71c2-019c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T09:00:56", "message_id": "5e07fa46-019b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T08:50:55", "message_id": "f83f12cc-0199-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T08:40:55", "message_id": "929e8ea8-0198-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T08:30:55", "message_id": "2cd30b86-0197-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T08:20:55", "message_id": "c7321160-0195-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T08:10:55", "message_id": "6172b718-0194-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T08:00:55", "message_id": "fbc70cd0-0192-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T07:50:55", "message_id": "962a518a-0191-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T07:40:55", "message_id": "307f850e-0190-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T07:30:55", "message_id": "caca72f6-018e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T07:20:54", "message_id": "652084a0-018d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T07:10:54", "message_id": "ff723028-018b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T07:00:54", "message_id": "99bfedac-018a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T06:50:54", "message_id": "34166b12-0189-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T06:40:54", "message_id": "ce692832-0187-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T06:30:54", "message_id": "68bcbef0-0186-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T06:20:54", "message_id": "0311f29c-0185-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T06:10:54", "message_id": "9d576852-0183-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T06:00:54", "message_id": "379fd4aa-0182-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T05:50:54", "message_id": "d2015156-0180-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T05:40:54", "message_id": "6c4e7ce0-017f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T05:30:53", "message_id": "06951c02-017e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T05:20:53", "message_id": "a0ec4106-017c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T05:10:53", "message_id": "3b42286c-017b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T05:00:53", "message_id": "d59aef22-0179-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T04:50:53", "message_id": "6fe0223e-0178-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T04:40:53", "message_id": "0a2a71ac-0177-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T04:30:53", "message_id": "a47f4d9c-0175-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T04:20:53", "message_id": "3ecf4afc-0174-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T04:10:53", "message_id": "d9222568-0172-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T04:00:53", "message_id": "737d5fe4-0171-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T03:50:53", "message_id": "0dceed30-0170-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T03:40:53", "message_id": "a822d34e-016e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T03:30:52", "message_id": "4277fd7c-016d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T03:20:52", "message_id": "dcc411f6-016b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T03:10:52", "message_id": "7715e65a-016a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T03:00:52", "message_id": "116843e4-0169-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T02:50:52", "message_id": "abbc4726-0167-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T02:40:52", "message_id": "4605ef78-0166-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T02:30:52", "message_id": "e05729e0-0164-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T02:20:52", "message_id": "7abb0e72-0163-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T02:10:52", "message_id": "150cddea-0162-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T02:00:52", "message_id": "af573e06-0160-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T01:50:52", "message_id": "49cf734c-015f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T01:40:52", "message_id": "e4130e48-015d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T01:30:52", "message_id": "7e71c526-015c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T01:20:52", "message_id": "18c94718-015b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T01:10:51", "message_id": "b30b67f4-0159-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T01:00:51", "message_id": "4d6636fa-0158-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T00:50:51", "message_id": "e793c442-0156-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T00:40:51", "message_id": "81ead528-0155-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T00:30:51", "message_id": "1c3b4b78-0154-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T00:20:51", "message_id": "b67e7072-0152-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T00:10:51", "message_id": "50dbaf74-0151-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-10T00:00:51", "message_id": "eb294e8a-014f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T23:50:50", "message_id": "857ba408-014e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T23:40:50", "message_id": "1fc744b0-014d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T23:30:50", "message_id": "ba0e16e0-014b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T23:20:50", "message_id": "547127e2-014a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T23:10:50", "message_id": "eeba3d2c-0148-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T23:00:50", "message_id": "894ae442-0147-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T22:50:50", "message_id": "235f4ff2-0146-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T22:40:50", "message_id": "bda8e98a-0144-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T22:30:50", "message_id": "57fe3fd2-0143-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T22:20:50", "message_id": "f261d888-0141-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T22:10:49", "message_id": "8c9d97e0-0140-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T22:00:49", "message_id": "26fc666a-013f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T21:50:49", "message_id": "c150668c-013d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T21:40:49", "message_id": "5ba90c18-013c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T21:30:49", "message_id": "f600260e-013a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T21:20:49", "message_id": "90499774-0139-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T21:10:49", "message_id": "2aa5abca-0138-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T21:00:49", "message_id": "c4fcbff8-0136-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T20:50:49", "message_id": "5f49de58-0135-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T20:40:49", "message_id": "f9a056dc-0133-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T20:30:49", "message_id": "93e57544-0132-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T20:20:49", "message_id": "2e585d0a-0131-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T20:10:49", "message_id": "c8943d00-012f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T20:00:49", "message_id": "62e4c6f6-012e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T19:50:49", "message_id": "fd41f4dc-012c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T19:40:48", "message_id": "978372ac-012b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T19:30:48", "message_id": "31dbb08c-012a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T19:20:48", "message_id": "cc3d83b4-0128-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T19:10:48", "message_id": "668268ba-0127-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T19:00:48", "message_id": "00cd2ed4-0126-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T18:50:48", "message_id": "9b191112-0124-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T18:40:48", "message_id": "356e3640-0123-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T18:30:48", "message_id": "cfb7f47c-0121-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T18:20:48", "message_id": "6a0641de-0120-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T18:10:47", "message_id": "04567c2e-011f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T18:00:47", "message_id": "9e9eff88-011d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T17:50:47", "message_id": "38f92e84-011c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T17:40:47", "message_id": "d345907e-011a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T17:30:47", "message_id": "6d946c7e-0119-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T17:20:47", "message_id": "07edc0e2-0118-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T17:10:47", "message_id": "a23b65a2-0116-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T17:00:47", "message_id": "3c8e1a16-0115-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T16:50:47", "message_id": "d6d94ea8-0113-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T16:40:47", "message_id": "7129d59c-0112-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T16:30:47", "message_id": "0b8b0112-0111-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T16:20:46", "message_id": "a5d1742e-010f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T16:10:46", "message_id": "40294102-010e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T16:00:46", "message_id": "da781fbe-010c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T15:50:49", "message_id": "764e2c96-010b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T15:40:47", "message_id": "0f793354-010a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T15:30:46", "message_id": "a9925012-0108-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T15:20:46", "message_id": "43c9412e-0107-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T15:10:46", "message_id": "de30b352-0105-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T15:00:46", "message_id": "786f36fc-0104-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T14:50:46", "message_id": "12ca153e-0103-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T14:40:46", "message_id": "ad1598fe-0101-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T14:30:46", "message_id": "475fcfa8-0100-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T14:20:46", "message_id": "e1bdc5b6-00fe-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T14:10:46", "message_id": "7c4520ae-00fd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T14:00:45", "message_id": "164cf64c-00fc-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T13:50:45", "message_id": "b0acd092-00fa-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T13:40:45", "message_id": "4af64db0-00f9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T13:30:45", "message_id": "e54763ce-00f7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T13:20:46", "message_id": "7ffc940e-00f6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T13:10:45", "message_id": "19dca110-00f5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T13:00:45", "message_id": "b439b5c4-00f3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T12:50:45", "message_id": "4e81305a-00f2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T12:40:45", "message_id": "e8daab4c-00f0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T12:30:44", "message_id": "8330af22-00ef-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T12:20:44", "message_id": "1d7afa08-00ee-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T12:10:44", "message_id": "b7cc456e-00ec-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T12:00:44", "message_id": "521f5964-00eb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T11:50:44", "message_id": "ec788532-00e9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T11:40:44", "message_id": "86c1803c-00e8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T11:30:44", "message_id": "211a8fb8-00e7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T11:20:44", "message_id": "bb69d42c-00e5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T11:10:44", "message_id": "55c164c4-00e4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T11:00:44", "message_id": "f00900ca-00e2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T10:50:44", "message_id": "8a5ac8d6-00e1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T10:40:43", "message_id": "24aa53d6-00e0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T10:30:43", "message_id": "bf01a620-00de-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T10:20:43", "message_id": "594d5b9a-00dd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T10:10:43", "message_id": "f3a19582-00db-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T10:00:43", "message_id": "8e02e362-00da-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T09:50:43", "message_id": "2841f906-00d9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T09:40:43", "message_id": "c29c8f4a-00d7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T09:30:43", "message_id": "5cecaa82-00d6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T09:20:43", "message_id": "f73edcec-00d4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T09:10:43", "message_id": "9199042c-00d3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T09:00:43", "message_id": "2be5943e-00d2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T08:50:42", "message_id": "c62f5478-00d0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T08:40:42", "message_id": "6089de50-00cf-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T08:30:42", "message_id": "fade11b2-00cd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T08:20:42", "message_id": "952ed122-00cc-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T08:10:42", "message_id": "2f7990b6-00cb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T08:00:42", "message_id": "c9c95126-00c9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T07:50:42", "message_id": "641a6d0c-00c8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T07:40:42", "message_id": "fe9641c8-00c6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T07:30:42", "message_id": "98c747bc-00c5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T07:20:42", "message_id": "330ab9d2-00c4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T07:10:42", "message_id": "cd5d981c-00c2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T07:00:41", "message_id": "67b3276c-00c1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T06:50:41", "message_id": "01fe8c50-00c0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T06:40:41", "message_id": "9c52f2de-00be-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T06:30:41", "message_id": "36a5bd8c-00bd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T06:20:41", "message_id": "d0f1decc-00bb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T06:10:41", "message_id": "6b48526e-00ba-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T06:00:41", "message_id": "05a395f0-00b9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T05:50:41", "message_id": "9fef8076-00b7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T05:40:41", "message_id": "3a46dd92-00b6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T05:30:41", "message_id": "d4931494-00b4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T05:20:41", "message_id": "6ee465d6-00b3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T05:10:41", "message_id": "0937de6c-00b2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T05:00:40", "message_id": "a38cc1dc-00b0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T04:50:40", "message_id": "3df2744e-00af-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T04:40:40", "message_id": "d84a46fe-00ad-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T04:30:40", "message_id": "72977ddc-00ac-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T04:20:40", "message_id": "0cf7a048-00ab-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T04:10:40", "message_id": "a7513e6c-00a9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T04:00:40", "message_id": "41c69962-00a8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T03:50:41", "message_id": "dc4387a4-00a6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T03:40:40", "message_id": "765691b2-00a5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T03:30:40", "message_id": "10dc4b70-00a4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T03:20:40", "message_id": "ab0505ea-00a2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T03:10:40", "message_id": "4560858a-00a1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T03:00:40", "message_id": "dfb4852a-009f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T02:50:40", "message_id": "79f81a4a-009e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T02:40:40", "message_id": "1480fe94-009d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T02:30:40", "message_id": "ae9ee704-009b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T02:20:40", "message_id": "48f50e5c-009a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T02:10:39", "message_id": "e348d38c-0098-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T02:00:39", "message_id": "7d9b25f4-0097-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T01:50:39", "message_id": "17d8577e-0096-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T01:40:39", "message_id": "b2281c26-0094-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T01:30:39", "message_id": "4c7ad964-0093-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T01:20:39", "message_id": "e6d75282-0091-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T01:10:39", "message_id": "811bf5c0-0090-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T01:00:39", "message_id": "1b7a30ca-008f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T00:50:39", "message_id": "b5c0ecac-008d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T00:40:38", "message_id": "500b5c18-008c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T00:30:38", "message_id": "ea6ba92c-008a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T00:20:38", "message_id": "84c0d6fc-0089-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T00:10:38", "message_id": "1f0d5070-0088-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-09T00:00:38", "message_id": "b95e0bee-0086-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T23:50:38", "message_id": "53a90d54-0085-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T23:40:38", "message_id": "ee0a012a-0083-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T23:30:38", "message_id": "884ff480-0082-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T23:20:38", "message_id": "229a03a2-0081-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T23:10:38", "message_id": "bcf694b2-007f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T23:00:38", "message_id": "577eb8fe-007e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T22:50:37", "message_id": "f191232a-007c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T22:40:37", "message_id": "8be9bdbc-007b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T22:30:37", "message_id": "2629b938-007a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T22:20:37", "message_id": "c085ff2a-0078-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T22:10:37", "message_id": "5ad5af78-0077-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T22:00:37", "message_id": "f5270902-0075-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T21:50:37", "message_id": "8f82efcc-0074-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T21:40:37", "message_id": "29cc8ac2-0073-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T21:30:37", "message_id": "c421c03a-0071-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T21:20:37", "message_id": "5e82803a-0070-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T21:10:37", "message_id": "f8c6824c-006e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T21:00:36", "message_id": "930fd486-006d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T20:50:36", "message_id": "2d5d5c22-006c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T20:40:36", "message_id": "c7b046ec-006a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T20:30:36", "message_id": "6208de90-0069-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T20:20:36", "message_id": "fc4e09a0-0067-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T20:10:36", "message_id": "96ab0c5c-0066-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T20:00:36", "message_id": "30f67a3c-0065-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T19:50:36", "message_id": "cb4e6484-0063-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T19:40:36", "message_id": "6599553c-0062-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T19:30:36", "message_id": "ffeb982c-0060-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T19:20:36", "message_id": "9a37b4d0-005f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T19:10:35", "message_id": "348c89e0-005e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T19:00:35", "message_id": "cee050c8-005c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T18:50:35", "message_id": "69300922-005b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T18:40:35", "message_id": "037cb90a-005a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T18:30:35", "message_id": "9ddcf2aa-0058-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T18:20:35", "message_id": "381cf1fa-0057-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T18:10:35", "message_id": "d27a1c0c-0055-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T18:00:35", "message_id": "6ccbfe26-0054-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T17:50:35", "message_id": "071ebb14-0053-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T17:40:35", "message_id": "a1786fcc-0051-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T17:30:35", "message_id": "3bcc8b96-0050-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T17:20:35", "message_id": "d619f0c8-004e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T17:10:34", "message_id": "706a3a36-004d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T17:00:34", "message_id": "0ab8e7d8-004c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T16:50:34", "message_id": "a50bcb2c-004a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T16:40:34", "message_id": "3f66ed3e-0049-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T16:30:34", "message_id": "d9b8fa8c-0047-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T16:20:34", "message_id": "740da620-0046-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T16:10:34", "message_id": "0e59f1cc-0045-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T16:00:34", "message_id": "a8b558e4-0043-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T15:50:34", "message_id": "43043d72-0042-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T15:40:34", "message_id": "dd5142be-0040-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T15:30:34", "message_id": "77a66166-003f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T15:20:34", "message_id": "11fc4a0c-003e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T15:10:33", "message_id": "ac4b5604-003c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T15:00:33", "message_id": "46961fe8-003b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T14:50:33", "message_id": "e0ee85aa-0039-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T14:40:33", "message_id": "7b38960c-0038-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T14:30:33", "message_id": "1592f348-0037-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T14:20:33", "message_id": "afde6c54-0035-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T14:10:33", "message_id": "4a408b58-0034-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T14:00:33", "message_id": "e4c1d648-0032-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T13:50:33", "message_id": "7ed3ce96-0031-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T13:40:33", "message_id": "1931d41c-0030-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T13:30:33", "message_id": "b37ff708-002e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T13:20:33", "message_id": "4ddb50ba-002d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T13:10:32", "message_id": "e827cd1c-002b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T13:00:32", "message_id": "8275f18e-002a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T12:50:32", "message_id": "1cca2bbc-0029-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T12:40:32", "message_id": "b7102796-0027-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T12:30:32", "message_id": "516924b6-0026-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T12:20:32", "message_id": "ebb32c62-0024-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T12:10:32", "message_id": "85fd353a-0023-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T12:00:32", "message_id": "205a5a06-0022-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T11:50:32", "message_id": "baa6445a-0020-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T11:40:32", "message_id": "550d2bf0-001f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T11:30:32", "message_id": "ef62f33a-001d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T11:20:31", "message_id": "89a46278-001c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T11:10:32", "message_id": "241546a8-001b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T11:00:31", "message_id": "be54de9c-0019-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T10:50:31", "message_id": "58a6d1e6-0018-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T10:40:31", "message_id": "f3031daa-0016-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T10:30:31", "message_id": "8d708988-0015-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T10:20:31", "message_id": "27ba6222-0014-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T10:10:31", "message_id": "c2213cd4-0012-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T10:00:31", "message_id": "5c456ac6-0011-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T09:50:31", "message_id": "f694e194-000f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T09:40:31", "message_id": "90de0340-000e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T09:30:31", "message_id": "2b40b98e-000d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T09:20:30", "message_id": "c585327e-000b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T09:10:30", "message_id": "5fd3d152-000a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T09:00:30", "message_id": "fa2dc6ba-0008-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T08:50:30", "message_id": "947c7f60-0007-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T08:40:30", "message_id": "2ed5735c-0006-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T08:30:30", "message_id": "c92b3ad8-0004-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T08:20:30", "message_id": "6376f732-0003-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T08:10:30", "message_id": "fdd68d30-0001-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T08:00:30", "message_id": "981cc2e4-0000-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T07:50:30", "message_id": "326bd242-ffff-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T07:40:30", "message_id": "ccbc9dd8-fffd-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T07:30:30", "message_id": "670b866c-fffc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T07:20:29", "message_id": "01655708-fffb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T07:10:29", "message_id": "9bacc2bc-fff9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T07:00:29", "message_id": "35f7ea56-fff8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T06:50:29", "message_id": "d05adf38-fff6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T06:40:29", "message_id": "6aa2c17a-fff5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T06:30:29", "message_id": "04f035b6-fff4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T06:20:29", "message_id": "9f44064e-fff2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T06:10:29", "message_id": "399491ac-fff1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T06:00:29", "message_id": "d3eccb68-ffef-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T05:50:29", "message_id": "6e457270-ffee-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T05:40:29", "message_id": "089e628e-ffed-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T05:30:28", "message_id": "a2e71e64-ffeb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T05:20:28", "message_id": "3d2e7bc2-ffea-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T05:10:28", "message_id": "d783cbac-ffe8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T05:00:28", "message_id": "71d8c844-ffe7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T04:50:28", "message_id": "0c1c91da-ffe6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T04:40:28", "message_id": "a67e0044-ffe4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T04:30:28", "message_id": "40c1eaaa-ffe3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T04:20:28", "message_id": "db1bf052-ffe1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T04:10:28", "message_id": "756cccfa-ffe0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T04:00:28", "message_id": "0fb547d0-ffdf-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T03:50:28", "message_id": "aa0c59ec-ffdd-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T03:40:27", "message_id": "4459c180-ffdc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T03:30:27", "message_id": "deab0a52-ffda-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T03:20:27", "message_id": "78fa89f4-ffd9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T03:10:27", "message_id": "134f0a4a-ffd8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T03:00:27", "message_id": "ada17206-ffd6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T02:50:27", "message_id": "47ecae54-ffd5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T02:40:27", "message_id": "e23b3d42-ffd3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T02:30:27", "message_id": "7c95c8fa-ffd2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T02:20:27", "message_id": "170013de-ffd1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T02:10:27", "message_id": "b129e6bc-ffcf-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T02:00:26", "message_id": "4b85782c-ffce-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T01:50:26", "message_id": "e5cfd118-ffcc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T01:40:26", "message_id": "80217886-ffcb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T01:30:26", "message_id": "1a72980e-ffca-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T01:20:26", "message_id": "b4ca289c-ffc8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T01:10:26", "message_id": "4f20365e-ffc7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T01:00:26", "message_id": "e96db26a-ffc5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T00:50:26", "message_id": "83c3338c-ffc4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T00:40:26", "message_id": "1e176fd6-ffc3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T00:30:26", "message_id": "b8657dbe-ffc1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T00:20:26", "message_id": "5310c1a4-ffc0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T00:10:25", "message_id": "ed05aa6a-ffbe-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-08T00:00:26", "message_id": "87817c60-ffbd-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T23:50:25", "message_id": "21b1dee4-ffbc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T23:40:25", "message_id": "bc07be2a-ffba-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T23:30:25", "message_id": "56608864-ffb9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T23:20:25", "message_id": "f0cc30da-ffb7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T23:10:25", "message_id": "8b1d2eb6-ffb6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T23:00:25", "message_id": "25955e20-ffb5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T22:50:25", "message_id": "bf8feeca-ffb3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T22:40:25", "message_id": "59edcc96-ffb2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T22:30:25", "message_id": "f43def8a-ffb0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T22:20:24", "message_id": "8e7e40f6-ffaf-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T22:10:24", "message_id": "28e3a6ec-ffae-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T22:00:24", "message_id": "c329dcfa-ffac-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T21:50:24", "message_id": "5d6c4b92-ffab-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T21:40:24", "message_id": "f7c6410e-ffa9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T21:30:24", "message_id": "921eb008-ffa8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T21:20:24", "message_id": "2c66c3d2-ffa7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T21:10:24", "message_id": "c6aae272-ffa5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T21:00:24", "message_id": "6105447c-ffa4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T20:50:24", "message_id": "fb557364-ffa2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T20:40:23", "message_id": "95a16ec0-ffa1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T20:30:23", "message_id": "2ff76670-ffa0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T20:20:23", "message_id": "ca49d020-ff9e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T20:10:23", "message_id": "648ef9dc-ff9d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T20:00:23", "message_id": "fee83d6a-ff9b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T19:50:23", "message_id": "9931ddba-ff9a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T19:40:23", "message_id": "338b6414-ff99-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T19:30:23", "message_id": "cddca11a-ff97-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T19:20:23", "message_id": "6832659e-ff96-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T19:10:23", "message_id": "02814784-ff95-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T19:00:23", "message_id": "9cca512a-ff93-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T18:50:22", "message_id": "3724100a-ff92-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T18:40:22", "message_id": "d176175e-ff90-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T18:30:22", "message_id": "6bb6847c-ff8f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T18:20:22", "message_id": "060620ca-ff8e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T18:10:22", "message_id": "a05b5b24-ff8c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T18:00:22", "message_id": "3aaf7edc-ff8b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T17:50:22", "message_id": "d4ff863c-ff89-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T17:40:22", "message_id": "6f572458-ff88-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T17:30:22", "message_id": "09a68302-ff87-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T17:20:22", "message_id": "a3f2af8c-ff85-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T17:10:22", "message_id": "3e4b5d1a-ff84-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T17:00:21", "message_id": "d8904eaa-ff82-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T16:50:21", "message_id": "72d8ed16-ff81-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T16:40:21", "message_id": "0d2f286e-ff80-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T16:30:21", "message_id": "a78c008c-ff7e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T16:20:21", "message_id": "41cf4c00-ff7d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T16:10:21", "message_id": "dc29aae0-ff7b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T16:00:21", "message_id": "767b1aae-ff7a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T15:50:21", "message_id": "10cf33c6-ff79-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T15:40:21", "message_id": "ab1a845a-ff77-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T15:30:21", "message_id": "4566d614-ff76-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T15:20:20", "message_id": "dfbab00c-ff74-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T15:10:20", "message_id": "7a07e0dc-ff73-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T15:00:20", "message_id": "1458015a-ff72-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T14:50:20", "message_id": "aeab23b0-ff70-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T14:40:20", "message_id": "48f9d418-ff6f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T14:30:20", "message_id": "e3600830-ff6d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T14:20:20", "message_id": "7dafc68e-ff6c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T14:10:20", "message_id": "17fed81c-ff6b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T14:00:20", "message_id": "b24f423c-ff69-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T13:50:20", "message_id": "4c9cb880-ff68-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T13:40:20", "message_id": "e704ae7a-ff66-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T13:30:20", "message_id": "814a1e04-ff65-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T13:20:19", "message_id": "1b9c0712-ff64-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T13:10:19", "message_id": "b5f2d0ea-ff62-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T13:00:19", "message_id": "504e0436-ff61-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T12:50:19", "message_id": "eaa3c5b8-ff5f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T12:40:19", "message_id": "84ee730e-ff5e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T12:30:19", "message_id": "1f44a920-ff5d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T12:20:19", "message_id": "b999f7b6-ff5b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T12:10:19", "message_id": "53df8374-ff5a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T12:00:19", "message_id": "ee2dafa2-ff58-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T11:50:19", "message_id": "8886342c-ff57-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T11:40:19", "message_id": "22daf690-ff56-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T11:30:19", "message_id": "bd2b3054-ff54-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T11:20:18", "message_id": "577b12d4-ff53-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T11:10:19", "message_id": "f1e8a644-ff51-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T11:00:18", "message_id": "8c2f58da-ff50-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T10:50:18", "message_id": "2682dfee-ff4f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T10:40:18", "message_id": "c0dea71e-ff4d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T10:30:18", "message_id": "5b275af2-ff4c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T10:20:18", "message_id": "f57a57f0-ff4a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T10:10:18", "message_id": "8fd84732-ff49-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T10:00:18", "message_id": "2a33ef72-ff48-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T09:50:18", "message_id": "c4729d9c-ff46-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T09:40:18", "message_id": "5ecccf7c-ff45-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T09:30:18", "message_id": "f90c2eae-ff43-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T09:20:18", "message_id": "936547da-ff42-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T09:10:17", "message_id": "2db644f8-ff41-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T09:00:17", "message_id": "c7fa7a54-ff3f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T08:50:17", "message_id": "624d7950-ff3e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T08:40:17", "message_id": "fca5245a-ff3c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T08:30:17", "message_id": "96f2ef12-ff3b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T08:20:17", "message_id": "31361d1c-ff3a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T08:10:17", "message_id": "cb86f8de-ff38-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T08:00:17", "message_id": "65d61fde-ff37-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T07:50:17", "message_id": "00271734-ff36-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T07:40:16", "message_id": "9a744fe8-ff34-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T07:30:16", "message_id": "34d029e2-ff33-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T07:20:16", "message_id": "cf17789a-ff31-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T07:10:16", "message_id": "6966cbaa-ff30-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T07:00:16", "message_id": "03c10488-ff2f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T06:50:16", "message_id": "9e13443a-ff2d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T06:40:16", "message_id": "38635662-ff2c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T06:30:16", "message_id": "d2aa3242-ff2a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T06:20:16", "message_id": "6d0c8440-ff29-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T06:10:16", "message_id": "07699ac0-ff28-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T06:00:16", "message_id": "a1a9b4aa-ff26-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T05:50:16", "message_id": "3c05dfc6-ff25-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T05:40:15", "message_id": "d647f670-ff23-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T05:30:16", "message_id": "70c128b8-ff22-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T05:20:15", "message_id": "0af51a18-ff21-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T05:10:15", "message_id": "a53a098c-ff1f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T05:00:15", "message_id": "3fa0e0ce-ff1e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T04:50:15", "message_id": "d9e468ce-ff1c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T04:40:15", "message_id": "743d721e-ff1b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T04:30:15", "message_id": "0e9bf01c-ff1a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T04:20:15", "message_id": "a8dcdfee-ff18-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T04:10:15", "message_id": "4338f49e-ff17-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T04:00:15", "message_id": "dd862974-ff15-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T03:50:15", "message_id": "77ef3b10-ff14-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T03:40:14", "message_id": "12300ee0-ff13-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T03:30:14", "message_id": "ac777c2e-ff11-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T03:20:14", "message_id": "46ce4002-ff10-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T03:10:14", "message_id": "e132cd5e-ff0e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T03:00:14", "message_id": "7b70a230-ff0d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T02:50:14", "message_id": "15de540e-ff0c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T02:40:14", "message_id": "b02887ca-ff0a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T02:30:14", "message_id": "4a7a87da-ff09-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T02:20:14", "message_id": "e4c2bb2a-ff07-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T02:10:14", "message_id": "7f136fa0-ff06-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T02:00:14", "message_id": "1960c6b8-ff05-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T01:50:14", "message_id": "b3c10c2e-ff03-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T01:40:13", "message_id": "4e05a13e-ff02-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T01:30:13", "message_id": "e85df620-ff00-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T01:20:13", "message_id": "82afcd9a-feff-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T01:10:13", "message_id": "1d089f72-fefe-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T01:00:13", "message_id": "b74b9398-fefc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T00:50:13", "message_id": "51a81b52-fefb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T00:40:13", "message_id": "ebfd6998-fef9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T00:30:13", "message_id": "863f622e-fef8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T00:20:13", "message_id": "20914894-fef7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T00:10:13", "message_id": "bae4242c-fef5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-07T00:00:12", "message_id": "552c0cf4-fef4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T23:50:12", "message_id": "ef8f37e6-fef2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T23:40:12", "message_id": "89df8b4a-fef1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T23:30:12", "message_id": "24358b42-fef0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T23:20:12", "message_id": "be970cf8-feee-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T23:10:12", "message_id": "58cf09bc-feed-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T23:00:12", "message_id": "f36cbc64-feeb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T22:50:12", "message_id": "8d78c764-feea-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T22:40:12", "message_id": "27cdc92e-fee9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T22:30:12", "message_id": "c22010ec-fee7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T22:20:12", "message_id": "5c68ca56-fee6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T22:10:12", "message_id": "f6d07d7a-fee4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T22:00:12", "message_id": "9139dc0a-fee3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T21:50:11", "message_id": "2b695c30-fee2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T21:40:12", "message_id": "c5e0e32a-fee0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T21:30:11", "message_id": "6017be70-fedf-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T21:20:11", "message_id": "fa6a9882-fedd-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T21:10:11", "message_id": "94b33fcc-fedc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T21:00:11", "message_id": "2efa131e-fedb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T20:50:11", "message_id": "c956c954-fed9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T20:40:11", "message_id": "63b56214-fed8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T20:30:11", "message_id": "fe0139e4-fed6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T20:20:11", "message_id": "987f0674-fed5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T20:10:11", "message_id": "329e174c-fed4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T20:00:11", "message_id": "cd073306-fed2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T19:50:10", "message_id": "674f4d38-fed1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T19:40:10", "message_id": "01a6b346-fed0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T19:30:10", "message_id": "9bf79b2e-fece-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T19:20:10", "message_id": "36446d1c-fecd-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T19:10:10", "message_id": "d094779c-fecb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T19:00:10", "message_id": "6ad44c1c-feca-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T18:50:10", "message_id": "0550cf60-fec9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T18:40:10", "message_id": "9f881248-fec7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T18:30:10", "message_id": "39d2077a-fec6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T18:20:10", "message_id": "d4282752-fec4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T18:10:09", "message_id": "6e749ac2-fec3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T18:00:09", "message_id": "08b939fa-fec2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T17:50:09", "message_id": "a3117a32-fec0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T17:40:09", "message_id": "3d693b26-febf-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T17:30:09", "message_id": "d7b4c1b6-febd-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T17:20:09", "message_id": "720c5938-febc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T17:10:09", "message_id": "0c52576a-febb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T17:00:09", "message_id": "a6a4b616-feb9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T16:50:09", "message_id": "40f845c2-feb8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T16:40:09", "message_id": "db41321c-feb6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T16:30:08", "message_id": "75987e58-feb5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T16:20:08", "message_id": "0fe533a4-feb4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T16:10:08", "message_id": "aa426f36-feb2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T16:00:08", "message_id": "4494d72e-feb1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T15:50:08", "message_id": "deddbf82-feaf-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T15:40:08", "message_id": "793bc8e6-feae-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T15:30:08", "message_id": "13811b4c-fead-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T15:20:08", "message_id": "add69408-feab-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T15:10:08", "message_id": "48245a92-feaa-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T15:00:08", "message_id": "e27578c6-fea8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T14:50:08", "message_id": "7ccb229c-fea7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T14:40:08", "message_id": "172992d0-fea6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T14:30:08", "message_id": "b1831ea2-fea4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T14:20:07", "message_id": "4bd1b2cc-fea3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T14:10:07", "message_id": "e61e9db0-fea1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T14:00:07", "message_id": "808c5826-fea0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T13:50:07", "message_id": "1ad009de-fe9f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T13:40:07", "message_id": "b51297ca-fe9d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T13:30:07", "message_id": "4f659eaa-fe9c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T13:20:07", "message_id": "e9b5b0be-fe9a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T13:10:07", "message_id": "8404475e-fe99-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T13:00:07", "message_id": "1e5fbe3e-fe98-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T12:50:07", "message_id": "b8b46d7e-fe96-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T12:40:07", "message_id": "53192546-fe95-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T12:30:07", "message_id": "ed5869b6-fe93-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T12:20:06", "message_id": "87a3b7f2-fe92-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T12:10:06", "message_id": "22018772-fe91-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T12:00:06", "message_id": "bc52a2b8-fe8f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T11:50:06", "message_id": "56a11ef0-fe8e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T11:40:06", "message_id": "f0ff249e-fe8c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T11:30:07", "message_id": "8bd0a922-fe8b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T11:20:06", "message_id": "25976732-fe8a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T11:10:06", "message_id": "bfe36b12-fe88-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T11:00:06", "message_id": "5a3c5ec8-fe87-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T10:50:06", "message_id": "f4906e4e-fe85-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T10:40:06", "message_id": "8ee20b4e-fe84-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T10:30:05", "message_id": "292fc13e-fe83-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T10:20:05", "message_id": "c385c99c-fe81-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T10:10:05", "message_id": "5dcc30d8-fe80-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T10:00:05", "message_id": "f8236f72-fe7e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T09:50:05", "message_id": "926fb4a2-fe7d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T09:40:05", "message_id": "2cc64478-fe7c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T09:30:05", "message_id": "c71b4c00-fe7a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T09:20:05", "message_id": "6164c284-fe79-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T09:10:05", "message_id": "fbbd7b52-fe77-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T09:00:05", "message_id": "960bf33e-fe76-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T08:50:05", "message_id": "305d25e0-fe75-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T08:40:04", "message_id": "caafe378-fe73-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T08:30:04", "message_id": "64fe7ffe-fe72-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T08:20:04", "message_id": "ff5211c6-fe70-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T08:10:04", "message_id": "99a717fa-fe6f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T08:00:04", "message_id": "33f91562-fe6e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T07:50:04", "message_id": "ce49bd4e-fe6c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T07:40:04", "message_id": "68aadad2-fe6b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T07:30:04", "message_id": "02fb0262-fe6a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T07:20:04", "message_id": "9d4f1abc-fe68-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T07:10:04", "message_id": "379eabd4-fe67-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T07:00:04", "message_id": "d1eec388-fe65-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T06:50:04", "message_id": "6c3e7264-fe64-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T06:40:04", "message_id": "069b1b8e-fe63-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T06:30:03", "message_id": "a0ede3b2-fe61-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T06:20:03", "message_id": "3b385ec2-fe60-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T06:10:03", "message_id": "d58407a8-fe5e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T06:00:03", "message_id": "6fd57640-fe5d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T05:50:03", "message_id": "0a27c088-fe5c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T05:40:03", "message_id": "a47ee15e-fe5a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T05:30:03", "message_id": "3ec67f1c-fe59-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T05:20:03", "message_id": "d91a6922-fe57-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T05:10:03", "message_id": "7371e592-fe56-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T05:00:03", "message_id": "0dbd799c-fe55-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T04:50:02", "message_id": "a80fc484-fe53-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T04:40:02", "message_id": "42663704-fe52-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T04:30:02", "message_id": "dcbdac12-fe50-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T04:20:02", "message_id": "770630f2-fe4f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T04:10:02", "message_id": "114d0eda-fe4e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T04:00:02", "message_id": "aba8e0d2-fe4c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T03:50:02", "message_id": "45f7ab02-fe4b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T03:40:02", "message_id": "e04cb96a-fe49-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T03:30:02", "message_id": "7a9722aa-fe48-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T03:20:02", "message_id": "14e4abd6-fe47-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T03:10:02", "message_id": "af41387c-fe45-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T03:00:01", "message_id": "498c5c6a-fe44-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T02:50:01", "message_id": "e3dba228-fe42-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T02:40:01", "message_id": "7e2a0ef2-fe41-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T02:30:01", "message_id": "1888cc60-fe40-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T02:20:01", "message_id": "b2dbfcb2-fe3e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T02:10:01", "message_id": "4d26d578-fe3d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T02:00:01", "message_id": "e77de5fa-fe3b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T01:50:01", "message_id": "81d1013e-fe3a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T01:40:01", "message_id": "1c2ee1e4-fe39-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T01:30:01", "message_id": "b67e4566-fe37-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T01:20:01", "message_id": "50d9f922-fe36-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T01:10:01", "message_id": "eb208142-fe34-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T01:00:01", "message_id": "8579f1c6-fe33-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T00:50:00", "message_id": "1fc0fac4-fe32-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T00:40:00", "message_id": "ba19a15e-fe30-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T00:30:00", "message_id": "546512ea-fe2f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T00:20:00", "message_id": "eeb4680c-fe2d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T00:10:00", "message_id": "89082d3c-fe2c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-06T00:00:00", "message_id": "235b221a-fe2b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T23:50:00", "message_id": "bdadd4fe-fe29-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T23:40:00", "message_id": "58026918-fe28-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T23:30:00", "message_id": "f25109c2-fe26-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T23:20:00", "message_id": "8cae6962-fe25-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T23:10:00", "message_id": "273a8b48-fe24-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T23:00:00", "message_id": "c18d53a8-fe22-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T22:49:59", "message_id": "5b9647ea-fe21-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T22:39:59", "message_id": "f5e23d6a-fe1f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T22:29:59", "message_id": "903c5834-fe1e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T22:19:59", "message_id": "2a90bbac-fe1d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T22:09:59", "message_id": "c4dd95e2-fe1b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T21:59:59", "message_id": "5f2dd956-fe1a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T21:49:59", "message_id": "f97f130a-fe18-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T21:39:59", "message_id": "93cb8a9e-fe17-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T21:29:59", "message_id": "2e157332-fe16-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T21:19:58", "message_id": "c86ce39a-fe14-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T21:09:58", "message_id": "62bde16c-fe13-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T20:59:58", "message_id": "fd123abc-fe11-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T20:49:58", "message_id": "9758b2d8-fe10-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T20:39:58", "message_id": "31a9fc54-fe0f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T20:29:58", "message_id": "cbf96558-fe0d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T20:19:58", "message_id": "6653f2be-fe0c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T20:09:58", "message_id": "009dd080-fe0b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T19:59:58", "message_id": "9af3c466-fe09-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T19:49:58", "message_id": "35467a24-fe08-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T19:39:58", "message_id": "cfa3391a-fe06-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T19:29:58", "message_id": "69efd9e4-fe05-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T19:19:57", "message_id": "04411ec4-fe04-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T19:09:57", "message_id": "9e97461c-fe02-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T18:59:57", "message_id": "38e62cb2-fe01-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T18:49:57", "message_id": "d3351230-fdff-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T18:39:57", "message_id": "6d8e010e-fdfe-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T18:29:57", "message_id": "07e0e07a-fdfd-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T18:19:57", "message_id": "a2363cbc-fdfb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T18:09:57", "message_id": "3c95e534-fdfa-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T17:59:57", "message_id": "d6db4190-fdf8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T17:49:57", "message_id": "71313a8a-fdf7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T17:39:57", "message_id": "0b823c76-fdf6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T17:29:57", "message_id": "a5d82bac-fdf4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T17:19:56", "message_id": "4027b38c-fdf3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T17:09:56", "message_id": "da7bdb68-fdf1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T16:59:56", "message_id": "74cceaba-fdf0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T16:49:56", "message_id": "0f1db4f2-fdef-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T16:39:56", "message_id": "a9791dfe-fded-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T16:29:56", "message_id": "43f39618-fdec-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T16:19:56", "message_id": "de25041c-fdea-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T16:09:56", "message_id": "788196d0-fde9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T15:59:56", "message_id": "12d17fe0-fde8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T15:49:56", "message_id": "ad295056-fde6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T15:39:56", "message_id": "477d5780-fde5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T15:29:56", "message_id": "e1ce9378-fde3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T15:19:56", "message_id": "7c4ff7b8-fde2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T15:09:56", "message_id": "16697312-fde1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T14:59:55", "message_id": "b0b9167c-fddf-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T14:49:55", "message_id": "4b16c1b2-fdde-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T14:39:55", "message_id": "e5611c42-fddc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T14:29:55", "message_id": "7fb598b0-fddb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T14:19:55", "message_id": "1a067bf2-fdda-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T14:09:55", "message_id": "b45cb9ac-fdd8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T13:59:55", "message_id": "4ea8967c-fdd7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T13:49:55", "message_id": "e8fdbee8-fdd5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T13:39:55", "message_id": "834a0616-fdd4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T13:29:55", "message_id": "1d98112e-fdd3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T13:19:55", "message_id": "b7e9a500-fdd1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T13:09:54", "message_id": "523e7c68-fdd0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T12:59:54", "message_id": "ec91bb06-fdce-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T12:49:54", "message_id": "86e27b70-fdcd-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T12:39:54", "message_id": "21314afa-fdcc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T12:29:54", "message_id": "bb81c51e-fdca-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T12:19:54", "message_id": "55d58db4-fdc9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T12:09:54", "message_id": "f0201544-fdc7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T11:59:54", "message_id": "8a760a9c-fdc6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T11:49:54", "message_id": "24cb640e-fdc5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T11:39:54", "message_id": "bf1fb610-fdc3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T11:29:54", "message_id": "596f58e4-fdc2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T11:19:53", "message_id": "f3c5867c-fdc0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T11:09:53", "message_id": "8e169420-fdbf-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T10:59:53", "message_id": "286a5fea-fdbe-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T10:49:54", "message_id": "c2e5e37a-fdbc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T10:39:53", "message_id": "5d0c4c5c-fdbb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T10:29:53", "message_id": "f768be22-fdb9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T10:19:53", "message_id": "91b68c7c-fdb8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T10:09:53", "message_id": "2c17858e-fdb7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T09:59:53", "message_id": "c669e836-fdb5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T09:49:53", "message_id": "60be43f2-fdb4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T09:39:53", "message_id": "fb0f10be-fdb2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T09:29:53", "message_id": "95641350-fdb1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T09:19:53", "message_id": "2fb283ee-fdb0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T09:09:52", "message_id": "c9ffd7b4-fdae-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T08:59:52", "message_id": "64569124-fdad-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T08:49:52", "message_id": "feb76a10-fdab-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T08:39:52", "message_id": "98fc4890-fdaa-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T08:29:52", "message_id": "334c6ef4-fda9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T08:19:52", "message_id": "cd9bc0ce-fda7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T08:09:52", "message_id": "6808214a-fda6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T07:59:52", "message_id": "024369f6-fda5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T07:49:52", "message_id": "9c916b9a-fda3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T07:39:52", "message_id": "36e99458-fda2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T07:29:52", "message_id": "d13837e6-fda0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T07:19:52", "message_id": "6b8c20f2-fd9f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T07:09:52", "message_id": "06049562-fd9e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T06:59:51", "message_id": "a028c624-fd9c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T06:49:51", "message_id": "3a7fa064-fd9b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T06:39:51", "message_id": "d4c6f7f0-fd99-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T06:29:51", "message_id": "6f1babd6-fd98-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T06:19:51", "message_id": "0966dbe0-fd97-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T06:09:51", "message_id": "a3bc5e88-fd95-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T05:59:51", "message_id": "3e0fdd4a-fd94-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T05:49:51", "message_id": "d8615010-fd92-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T05:39:51", "message_id": "72b2dcc6-fd91-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T05:29:51", "message_id": "0d0fa40e-fd90-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T05:19:50", "message_id": "a75dc2cc-fd8e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T05:09:50", "message_id": "41a89854-fd8d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T04:59:50", "message_id": "dc091e7a-fd8b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T04:49:50", "message_id": "76667ffa-fd8a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T04:39:50", "message_id": "10c53a5c-fd89-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T04:29:50", "message_id": "ab18bb8a-fd87-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T04:19:50", "message_id": "45517bd0-fd86-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T04:09:50", "message_id": "dfbd4354-fd84-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T03:59:50", "message_id": "79d48620-fd83-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T03:49:50", "message_id": "1444fb24-fd82-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T03:39:50", "message_id": "ae9d9fe8-fd80-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T03:29:50", "message_id": "48f97cc6-fd7f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T03:19:50", "message_id": "e35878a0-fd7d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T03:09:50", "message_id": "7da4b5f6-fd7c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T02:59:49", "message_id": "17db65c2-fd7b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T02:49:49", "message_id": "b21cd2da-fd79-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T02:39:49", "message_id": "4cadc126-fd78-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T02:29:49", "message_id": "e6ef3140-fd76-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T02:19:49", "message_id": "814a6e1e-fd75-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T02:09:49", "message_id": "1b95bb92-fd74-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T01:59:49", "message_id": "b5d48e88-fd72-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T01:49:49", "message_id": "5028fbba-fd71-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T01:39:49", "message_id": "ea86822e-fd6f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T01:29:49", "message_id": "850398fc-fd6e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T01:19:49", "message_id": "1f64baae-fd6d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T01:09:49", "message_id": "b9a18036-fd6b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T00:59:48", "message_id": "53da5878-fd6a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T00:49:48", "message_id": "ee1b5f38-fd68-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T00:39:48", "message_id": "88827fc2-fd67-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T00:29:48", "message_id": "22db508c-fd66-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T00:19:48", "message_id": "bd36c3fc-fd64-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-05T00:09:48", "message_id": "57a77a32-fd63-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-04T23:59:48", "message_id": "f1fe209c-fd61-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-04T23:49:48", "message_id": "8c38b2a0-fd60-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-04T23:39:05", "message_id": "0cfd0938-fd5f-11e2-b8cf-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "4cb54495d7784d3dbd61db9d7adf955f", "timestamp": "2013-08-04T23:29:05", "message_id": "a76848ae-fd5d-11e2-b8cf-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 3.0, "project_id": "4cb54495d7784d3dbd61db9d7adf955f", "resource_metadata": {}, "counter_type": "gauge"}]} \ No newline at end of file diff --git a/tests/data/map_fixture_11.json b/tests/data/map_fixture_11.json new file mode 100644 index 0000000..ae52828 --- /dev/null +++ b/tests/data/map_fixture_11.json @@ -0,0 +1 @@ +{"http://localhost:8777/v2/meters/port.create?q.field=resource_id&q.value=5561589b-c1fa-46eb-b9d4-5998daceaee4": [{"counter_name": "port.create", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "5561589b-c1fa-46eb-b9d4-5998daceaee4", "timestamp": "2013-08-05T21:56:25.971000", "message_id": "dff93784-fe19-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "port", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"status": "DOWN", "name": "", "admin_state_up": "True", "network_id": "79b5e163-496c-4ab6-9c21-3b597ed632dc", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "host": "network.openstack", "device_owner": "", "mac_address": "fa:16:3e:4a:5d:9a", "event_type": "port.create.end", "id": "5561589b-c1fa-46eb-b9d4-5998daceaee4", "device_id": ""}, "counter_type": "delta"}], "http://localhost:8777/v2/meters/port?q.field=resource_id&q.value=5561589b-c1fa-46eb-b9d4-5998daceaee4": [{"counter_name": "port", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "5561589b-c1fa-46eb-b9d4-5998daceaee4", "timestamp": "2013-08-05T21:56:25.971000", "message_id": "dff84b8a-fe19-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "port", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"status": "DOWN", "name": "", "admin_state_up": "True", "network_id": "79b5e163-496c-4ab6-9c21-3b597ed632dc", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "host": "network.openstack", "device_owner": "", "mac_address": "fa:16:3e:4a:5d:9a", "event_type": "port.create.end", "id": "5561589b-c1fa-46eb-b9d4-5998daceaee4", "device_id": ""}, "counter_type": "gauge"}]} \ No newline at end of file diff --git a/tests/data/map_fixture_12.json b/tests/data/map_fixture_12.json new file mode 100644 index 0000000..27115b4 --- /dev/null +++ b/tests/data/map_fixture_12.json @@ -0,0 +1 @@ +{"http://localhost:8777/v2/meters/volume?q.field=resource_id&q.value=5d658ace-2535-48c5-a05f-85d651c0d0ac": [{"counter_name": "volume", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "5d658ace-2535-48c5-a05f-85d651c0d0ac", "timestamp": "2013-08-05T03:52:24.800000", "message_id": "7069d14a-fd82-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "volume", "counter_volume": 1.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {"status": "available", "display_name": "asdf", "event_type": "volume.create.end", "availability_zone": "nova", "tenant_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "created_at": "2013-08-05 03:52:23", "volume_id": "5d658ace-2535-48c5-a05f-85d651c0d0ac", "volume_type": "None", "host": "volume.openstack", "snapshot_id": "None", "user_id": "2b8fbe55863d4dfab5310796202b2019", "launched_at": "", "size": "2"}, "counter_type": "gauge"}], "http://localhost:8777/v2/meters/volume.size?q.field=resource_id&q.value=5d658ace-2535-48c5-a05f-85d651c0d0ac": [{"counter_name": "volume.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "5d658ace-2535-48c5-a05f-85d651c0d0ac", "timestamp": "2013-08-05T03:52:24.800000", "message_id": "706bcc3e-fd82-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 2.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {"status": "available", "display_name": "asdf", "event_type": "volume.create.end", "availability_zone": "nova", "tenant_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "created_at": "2013-08-05 03:52:23", "volume_id": "5d658ace-2535-48c5-a05f-85d651c0d0ac", "volume_type": "None", "host": "volume.openstack", "snapshot_id": "None", "user_id": "2b8fbe55863d4dfab5310796202b2019", "launched_at": "", "size": "2"}, "counter_type": "gauge"}]} \ No newline at end of file diff --git a/tests/data/map_fixture_13.json b/tests/data/map_fixture_13.json new file mode 100644 index 0000000..a2d6dc7 --- /dev/null +++ b/tests/data/map_fixture_13.json @@ -0,0 +1 @@ +{"http://localhost:8777/v2/meters/port.create?q.field=resource_id&q.value=615a397c-fca2-4233-9f42-b769a8d6ea59": [{"counter_name": "port.create", "user_id": "9692a61b44f246259af534f0b1d95942", "resource_id": "615a397c-fca2-4233-9f42-b769a8d6ea59", "timestamp": "2013-08-04T23:58:49.296000", "message_id": "ce871c4a-fd61-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "port", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"status": "DOWN", "binding:host_id": "openstack", "name": "", "admin_state_up": "True", "network_id": "0e5f3762-a8a9-4051-ad35-49ad879ebfc3", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "host": "network.openstack", "binding:vif_type": "ovs", "device_owner": "compute:None", "mac_address": "fa:16:3e:4d:0f:e5", "event_type": "port.create.end", "id": "615a397c-fca2-4233-9f42-b769a8d6ea59", "device_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef"}, "counter_type": "delta"}], "http://localhost:8777/v2/meters/port?q.field=resource_id&q.value=615a397c-fca2-4233-9f42-b769a8d6ea59": [{"counter_name": "port", "user_id": "9692a61b44f246259af534f0b1d95942", "resource_id": "615a397c-fca2-4233-9f42-b769a8d6ea59", "timestamp": "2013-08-04T23:58:49.296000", "message_id": "ce863870-fd61-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "port", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"status": "DOWN", "binding:host_id": "openstack", "name": "", "admin_state_up": "True", "network_id": "0e5f3762-a8a9-4051-ad35-49ad879ebfc3", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "host": "network.openstack", "binding:vif_type": "ovs", "device_owner": "compute:None", "mac_address": "fa:16:3e:4d:0f:e5", "event_type": "port.create.end", "id": "615a397c-fca2-4233-9f42-b769a8d6ea59", "device_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef"}, "counter_type": "gauge"}]} \ No newline at end of file diff --git a/tests/data/map_fixture_14.json b/tests/data/map_fixture_14.json new file mode 100644 index 0000000..5d4d989 --- /dev/null +++ b/tests/data/map_fixture_14.json @@ -0,0 +1 @@ +{"http://localhost:8777/v2/meters/port?q.field=resource_id&q.value=6b9765e2-9138-4468-a60c-4e9f63044d9d": [{"counter_name": "port", "user_id": "9692a61b44f246259af534f0b1d95942", "resource_id": "6b9765e2-9138-4468-a60c-4e9f63044d9d", "timestamp": "2013-08-05T05:17:40.286000", "message_id": "5982294e-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "port", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"status": "DOWN", "binding:host_id": "openstack", "name": "", "admin_state_up": "True", "network_id": "0e5f3762-a8a9-4051-ad35-49ad879ebfc3", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "host": "network.openstack", "binding:vif_type": "ovs", "device_owner": "compute:nova", "mac_address": "fa:16:3e:19:28:00", "event_type": "port.create.end", "id": "6b9765e2-9138-4468-a60c-4e9f63044d9d", "device_id": "1bd5a017-2777-4601-8c48-fd7569a4e485"}, "counter_type": "gauge"}], "http://localhost:8777/v2/meters/port.create?q.field=resource_id&q.value=6b9765e2-9138-4468-a60c-4e9f63044d9d": [{"counter_name": "port.create", "user_id": "9692a61b44f246259af534f0b1d95942", "resource_id": "6b9765e2-9138-4468-a60c-4e9f63044d9d", "timestamp": "2013-08-05T05:17:40.286000", "message_id": "5983bcb4-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "port", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"status": "DOWN", "binding:host_id": "openstack", "name": "", "admin_state_up": "True", "network_id": "0e5f3762-a8a9-4051-ad35-49ad879ebfc3", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "host": "network.openstack", "binding:vif_type": "ovs", "device_owner": "compute:nova", "mac_address": "fa:16:3e:19:28:00", "event_type": "port.create.end", "id": "6b9765e2-9138-4468-a60c-4e9f63044d9d", "device_id": "1bd5a017-2777-4601-8c48-fd7569a4e485"}, "counter_type": "delta"}]} \ No newline at end of file diff --git a/tests/data/map_fixture_15.json b/tests/data/map_fixture_15.json new file mode 100644 index 0000000..24d9720 --- /dev/null +++ b/tests/data/map_fixture_15.json @@ -0,0 +1 @@ +{"http://localhost:8777/v2/meters/instance:m1.nano?q.field=resource_id&q.value=6d254988-1431-49d7-9491-e7c27d0bd6cb": [{"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-12T04:00:31.090000", "message_id": "bb4dbc40-0303-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "stopped", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-12 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-12T03:00:51.379000", "message_id": "65995a78-02fb-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "stopped", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-12 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-12T02:00:27.642000", "message_id": "f5a81e00-02f2-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-12 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-12T01:00:47.031000", "message_id": "9f84e7f4-02ea-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-12 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-12T01:00:47.031000", "message_id": "9f84e7f4-02ea-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-12 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-12T01:00:47.031000", "message_id": "9f84e7f4-02ea-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-12 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-12T01:00:47.031000", "message_id": "9f84e7f4-02ea-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-12 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-12T01:00:47.031000", "message_id": "9f84e7f4-02ea-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-12 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-12T00:00:24.703000", "message_id": "3060a9e2-02e2-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-12T00:00:24.703000", "message_id": "3060a9e2-02e2-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-12T00:00:24.703000", "message_id": "3060a9e2-02e2-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-12T00:00:24.703000", "message_id": "3060a9e2-02e2-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T23:00:42.276000", "message_id": "d929b41e-02d9-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T22:00:20.999000", "message_id": "6aa8e0bc-02d1-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T22:00:20.999000", "message_id": "6aa8e0bc-02d1-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T22:00:20.999000", "message_id": "6aa8e0bc-02d1-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T22:00:20.999000", "message_id": "6aa8e0bc-02d1-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T22:00:20.999000", "message_id": "6aa8e0bc-02d1-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T21:00:29.993000", "message_id": "0e58a58e-02c9-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T21:00:29.993000", "message_id": "0e58a58e-02c9-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T20:00:18.075000", "message_id": "a5593128-02c0-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T19:00:11.738000", "message_id": "3fce47a6-02b8-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T18:00:02.982000", "message_id": "d8d4f854-02af-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T17:00:49.686000", "message_id": "92eeafae-02a7-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T16:00:45.668000", "message_id": "2edd2cbe-029f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T16:00:45.668000", "message_id": "2edd2cbe-029f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T16:00:45.668000", "message_id": "2edd2cbe-029f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T15:00:36.682000", "message_id": "c7a5174e-0296-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T14:00:27.927000", "message_id": "609ba714-028e-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T13:00:20.195000", "message_id": "fa5140d4-0285-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T12:00:11.498000", "message_id": "93605c46-027d-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T12:00:11.498000", "message_id": "93605c46-027d-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T12:00:11.498000", "message_id": "93605c46-027d-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T12:00:11.498000", "message_id": "93605c46-027d-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T12:00:11.498000", "message_id": "93605c46-027d-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T11:00:02.834000", "message_id": "2c67e34a-0275-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T10:00:29.322000", "message_id": "da6224e6-026c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T09:00:26.282000", "message_id": "76cb2188-0264-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T09:00:26.282000", "message_id": "76cb2188-0264-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T09:00:26.282000", "message_id": "76cb2188-0264-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T09:00:26.282000", "message_id": "76cb2188-0264-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T09:00:26.282000", "message_id": "76cb2188-0264-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T08:00:23.204000", "message_id": "132fd324-025c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T07:00:19.816000", "message_id": "af856ecc-0253-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T06:00:16.410000", "message_id": "4bae671c-024b-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T06:00:16.410000", "message_id": "4bae671c-024b-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T06:00:16.410000", "message_id": "4bae671c-024b-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T05:00:05.208000", "message_id": "e326a2b6-0242-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T04:00:09.161000", "message_id": "83d1802c-023a-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T03:00:02.127000", "message_id": "1df24e88-0232-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T02:00:02.839000", "message_id": "bc758baa-0229-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T01:00:00.580000", "message_id": "595ec8e0-0221-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T00:00:59.456000", "message_id": "1aad0fec-0219-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T00:00:59.456000", "message_id": "1aad0fec-0219-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T00:00:59.456000", "message_id": "1aad0fec-0219-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T00:00:59.456000", "message_id": "1aad0fec-0219-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-10T23:00:57.025000", "message_id": "b774b590-0210-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-10T22:00:51.185000", "message_id": "52335e14-0208-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-10T22:00:51.185000", "message_id": "52335e14-0208-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-10T22:00:51.185000", "message_id": "52335e14-0208-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-10T22:00:51.185000", "message_id": "52335e14-0208-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-10T22:00:51.185000", "message_id": "52335e14-0208-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-10T21:00:43.992000", "message_id": "ec464f88-01ff-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-10T20:00:38.846000", "message_id": "87753b30-01f7-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-10T19:00:35.293000", "message_id": "2380c9e4-01ef-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-10T18:00:31.848000", "message_id": "bfa38360-01e6-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-10T17:00:28.356000", "message_id": "5bcbb1a8-01de-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-10T16:00:25.428000", "message_id": "f852a634-01d5-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-10T15:00:22.207000", "message_id": "949a52e8-01cd-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-10T14:00:19.139000", "message_id": "31009902-01c5-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-10T14:00:19.139000", "message_id": "31009902-01c5-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-10T13:00:15.666000", "message_id": "cd249c24-01bc-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-10T12:00:04.247000", "message_id": "64b5a0aa-01b4-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-10T12:00:04.247000", "message_id": "64b5a0aa-01b4-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-10T12:00:04.247000", "message_id": "64b5a0aa-01b4-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-10T11:00:00.244000", "message_id": "00718422-01ac-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-10T10:00:57.803000", "message_id": "c10f17b6-01a3-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-10T09:00:54.261000", "message_id": "5d19ec98-019b-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-10T08:00:51.316000", "message_id": "f990ba7e-0192-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-10T07:00:47.611000", "message_id": "95a602b0-018a-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-10T06:00:44.485000", "message_id": "3209beb6-0182-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-10T05:00:41.335000", "message_id": "ce596fcc-0179-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-10T05:00:41.335000", "message_id": "ce596fcc-0179-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-10T05:00:41.335000", "message_id": "ce596fcc-0179-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-10T04:00:38.478000", "message_id": "6aeb25e6-0171-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-10T03:00:35.050000", "message_id": "0713361a-0169-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-10T02:00:32.184000", "message_id": "a3a40f62-0160-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-10T01:00:28.505000", "message_id": "3fa4cf72-0158-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-10T00:00:24.195000", "message_id": "db4e70d0-014f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-09T23:00:20.515000", "message_id": "7758cc2c-0147-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-09T22:00:16.973000", "message_id": "136edd80-013f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-09T21:00:13.447000", "message_id": "af9421ba-0136-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-09T20:00:10.395000", "message_id": "4c0ee240-012e-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-09T19:00:07.015000", "message_id": "e829fca4-0125-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-09T18:00:05.372000", "message_id": "8584cf1e-011d-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-09T18:00:05.372000", "message_id": "8584cf1e-011d-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-09T18:00:05.372000", "message_id": "8584cf1e-011d-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-09T17:00:01.510000", "message_id": "216bf5dc-0115-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-09T16:00:59.732000", "message_id": "e262b7c0-010c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-09T16:00:59.732000", "message_id": "e262b7c0-010c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-09T16:00:59.732000", "message_id": "e262b7c0-010c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-09T15:00:53.147000", "message_id": "7c9659c2-0104-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-09T15:00:53.147000", "message_id": "7c9659c2-0104-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-09T14:00:42.305000", "message_id": "14622190-00fc-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-09T13:00:31.957000", "message_id": "ac7b5ee6-00f3-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-09T12:00:21.642000", "message_id": "448a4ed0-00eb-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-09T11:00:11.726000", "message_id": "dcd87134-00e2-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-09T10:00:01.992000", "message_id": "756bfa96-00da-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-09T09:00:53.733000", "message_id": "3248475e-00d2-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-09T08:00:44.789000", "message_id": "cb3c961c-00c9-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-09T07:00:35.639000", "message_id": "6414f036-00c1-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-09T06:00:27.468000", "message_id": "fd7eb6fc-00b8-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-09T05:00:17.845000", "message_id": "95f905bc-00b0-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-09T04:00:02.363000", "message_id": "2af39596-00a8-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-09T03:00:52.992000", "message_id": "e7634900-009f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-09T02:00:37.336000", "message_id": "7c2e1cd0-0097-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-09T01:00:26.917000", "message_id": "143f10c8-008f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-09T00:00:17.075000", "message_id": "aca8213c-0086-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-09T00:00:17.075000", "message_id": "aca8213c-0086-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-08T23:00:07.584000", "message_id": "45287f1e-007e-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-08T22:01:01.353000", "message_id": "03b16a3a-0076-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-08T21:00:52.305000", "message_id": "9c4ac5a6-006d-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-08T21:00:52.305000", "message_id": "9c4ac5a6-006d-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-08T21:00:52.305000", "message_id": "9c4ac5a6-006d-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-08T21:00:52.305000", "message_id": "9c4ac5a6-006d-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-08T21:00:52.305000", "message_id": "9c4ac5a6-006d-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-08T20:00:43.553000", "message_id": "355c5d8a-0065-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-08T19:00:36.809000", "message_id": "cf900234-005c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-08T18:00:29.390000", "message_id": "695ee2a8-0054-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-08T17:00:22.400000", "message_id": "03722eb2-004c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-08T17:00:22.400000", "message_id": "03722eb2-004c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-08T17:00:22.400000", "message_id": "03722eb2-004c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-08T17:00:22.400000", "message_id": "03722eb2-004c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-08T17:00:22.400000", "message_id": "03722eb2-004c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-08T16:00:14.002000", "message_id": "9ca85470-0043-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-08T16:00:14.002000", "message_id": "9ca85470-0043-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-08T16:00:14.002000", "message_id": "9ca85470-0043-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-08T15:00:07.777000", "message_id": "3739decc-003b-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-08T15:00:07.777000", "message_id": "3739decc-003b-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-08T15:00:07.777000", "message_id": "3739decc-003b-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-08T15:00:07.777000", "message_id": "3739decc-003b-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-08T15:00:07.777000", "message_id": "3739decc-003b-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-08T14:01:00.736000", "message_id": "f51108c0-0032-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-08T13:00:51.701000", "message_id": "8dc40e18-002a-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-08T12:00:42.620000", "message_id": "269bcef4-0022-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-08T11:00:35.807000", "message_id": "c0c7bd3e-0019-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-08T10:00:28.484000", "message_id": "5aada9e4-0011-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-08T09:00:25.631000", "message_id": "f72a096a-0008-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-08T08:00:23.262000", "message_id": "9401864a-0000-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-08T07:00:21.325000", "message_id": "311d8e50-fff8-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-08T06:00:19.373000", "message_id": "ce34e8c2-ffef-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-08T05:00:17.549000", "message_id": "6b620f34-ffe7-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-08T04:00:15.948000", "message_id": "089ad9b0-ffdf-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-08T03:00:13.903000", "message_id": "a593be2a-ffd6-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-08T03:00:13.903000", "message_id": "a593be2a-ffd6-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-08T03:00:13.903000", "message_id": "a593be2a-ffd6-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-08T03:00:13.903000", "message_id": "a593be2a-ffd6-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-08T02:00:12.136000", "message_id": "42e0b9b6-ffce-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-08T01:00:10.226000", "message_id": "dfec9b02-ffc5-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-08T00:00:08.672000", "message_id": "7d3a4f5c-ffbd-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-07T23:00:03.895000", "message_id": "188a98a8-ffb5-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-07T22:00:01.395000", "message_id": "b5610bca-ffac-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-07T21:00:58.385000", "message_id": "7580883a-ffa4-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-07T20:00:55.809000", "message_id": "12526c68-ff9c-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-07T19:00:51.151000", "message_id": "adb99c3e-ff93-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-07T18:00:49.623000", "message_id": "4b03f40c-ff8b-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-07T17:00:47.541000", "message_id": "e7f83768-ff82-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-07T16:00:45.309000", "message_id": "84e40844-ff7a-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-07T15:00:43.052000", "message_id": "21c56544-ff72-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-07T14:00:40.827000", "message_id": "beb594c2-ff69-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-07T13:00:38.046000", "message_id": "5b40ac0e-ff61-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-07T12:00:35.572000", "message_id": "f80a13e4-ff58-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-07T11:00:33.104000", "message_id": "94cc50ce-ff50-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-07T10:00:28.911000", "message_id": "30867372-ff48-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-07T09:00:26.181000", "message_id": "cd2c303a-ff3f-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-07T08:00:23.752000", "message_id": "69dffa78-ff37-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-07T07:00:21.581000", "message_id": "06e6e77c-ff2f-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-07T06:00:16.384000", "message_id": "a20d24ae-ff26-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-07T05:00:13.085000", "message_id": "3e4f869e-ff1e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-07T04:00:10.468000", "message_id": "dafa7106-ff15-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-07T03:00:06.802000", "message_id": "76f1d562-ff0d-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-07T02:00:03.900000", "message_id": "13849cba-ff05-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-07T01:00:01.930000", "message_id": "b084d6dc-fefc-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-07T00:00:01.212000", "message_id": "4e49188c-fef4-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-06T23:00:36.421000", "message_id": "018d8846-feec-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-06T22:00:00.283000", "message_id": "8a44b9f6-fee3-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-06T21:00:12.892000", "message_id": "300877be-fedb-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-06T21:00:12.892000", "message_id": "300877be-fedb-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-06T21:00:12.892000", "message_id": "300877be-fedb-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-06T21:00:12.892000", "message_id": "300877be-fedb-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-06T20:00:01.615000", "message_id": "c7905fba-fed2-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-06T20:00:01.615000", "message_id": "c7905fba-fed2-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-06T20:00:01.615000", "message_id": "c7905fba-fed2-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-06T20:00:01.615000", "message_id": "c7905fba-fed2-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-06T20:00:01.615000", "message_id": "c7905fba-fed2-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-06T19:00:52.289000", "message_id": "83eebc46-feca-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-06T19:00:52.289000", "message_id": "83eebc46-feca-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-06T19:00:52.289000", "message_id": "83eebc46-feca-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-06T19:00:52.289000", "message_id": "83eebc46-feca-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-06T19:00:52.289000", "message_id": "83eebc46-feca-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-06T18:00:45.926000", "message_id": "1e63c7de-fec2-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-06T18:00:45.926000", "message_id": "1e63c7de-fec2-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-06T18:00:45.926000", "message_id": "1e63c7de-fec2-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-06T18:00:45.926000", "message_id": "1e63c7de-fec2-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-06T18:00:45.926000", "message_id": "1e63c7de-fec2-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-06T17:00:34.384000", "message_id": "b5c924ba-feb9-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-06T16:00:25.245000", "message_id": "4e73334e-feb1-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-06T15:00:16.243000", "message_id": "e765cca0-fea8-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-06T15:00:16.243000", "message_id": "e765cca0-fea8-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-06T15:00:16.243000", "message_id": "e765cca0-fea8-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-06T15:00:16.243000", "message_id": "e765cca0-fea8-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-06T15:00:16.243000", "message_id": "e765cca0-fea8-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-06T14:00:07.271000", "message_id": "80437ad4-fea0-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-06T13:01:00.139000", "message_id": "3dfe4148-fe98-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-06T12:00:50.881000", "message_id": "d6bc1512-fe8f-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-06T11:00:42.192000", "message_id": "6fcb7b5c-fe87-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-06T11:00:42.192000", "message_id": "6fcb7b5c-fe87-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-06T10:00:33.185000", "message_id": "08a11cdc-fe7f-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-06T09:00:25.670000", "message_id": "a25bc164-fe76-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-06T08:00:15.411000", "message_id": "3a8cca86-fe6e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-06T07:00:06.742000", "message_id": "d392f4de-fe65-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-06T06:00:59.199000", "message_id": "9119af7e-fe5d-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-06T06:00:59.199000", "message_id": "9119af7e-fe5d-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-06T06:00:59.199000", "message_id": "9119af7e-fe5d-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-06T05:00:49.862000", "message_id": "29c705d6-fe55-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-06T05:00:49.862000", "message_id": "29c705d6-fe55-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-06T05:00:49.862000", "message_id": "29c705d6-fe55-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-06T04:00:41.472000", "message_id": "c308e86c-fe4c-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-06T03:00:32.542000", "message_id": "5be23b0a-fe44-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-06T02:00:23.144000", "message_id": "f4a289e8-fe3b-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-06T01:00:14.125000", "message_id": "8d6f06f0-fe33-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-06T00:00:05.630000", "message_id": "2692b920-fe2b-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-05T23:00:58.902000", "message_id": "e47b9dca-fe22-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-05T22:00:49.240000", "message_id": "7d0687a2-fe1a-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-05T21:00:40.383000", "message_id": "15f564aa-fe12-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-05T20:00:32.344000", "message_id": "af573b72-fe09-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-05T19:00:24.240000", "message_id": "4943d3f2-fe01-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-05T18:00:16.122000", "message_id": "e2254e24-fdf8-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-05T17:00:08.210000", "message_id": "7bbac838-fdf0-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-05T16:00:00.129000", "message_id": "15163192-fde8-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-05T15:00:53.663000", "message_id": "d3423b1a-fddf-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-05T14:00:45.823000", "message_id": "6cd0e4d8-fdd7-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-05T14:00:45.823000", "message_id": "6cd0e4d8-fdd7-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-05T14:00:45.823000", "message_id": "6cd0e4d8-fdd7-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-05T14:00:45.823000", "message_id": "6cd0e4d8-fdd7-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-05T13:00:37.625000", "message_id": "062bdb64-fdcf-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-05T12:00:29.415000", "message_id": "9f77e1c2-fdc6-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-05T11:00:21.432000", "message_id": "38fc4472-fdbe-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-05T10:00:13.177000", "message_id": "d24f1dc4-fdb5-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-05T09:00:05.255000", "message_id": "6bc8ae10-fdad-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-05T08:00:58.637000", "message_id": "29dfe0de-fda5-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-05T07:00:50.504000", "message_id": "c33d18e0-fd9c-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-05T06:00:42.344000", "message_id": "5c880dd8-fd94-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-05T05:17:47.145000", "message_id": "5da1f63a-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.create.end", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "message": "Success", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.637168", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "image_name": "cirros-0.3.1-x86_64-uec", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-05T05:17:46.796000", "message_id": "5d72d210-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.update", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "old_state": "building", "old_task_state": "spawning", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05T05:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 05:17:36", "launched_at": "2013-08-05T05:17:46.637168", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "None", "audit_period_ending": "2013-08-05T05:17:46.790953", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-05T05:17:41.456000", "message_id": "5a36bbac-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "spawning", "event_type": "compute.instance.update", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "building", "old_state": "None", "old_task_state": "None", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05T05:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 05:17:36", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "spawning", "audit_period_ending": "2013-08-05T05:17:41.453674", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-05T05:17:39.287000", "message_id": "58f353b8-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "spawning", "event_type": "compute.instance.update", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "building", "old_state": "building", "old_task_state": "block_device_mapping", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05T05:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 05:17:36", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "spawning", "audit_period_ending": "2013-08-05T05:17:39.173788", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-05T05:17:39.287000", "message_id": "58f353b8-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "spawning", "event_type": "compute.instance.update", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "building", "old_state": "building", "old_task_state": "block_device_mapping", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05T05:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 05:17:36", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "spawning", "audit_period_ending": "2013-08-05T05:17:39.173788", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-05T05:17:38.476000", "message_id": "58a67688-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "block_device_mapping", "event_type": "compute.instance.update", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "building", "old_state": "building", "old_task_state": "networking", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05T05:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 05:17:36", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "block_device_mapping", "audit_period_ending": "2013-08-05T05:17:38.396896", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-05T05:17:37.893000", "message_id": "583ee0d6-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "networking", "event_type": "compute.instance.update", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "building", "old_state": "building", "old_task_state": "None", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05T05:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 05:17:36", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "networking", "audit_period_ending": "2013-08-05T05:17:37.887582", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-05T05:17:37.724000", "message_id": "582939e8-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.update", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "building", "old_state": "None", "old_task_state": "None", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05T05:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 05:17:36", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "None", "audit_period_ending": "2013-08-05T05:17:37.716843", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-05T05:17:37.590000", "message_id": "5818b05a-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "scheduling", "event_type": "compute.instance.create.start", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "message": "", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "building", "launched_at": "", "node": "None", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "image_name": "cirros-0.3.1-x86_64-uec", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-05T05:17:37.352000", "message_id": "57c709bc-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.update", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "building", "old_state": "building", "old_task_state": "scheduling", "node": "None", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05T05:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 05:17:36", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "None", "audit_period_ending": "2013-08-05T05:17:37.343905", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-05T05:17:36.732000", "message_id": "57671ee4-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "scheduling", "event_type": "compute.instance.update", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "building", "old_state": "None", "old_task_state": "None", "node": "None", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "api.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05T05:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 05:17:36", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "scheduling", "audit_period_ending": "2013-08-05T05:17:36.725146", "os_type": "None"}, "counter_type": "gauge"}], "http://localhost:8777/v2/meters/disk.root.size?q.field=resource_id&q.value=6d254988-1431-49d7-9491-e7c27d0bd6cb": [{"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-12T04:00:31.090000", "message_id": "bb5f4a64-0303-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "stopped", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-12 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-12T04:00:31.090000", "message_id": "bb5f4a64-0303-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "stopped", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-12 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-12T04:00:31.090000", "message_id": "bb5f4a64-0303-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "stopped", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-12 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-12T04:00:31.090000", "message_id": "bb5f4a64-0303-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "stopped", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-12 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-12T03:00:51.379000", "message_id": "65af8438-02fb-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "stopped", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-12 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-12T02:00:27.642000", "message_id": "f5bd5054-02f2-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-12 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-12T02:00:27.642000", "message_id": "f5bd5054-02f2-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-12 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-12T02:00:27.642000", "message_id": "f5bd5054-02f2-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-12 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-12T02:00:27.642000", "message_id": "f5bd5054-02f2-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-12 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-12T01:00:47.031000", "message_id": "9fa7c6ac-02ea-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-12 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-12T01:00:47.031000", "message_id": "9fa7c6ac-02ea-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-12 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-12T01:00:47.031000", "message_id": "9fa7c6ac-02ea-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-12 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-12T00:00:24.703000", "message_id": "307b2e52-02e2-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T23:00:42.276000", "message_id": "d9475d70-02d9-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T22:00:20.999000", "message_id": "6abb98b0-02d1-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T21:00:29.993000", "message_id": "0e611836-02c9-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T20:00:18.075000", "message_id": "a56eb4da-02c0-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T19:00:11.738000", "message_id": "3fe22c62-02b8-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T19:00:11.738000", "message_id": "3fe22c62-02b8-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T19:00:11.738000", "message_id": "3fe22c62-02b8-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T19:00:11.738000", "message_id": "3fe22c62-02b8-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T18:00:02.982000", "message_id": "d8ebfcb6-02af-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T17:00:49.686000", "message_id": "93005eac-02a7-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T17:00:49.686000", "message_id": "93005eac-02a7-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T16:00:45.668000", "message_id": "2ef38388-029f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T15:00:36.682000", "message_id": "c7b5940c-0296-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T14:00:27.927000", "message_id": "609d9fb0-028e-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T13:00:20.195000", "message_id": "fa711e4a-0285-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T13:00:20.195000", "message_id": "fa711e4a-0285-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T12:00:11.498000", "message_id": "93777bd8-027d-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T12:00:11.498000", "message_id": "93777bd8-027d-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T12:00:11.498000", "message_id": "93777bd8-027d-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T12:00:11.498000", "message_id": "93777bd8-027d-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T11:00:02.834000", "message_id": "2c82f2fc-0275-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T10:00:29.322000", "message_id": "da7b93b8-026c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T09:00:26.282000", "message_id": "76e10138-0264-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T09:00:26.282000", "message_id": "76e10138-0264-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T09:00:26.282000", "message_id": "76e10138-0264-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T08:00:23.204000", "message_id": "1331d016-025c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T07:00:19.816000", "message_id": "af877028-0253-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T06:00:16.410000", "message_id": "4bbd5d62-024b-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T05:00:05.208000", "message_id": "e3468432-0242-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T04:00:09.161000", "message_id": "83e435be-023a-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T03:00:02.127000", "message_id": "1e001bda-0232-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T03:00:02.127000", "message_id": "1e001bda-0232-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T02:00:02.839000", "message_id": "bc86fd18-0229-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T02:00:02.839000", "message_id": "bc86fd18-0229-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T02:00:02.839000", "message_id": "bc86fd18-0229-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T02:00:02.839000", "message_id": "bc86fd18-0229-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T01:00:00.580000", "message_id": "596dbb16-0221-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T01:00:00.580000", "message_id": "596dbb16-0221-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T00:00:59.456000", "message_id": "1acb6438-0219-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-10T23:00:57.025000", "message_id": "b7922d28-0210-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-10T23:00:57.025000", "message_id": "b7922d28-0210-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-10T23:00:57.025000", "message_id": "b7922d28-0210-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-10T22:00:51.185000", "message_id": "524a042a-0208-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-10T21:00:43.992000", "message_id": "ec572b0a-01ff-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-10T20:00:38.846000", "message_id": "87775a00-01f7-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-10T19:00:35.293000", "message_id": "23a31e5e-01ef-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-10T18:00:31.848000", "message_id": "bfbeae88-01e6-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-10T17:00:28.356000", "message_id": "5be413d8-01de-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-10T16:00:25.428000", "message_id": "f8698354-01d5-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-10T15:00:22.207000", "message_id": "94b57f00-01cd-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-10T15:00:22.207000", "message_id": "94b57f00-01cd-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-10T14:00:19.139000", "message_id": "311cb0ce-01c5-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-10T14:00:19.139000", "message_id": "311cb0ce-01c5-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-10T14:00:19.139000", "message_id": "311cb0ce-01c5-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-10T13:00:15.666000", "message_id": "cd3cc768-01bc-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-10T12:00:04.247000", "message_id": "64c63d16-01b4-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-10T11:00:00.244000", "message_id": "00924446-01ac-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-10T10:00:57.803000", "message_id": "c1206e76-01a3-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-10T09:00:54.261000", "message_id": "5d285b8e-019b-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-10T08:00:51.316000", "message_id": "f9a7fbd0-0192-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-10T08:00:51.316000", "message_id": "f9a7fbd0-0192-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-10T08:00:51.316000", "message_id": "f9a7fbd0-0192-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-10T08:00:51.316000", "message_id": "f9a7fbd0-0192-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-10T07:00:47.611000", "message_id": "95b8e5e2-018a-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-10T06:00:44.485000", "message_id": "320bba68-0182-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-10T05:00:41.335000", "message_id": "ce7f12e0-0179-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-10T05:00:41.335000", "message_id": "ce7f12e0-0179-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-10T05:00:41.335000", "message_id": "ce7f12e0-0179-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-10T04:00:38.478000", "message_id": "6b0af222-0171-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-10T03:00:35.050000", "message_id": "072aea4e-0169-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-10T02:00:32.184000", "message_id": "a3cbc084-0160-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-10T01:00:28.505000", "message_id": "3fc0e6f8-0158-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-10T00:00:24.195000", "message_id": "db5f92d4-014f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-09T23:00:20.515000", "message_id": "77788d32-0147-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-09T22:00:16.973000", "message_id": "1382953c-013f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-09T21:00:13.447000", "message_id": "afab56be-0136-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-09T20:00:10.395000", "message_id": "4c286634-012e-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-09T19:00:07.015000", "message_id": "e83a1d50-0125-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-09T19:00:07.015000", "message_id": "e83a1d50-0125-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-09T18:00:05.372000", "message_id": "8597ad28-011d-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-09T17:00:01.510000", "message_id": "21827e7e-0115-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-09T16:00:59.732000", "message_id": "e2747af0-010c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-09T15:00:53.147000", "message_id": "7cadd0b6-0104-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-09T14:00:42.305000", "message_id": "14640ec4-00fc-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-09T13:00:31.957000", "message_id": "ac9227c0-00f3-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-09T13:00:31.957000", "message_id": "ac9227c0-00f3-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-09T13:00:31.957000", "message_id": "ac9227c0-00f3-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-09T13:00:31.957000", "message_id": "ac9227c0-00f3-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-09T12:00:21.642000", "message_id": "44a54082-00eb-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-09T11:00:11.726000", "message_id": "dce2297c-00e2-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-09T10:00:01.992000", "message_id": "757947d2-00da-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-09T10:00:01.992000", "message_id": "757947d2-00da-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-09T10:00:01.992000", "message_id": "757947d2-00da-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-09T09:00:53.733000", "message_id": "324c09e8-00d2-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-09T08:00:44.789000", "message_id": "cb4dbd16-00c9-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-09T08:00:44.789000", "message_id": "cb4dbd16-00c9-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-09T07:00:35.639000", "message_id": "642683aa-00c1-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-09T06:00:27.468000", "message_id": "fd9668b0-00b8-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-09T05:00:17.845000", "message_id": "960d9798-00b0-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-09T04:00:02.363000", "message_id": "2affd0ea-00a8-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-09T03:00:52.992000", "message_id": "e781c09c-009f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-09T03:00:52.992000", "message_id": "e781c09c-009f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-09T02:00:37.336000", "message_id": "7c4ae32e-0097-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-09T01:00:26.917000", "message_id": "1450efa0-008f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-09T00:00:17.075000", "message_id": "acc6ed10-0086-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-08T23:00:07.584000", "message_id": "4540acce-007e-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-08T23:00:07.584000", "message_id": "4540acce-007e-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-08T23:00:07.584000", "message_id": "4540acce-007e-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-08T23:00:07.584000", "message_id": "4540acce-007e-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-08T22:01:01.353000", "message_id": "03bd3c98-0076-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-08T21:00:52.305000", "message_id": "9c5db3aa-006d-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-08T21:00:52.305000", "message_id": "9c5db3aa-006d-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-08T21:00:52.305000", "message_id": "9c5db3aa-006d-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-08T21:00:52.305000", "message_id": "9c5db3aa-006d-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-08T20:00:43.553000", "message_id": "35823262-0065-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-08T19:00:36.809000", "message_id": "cfa3f028-005c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-08T18:00:29.390000", "message_id": "69721076-0054-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-08T17:00:22.400000", "message_id": "038b8600-004c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-08T16:00:14.002000", "message_id": "9cb29fac-0043-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-08T15:00:07.777000", "message_id": "37525a60-003b-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-08T14:01:00.736000", "message_id": "f51760bc-0032-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-08T13:00:51.701000", "message_id": "8dcfeecc-002a-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-08T13:00:51.701000", "message_id": "8dcfeecc-002a-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-08T12:00:42.620000", "message_id": "26b9ac94-0022-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-08T11:00:35.807000", "message_id": "c0d9709c-0019-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-08T10:00:28.484000", "message_id": "5ac8f79e-0011-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-08T09:00:25.631000", "message_id": "f73c2564-0008-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-08T08:00:23.262000", "message_id": "94198696-0000-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-08T08:00:23.262000", "message_id": "94198696-0000-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-08T08:00:23.262000", "message_id": "94198696-0000-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-08T08:00:23.262000", "message_id": "94198696-0000-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-08T07:00:21.325000", "message_id": "313876fc-fff8-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-08T06:00:19.373000", "message_id": "ce55e5c2-ffef-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-08T05:00:17.549000", "message_id": "6b7a2038-ffe7-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-08T04:00:15.948000", "message_id": "08b6f3c0-ffdf-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-08T03:00:13.903000", "message_id": "a5a92ac6-ffd6-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-08T03:00:13.903000", "message_id": "a5a92ac6-ffd6-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-08T03:00:13.903000", "message_id": "a5a92ac6-ffd6-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-08T03:00:13.903000", "message_id": "a5a92ac6-ffd6-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-08T02:00:12.136000", "message_id": "42e380d8-ffce-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-08T01:00:10.226000", "message_id": "dffe8bb4-ffc5-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-08T01:00:10.226000", "message_id": "dffe8bb4-ffc5-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-08T01:00:10.226000", "message_id": "dffe8bb4-ffc5-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-08T00:00:08.672000", "message_id": "7d45817e-ffbd-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-07T23:00:03.895000", "message_id": "18b167f8-ffb5-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-07T22:00:01.395000", "message_id": "b57fe3d8-ffac-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-07T21:00:58.385000", "message_id": "75833e04-ffa4-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-07T20:00:55.809000", "message_id": "125e1cb6-ff9c-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-07T19:00:51.151000", "message_id": "adcc12b0-ff93-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-07T18:00:49.623000", "message_id": "4b201f88-ff8b-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-07T17:00:47.541000", "message_id": "e80737ae-ff82-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-07T16:00:45.309000", "message_id": "84f785f4-ff7a-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-07T16:00:45.309000", "message_id": "84f785f4-ff7a-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-07T16:00:45.309000", "message_id": "84f785f4-ff7a-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-07T15:00:43.052000", "message_id": "21cf01c6-ff72-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-07T14:00:40.827000", "message_id": "bed4aeac-ff69-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-07T13:00:38.046000", "message_id": "5b55682e-ff61-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-07T13:00:38.046000", "message_id": "5b55682e-ff61-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-07T13:00:38.046000", "message_id": "5b55682e-ff61-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-07T13:00:38.046000", "message_id": "5b55682e-ff61-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-07T12:00:35.572000", "message_id": "f8103e54-ff58-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-07T11:00:33.104000", "message_id": "94e2e37a-ff50-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-07T10:00:28.911000", "message_id": "30a199c2-ff48-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-07T09:00:26.181000", "message_id": "cd46a910-ff3f-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-07T08:00:23.752000", "message_id": "69fcbeb0-ff37-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-07T07:00:21.581000", "message_id": "06fbde7a-ff2f-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-07T06:00:16.384000", "message_id": "a21e4c0c-ff26-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-07T05:00:13.085000", "message_id": "3e622d58-ff1e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-07T04:00:10.468000", "message_id": "db11c8ce-ff15-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-07T03:00:06.802000", "message_id": "770437fc-ff0d-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-07T02:00:03.900000", "message_id": "13a1c8bc-ff05-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-07T02:00:03.900000", "message_id": "13a1c8bc-ff05-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-07T02:00:03.900000", "message_id": "13a1c8bc-ff05-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-07T01:00:01.930000", "message_id": "b0978f84-fefc-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-07T00:00:01.212000", "message_id": "4e61b34c-fef4-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-06T23:00:36.421000", "message_id": "01a06fe2-feec-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-06T23:00:36.421000", "message_id": "01a06fe2-feec-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-06T23:00:36.421000", "message_id": "01a06fe2-feec-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-06T23:00:36.421000", "message_id": "01a06fe2-feec-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-06T22:00:00.283000", "message_id": "8a67f6a0-fee3-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-06T21:00:12.892000", "message_id": "3021ed0c-fedb-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-06T21:00:12.892000", "message_id": "3021ed0c-fedb-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-06T21:00:12.892000", "message_id": "3021ed0c-fedb-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-06T20:00:01.615000", "message_id": "c7b1ff12-fed2-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-06T19:00:52.289000", "message_id": "841036be-feca-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-06T18:00:45.926000", "message_id": "1e79d646-fec2-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-06T17:00:34.384000", "message_id": "b5e27302-feb9-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-06T17:00:34.384000", "message_id": "b5e27302-feb9-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-06T17:00:34.384000", "message_id": "b5e27302-feb9-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-06T17:00:34.384000", "message_id": "b5e27302-feb9-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-06T17:00:34.384000", "message_id": "b5e27302-feb9-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-06T16:00:25.245000", "message_id": "4e7706cc-feb1-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-06T15:00:16.243000", "message_id": "e77e4e7e-fea8-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-06T14:00:07.271000", "message_id": "8057d2cc-fea0-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-06T14:00:07.271000", "message_id": "8057d2cc-fea0-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-06T14:00:07.271000", "message_id": "8057d2cc-fea0-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-06T14:00:07.271000", "message_id": "8057d2cc-fea0-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-06T13:01:00.139000", "message_id": "3e18bcf8-fe98-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-06T12:00:50.881000", "message_id": "d6d2e238-fe8f-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-06T12:00:50.881000", "message_id": "d6d2e238-fe8f-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-06T12:00:50.881000", "message_id": "d6d2e238-fe8f-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-06T12:00:50.881000", "message_id": "d6d2e238-fe8f-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-06T11:00:42.192000", "message_id": "6fdcb08e-fe87-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-06T10:00:33.185000", "message_id": "08b438da-fe7f-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-06T09:00:25.670000", "message_id": "a26fb304-fe76-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-06T09:00:25.670000", "message_id": "a26fb304-fe76-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-06T09:00:25.670000", "message_id": "a26fb304-fe76-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-06T09:00:25.670000", "message_id": "a26fb304-fe76-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-06T08:00:15.411000", "message_id": "3aa7e456-fe6e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-06T08:00:15.411000", "message_id": "3aa7e456-fe6e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-06T08:00:15.411000", "message_id": "3aa7e456-fe6e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-06T08:00:15.411000", "message_id": "3aa7e456-fe6e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-06T07:00:06.742000", "message_id": "d3ab0e5c-fe65-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-06T06:00:59.199000", "message_id": "912c6a60-fe5d-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-06T05:00:49.862000", "message_id": "29e458f2-fe55-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-06T04:00:41.472000", "message_id": "c30b1baa-fe4c-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-06T03:00:32.542000", "message_id": "5be43d1a-fe44-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-06T02:00:23.144000", "message_id": "f4a716b6-fe3b-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-06T01:00:14.125000", "message_id": "8d7916ea-fe33-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-06T00:00:05.630000", "message_id": "26a7ce64-fe2b-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-05T23:00:58.902000", "message_id": "e496f336-fe22-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-05T23:00:58.902000", "message_id": "e496f336-fe22-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-05T22:00:49.240000", "message_id": "7d241d30-fe1a-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-05T21:00:40.383000", "message_id": "1606f2a6-fe12-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-05T21:00:40.383000", "message_id": "1606f2a6-fe12-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-05T21:00:40.383000", "message_id": "1606f2a6-fe12-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-05T20:00:32.344000", "message_id": "af651f3a-fe09-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-05T20:00:32.344000", "message_id": "af651f3a-fe09-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-05T19:00:24.240000", "message_id": "4949d270-fe01-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-05T18:00:16.122000", "message_id": "e238a744-fdf8-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-05T17:00:08.210000", "message_id": "7bc3410c-fdf0-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-05T16:00:00.129000", "message_id": "1523dfcc-fde8-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-05T15:00:53.663000", "message_id": "d34fe9fe-fddf-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-05T14:00:45.823000", "message_id": "6ce1bf1a-fdd7-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-05T14:00:45.823000", "message_id": "6ce1bf1a-fdd7-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-05T14:00:45.823000", "message_id": "6ce1bf1a-fdd7-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-05T13:00:37.625000", "message_id": "0637c028-fdcf-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-05T13:00:37.625000", "message_id": "0637c028-fdcf-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-05T13:00:37.625000", "message_id": "0637c028-fdcf-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-05T12:00:29.415000", "message_id": "9f8acfc6-fdc6-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-05T11:00:21.432000", "message_id": "390ee136-fdbe-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-05T10:00:13.177000", "message_id": "d25925e4-fdb5-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-05T09:00:05.255000", "message_id": "6bd230ac-fdad-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-05T08:00:58.637000", "message_id": "29ec59a4-fda5-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-05T07:00:50.504000", "message_id": "c3474c70-fd9c-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-05T07:00:50.504000", "message_id": "c3474c70-fd9c-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-05T07:00:50.504000", "message_id": "c3474c70-fd9c-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-05T06:00:42.344000", "message_id": "5c95dddc-fd94-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-05T05:17:47.145000", "message_id": "5daa2e9a-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.create.end", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "message": "Success", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.637168", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "image_name": "cirros-0.3.1-x86_64-uec", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-05T05:17:46.796000", "message_id": "5d84d1fe-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.update", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "old_state": "building", "old_task_state": "spawning", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05T05:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 05:17:36", "launched_at": "2013-08-05T05:17:46.637168", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "None", "audit_period_ending": "2013-08-05T05:17:46.790953", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-05T05:17:41.456000", "message_id": "5a40e096-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "spawning", "event_type": "compute.instance.update", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "building", "old_state": "None", "old_task_state": "None", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05T05:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 05:17:36", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "spawning", "audit_period_ending": "2013-08-05T05:17:41.453674", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-05T05:17:39.287000", "message_id": "58fb58f6-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "spawning", "event_type": "compute.instance.update", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "building", "old_state": "building", "old_task_state": "block_device_mapping", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05T05:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 05:17:36", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "spawning", "audit_period_ending": "2013-08-05T05:17:39.173788", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-05T05:17:38.476000", "message_id": "58c96eae-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "block_device_mapping", "event_type": "compute.instance.update", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "building", "old_state": "building", "old_task_state": "networking", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05T05:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 05:17:36", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "block_device_mapping", "audit_period_ending": "2013-08-05T05:17:38.396896", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-05T05:17:37.893000", "message_id": "587a0eae-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "networking", "event_type": "compute.instance.update", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "building", "old_state": "building", "old_task_state": "None", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05T05:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 05:17:36", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "networking", "audit_period_ending": "2013-08-05T05:17:37.887582", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-05T05:17:37.893000", "message_id": "587a0eae-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "networking", "event_type": "compute.instance.update", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "building", "old_state": "building", "old_task_state": "None", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05T05:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 05:17:36", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "networking", "audit_period_ending": "2013-08-05T05:17:37.887582", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-05T05:17:37.893000", "message_id": "587a0eae-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "networking", "event_type": "compute.instance.update", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "building", "old_state": "building", "old_task_state": "None", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05T05:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 05:17:36", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "networking", "audit_period_ending": "2013-08-05T05:17:37.887582", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-05T05:17:37.893000", "message_id": "587a0eae-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "networking", "event_type": "compute.instance.update", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "building", "old_state": "building", "old_task_state": "None", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05T05:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 05:17:36", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "networking", "audit_period_ending": "2013-08-05T05:17:37.887582", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-05T05:17:37.724000", "message_id": "585b40c8-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.update", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "building", "old_state": "None", "old_task_state": "None", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05T05:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 05:17:36", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "None", "audit_period_ending": "2013-08-05T05:17:37.716843", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-05T05:17:37.590000", "message_id": "5841f47e-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "scheduling", "event_type": "compute.instance.create.start", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "message": "", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "building", "launched_at": "", "node": "None", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "image_name": "cirros-0.3.1-x86_64-uec", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-05T05:17:37.352000", "message_id": "57ce948e-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.update", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "building", "old_state": "building", "old_task_state": "scheduling", "node": "None", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05T05:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 05:17:36", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "None", "audit_period_ending": "2013-08-05T05:17:37.343905", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-05T05:17:37.352000", "message_id": "57ce948e-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.update", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "building", "old_state": "building", "old_task_state": "scheduling", "node": "None", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05T05:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 05:17:36", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "None", "audit_period_ending": "2013-08-05T05:17:37.343905", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-05T05:17:36.732000", "message_id": "576a745e-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "scheduling", "event_type": "compute.instance.update", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "building", "old_state": "None", "old_task_state": "None", "node": "None", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "api.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05T05:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 05:17:36", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "scheduling", "audit_period_ending": "2013-08-05T05:17:36.725146", "os_type": "None"}, "counter_type": "gauge"}], "http://localhost:8777/v2/meters/instance.scheduled?q.field=resource_id&q.value=6d254988-1431-49d7-9491-e7c27d0bd6cb": [{"counter_name": "instance.scheduled", "user_id": null, "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-05T05:17:37.162000", "message_id": "579e1aca-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "host": "scheduler.openstack", "event_type": "scheduler.run_instance.scheduled"}, "counter_type": "delta"}], "http://localhost:8777/v2/meters/memory?q.field=resource_id&q.value=6d254988-1431-49d7-9491-e7c27d0bd6cb": [{"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-12T04:00:31.090000", "message_id": "bb28a950-0303-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "stopped", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-12 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-12T04:00:31.090000", "message_id": "bb28a950-0303-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "stopped", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-12 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-12T03:00:51.379000", "message_id": "657befd8-02fb-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "stopped", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-12 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-12T03:00:51.379000", "message_id": "657befd8-02fb-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "stopped", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-12 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-12T02:00:27.642000", "message_id": "f591fe0e-02f2-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-12 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-12T01:00:47.031000", "message_id": "9f5c2a80-02ea-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-12 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-12T01:00:47.031000", "message_id": "9f5c2a80-02ea-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-12 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-12T00:00:24.703000", "message_id": "3047850c-02e2-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T23:00:42.276000", "message_id": "d8fc9650-02d9-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T22:00:20.999000", "message_id": "6a89edd8-02d1-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T21:00:29.993000", "message_id": "0e213662-02c9-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T20:00:18.075000", "message_id": "a5429b70-02c0-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T20:00:18.075000", "message_id": "a5429b70-02c0-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T19:00:11.738000", "message_id": "3fb8b878-02b8-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T18:00:02.982000", "message_id": "d8ba5986-02af-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T18:00:02.982000", "message_id": "d8ba5986-02af-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T17:00:49.686000", "message_id": "92cd05ca-02a7-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T16:00:45.668000", "message_id": "2ea3ae08-029f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T16:00:45.668000", "message_id": "2ea3ae08-029f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T15:00:36.682000", "message_id": "c785a530-0296-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T14:00:27.927000", "message_id": "6087417a-028e-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T13:00:20.195000", "message_id": "fa270eae-0285-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T13:00:20.195000", "message_id": "fa270eae-0285-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T12:00:11.498000", "message_id": "9333d374-027d-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T11:00:02.834000", "message_id": "2c46d3e4-0275-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T10:00:29.322000", "message_id": "da4b7f66-026c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T09:00:26.282000", "message_id": "76b6d7fa-0264-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T08:00:23.204000", "message_id": "131d11b2-025c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T08:00:23.204000", "message_id": "131d11b2-025c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T07:00:19.816000", "message_id": "af531544-0253-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T07:00:19.816000", "message_id": "af531544-0253-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T06:00:16.410000", "message_id": "4b872260-024b-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T05:00:05.208000", "message_id": "e315cbee-0242-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T04:00:09.161000", "message_id": "83ac0e1e-023a-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T04:00:09.161000", "message_id": "83ac0e1e-023a-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T03:00:02.127000", "message_id": "1db65798-0232-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T03:00:02.127000", "message_id": "1db65798-0232-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T02:00:02.839000", "message_id": "bc5e6718-0229-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T01:00:00.580000", "message_id": "594300a6-0221-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T00:00:59.456000", "message_id": "1a94ceaa-0219-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-10T23:00:57.025000", "message_id": "b75e2960-0210-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-10T22:00:51.185000", "message_id": "521dc0e0-0208-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-10T21:00:43.992000", "message_id": "ec0fc242-01ff-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-10T20:00:38.846000", "message_id": "8739fc6e-01f7-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-10T20:00:38.846000", "message_id": "8739fc6e-01f7-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-10T19:00:35.293000", "message_id": "2357fed8-01ef-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-10T18:00:31.848000", "message_id": "bf8760ae-01e6-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-10T17:00:28.356000", "message_id": "5baca934-01de-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-10T17:00:28.356000", "message_id": "5baca934-01de-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-10T16:00:25.428000", "message_id": "f829573e-01d5-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-10T16:00:25.428000", "message_id": "f829573e-01d5-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-10T15:00:22.207000", "message_id": "94791556-01cd-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-10T14:00:19.139000", "message_id": "30e096c0-01c5-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-10T13:00:15.666000", "message_id": "cd0b4e22-01bc-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-10T12:00:04.247000", "message_id": "64787bf8-01b4-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-10T12:00:04.247000", "message_id": "64787bf8-01b4-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-10T11:00:00.244000", "message_id": "00508f1a-01ac-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-10T10:00:57.803000", "message_id": "c0da9ee6-01a3-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-10T10:00:57.803000", "message_id": "c0da9ee6-01a3-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-10T09:00:54.261000", "message_id": "5cfa9e74-019b-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-10T08:00:51.316000", "message_id": "f973ce14-0192-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-10T07:00:47.611000", "message_id": "957c67c0-018a-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-10T06:00:44.485000", "message_id": "31da4ca8-0182-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-10T06:00:44.485000", "message_id": "31da4ca8-0182-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-10T05:00:41.335000", "message_id": "ce33e7e8-0179-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-10T04:00:38.478000", "message_id": "6abe3f04-0171-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-10T03:00:35.050000", "message_id": "06ed2010-0169-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-10T03:00:35.050000", "message_id": "06ed2010-0169-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-10T02:00:32.184000", "message_id": "a3724400-0160-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-10T02:00:32.184000", "message_id": "a3724400-0160-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-10T01:00:28.505000", "message_id": "3f7cf84e-0158-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-10T01:00:28.505000", "message_id": "3f7cf84e-0158-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-10T00:00:24.195000", "message_id": "db2b26e8-014f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-10T00:00:24.195000", "message_id": "db2b26e8-014f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-09T23:00:20.515000", "message_id": "77319936-0147-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-09T22:00:16.973000", "message_id": "1350f7f2-013f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-09T22:00:16.973000", "message_id": "1350f7f2-013f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-09T21:00:13.447000", "message_id": "af70fcb2-0136-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-09T20:00:10.395000", "message_id": "4bdb6b9a-012e-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-09T20:00:10.395000", "message_id": "4bdb6b9a-012e-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-09T19:00:07.015000", "message_id": "e812ff18-0125-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-09T19:00:07.015000", "message_id": "e812ff18-0125-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-09T18:00:05.372000", "message_id": "855442cc-011d-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-09T18:00:05.372000", "message_id": "855442cc-011d-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-09T17:00:01.510000", "message_id": "214275c2-0115-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-09T16:00:59.732000", "message_id": "e2322c68-010c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-09T15:00:53.147000", "message_id": "7c805334-0104-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-09T14:00:42.305000", "message_id": "144654c4-00fc-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-09T14:00:42.305000", "message_id": "144654c4-00fc-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-09T13:00:31.957000", "message_id": "ac5698fe-00f3-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-09T12:00:21.642000", "message_id": "446c3c10-00eb-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-09T11:00:11.726000", "message_id": "dcbfb93c-00e2-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-09T11:00:11.726000", "message_id": "dcbfb93c-00e2-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-09T10:00:01.992000", "message_id": "752e9e94-00da-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-09T10:00:01.992000", "message_id": "752e9e94-00da-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-09T09:00:53.733000", "message_id": "3241f99e-00d2-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-09T08:00:44.789000", "message_id": "cb26a104-00c9-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-09T07:00:35.639000", "message_id": "63ef5646-00c1-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-09T06:00:27.468000", "message_id": "fd4ad238-00b8-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-09T06:00:27.468000", "message_id": "fd4ad238-00b8-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-09T05:00:17.845000", "message_id": "95c9f5ba-00b0-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-09T04:00:02.363000", "message_id": "2acb71d8-00a8-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-09T03:00:52.992000", "message_id": "e73452ee-009f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-09T02:00:37.336000", "message_id": "7c1af376-0097-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-09T01:00:26.917000", "message_id": "1420f5d4-008f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-09T01:00:26.917000", "message_id": "1420f5d4-008f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-09T00:00:17.075000", "message_id": "ac7e6004-0086-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-08T23:00:07.584000", "message_id": "45124816-007e-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-08T22:01:01.353000", "message_id": "035a29aa-0076-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-08T21:00:52.305000", "message_id": "9c310ec2-006d-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-08T21:00:52.305000", "message_id": "9c310ec2-006d-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-08T20:00:43.553000", "message_id": "3534c388-0065-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-08T19:00:36.809000", "message_id": "cf6c3bc4-005c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-08T18:00:29.390000", "message_id": "693c0ef4-0054-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-08T18:00:29.390000", "message_id": "693c0ef4-0054-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-08T17:00:22.400000", "message_id": "034d6b68-004c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-08T16:00:14.002000", "message_id": "9c87a8ec-0043-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-08T16:00:14.002000", "message_id": "9c87a8ec-0043-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-08T15:00:07.777000", "message_id": "370d5848-003b-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-08T15:00:07.777000", "message_id": "370d5848-003b-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-08T14:01:00.736000", "message_id": "f4d913ac-0032-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-08T13:00:51.701000", "message_id": "8db32468-002a-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-08T12:00:42.620000", "message_id": "26839d48-0022-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-08T12:00:42.620000", "message_id": "26839d48-0022-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-08T11:00:35.807000", "message_id": "c0af9254-0019-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-08T10:00:28.484000", "message_id": "5a8e644e-0011-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-08T09:00:25.631000", "message_id": "f71634a8-0008-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-08T08:00:23.262000", "message_id": "93e81a7a-0000-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-08T07:00:21.325000", "message_id": "30fbfa88-fff8-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-08T06:00:19.373000", "message_id": "ce0ee230-ffef-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-08T05:00:17.549000", "message_id": "6b3432f8-ffe7-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-08T04:00:15.948000", "message_id": "087c0eb8-ffdf-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-08T03:00:13.903000", "message_id": "a57eae2c-ffd6-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-08T03:00:13.903000", "message_id": "a57eae2c-ffd6-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-08T02:00:12.136000", "message_id": "42adb4ee-ffce-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-08T02:00:12.136000", "message_id": "42adb4ee-ffce-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-08T01:00:10.226000", "message_id": "dfc3f8a0-ffc5-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-08T00:00:08.672000", "message_id": "7d126ca8-ffbd-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-08T00:00:08.672000", "message_id": "7d126ca8-ffbd-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-07T23:00:03.895000", "message_id": "1875e28c-ffb5-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-07T22:00:01.395000", "message_id": "b53391fe-ffac-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-07T22:00:01.395000", "message_id": "b53391fe-ffac-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-07T21:00:58.385000", "message_id": "75692a00-ffa4-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-07T20:00:55.809000", "message_id": "12197854-ff9c-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-07T20:00:55.809000", "message_id": "12197854-ff9c-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-07T19:00:51.151000", "message_id": "ad9365a0-ff93-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-07T18:00:49.623000", "message_id": "4ae1597e-ff8b-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-07T18:00:49.623000", "message_id": "4ae1597e-ff8b-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-07T17:00:47.541000", "message_id": "e7deb464-ff82-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-07T17:00:47.541000", "message_id": "e7deb464-ff82-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-07T16:00:45.309000", "message_id": "84c58c66-ff7a-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-07T15:00:43.052000", "message_id": "21a9f7f0-ff72-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-07T14:00:40.827000", "message_id": "be90c0f2-ff69-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-07T13:00:38.046000", "message_id": "5b2458a6-ff61-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-07T13:00:38.046000", "message_id": "5b2458a6-ff61-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-07T12:00:35.572000", "message_id": "f7e67b5a-ff58-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-07T11:00:33.104000", "message_id": "94a9a5f6-ff50-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-07T10:00:28.911000", "message_id": "30650156-ff48-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-07T09:00:26.181000", "message_id": "ccffa664-ff3f-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-07T09:00:26.181000", "message_id": "ccffa664-ff3f-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-07T08:00:23.752000", "message_id": "69c91b64-ff37-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-07T07:00:21.581000", "message_id": "06b9e54c-ff2f-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-07T07:00:21.581000", "message_id": "06b9e54c-ff2f-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-07T06:00:16.384000", "message_id": "a1dc9fc8-ff26-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-07T05:00:13.085000", "message_id": "3e1ffeba-ff1e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-07T04:00:10.468000", "message_id": "dad30d96-ff15-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-07T03:00:06.802000", "message_id": "76d9099c-ff0d-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-07T02:00:03.900000", "message_id": "135d0d1c-ff05-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-07T01:00:01.930000", "message_id": "b068997c-fefc-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-07T00:00:01.212000", "message_id": "4e36caa6-fef4-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-06T23:00:36.421000", "message_id": "016eee54-feec-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-06T22:00:00.283000", "message_id": "8a2008c2-fee3-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-06T21:00:12.892000", "message_id": "2fe058ec-fedb-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-06T20:00:01.615000", "message_id": "c763c144-fed2-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-06T19:00:52.289000", "message_id": "83d235e4-feca-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-06T19:00:52.289000", "message_id": "83d235e4-feca-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-06T18:00:45.926000", "message_id": "1e42dc68-fec2-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-06T18:00:45.926000", "message_id": "1e42dc68-fec2-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-06T17:00:34.384000", "message_id": "b59d8986-feb9-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-06T16:00:25.245000", "message_id": "4e6cb1c2-feb1-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-06T15:00:16.243000", "message_id": "e7444198-fea8-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-06T15:00:16.243000", "message_id": "e7444198-fea8-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-06T14:00:07.271000", "message_id": "8027032c-fea0-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-06T14:00:07.271000", "message_id": "8027032c-fea0-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-06T13:01:00.139000", "message_id": "3de51baa-fe98-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-06T12:00:50.881000", "message_id": "d69df9ba-fe8f-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-06T11:00:42.192000", "message_id": "6faa4d60-fe87-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-06T11:00:42.192000", "message_id": "6faa4d60-fe87-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-06T10:00:33.185000", "message_id": "088827b8-fe7f-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-06T09:00:25.670000", "message_id": "a248154c-fe76-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-06T08:00:15.411000", "message_id": "3a664f8c-fe6e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-06T07:00:06.742000", "message_id": "d377425c-fe65-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-06T06:00:59.199000", "message_id": "90f73098-fe5d-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-06T06:00:59.199000", "message_id": "90f73098-fe5d-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-06T05:00:49.862000", "message_id": "29a2575e-fe55-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-06T05:00:49.862000", "message_id": "29a2575e-fe55-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-06T04:00:41.472000", "message_id": "c2def796-fe4c-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-06T04:00:41.472000", "message_id": "c2def796-fe4c-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-06T03:00:32.542000", "message_id": "5bc72388-fe44-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-06T02:00:23.144000", "message_id": "f4683cde-fe3b-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-06T01:00:14.125000", "message_id": "8d435f6e-fe33-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-06T00:00:05.630000", "message_id": "266ee68a-fe2b-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-06T00:00:05.630000", "message_id": "266ee68a-fe2b-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-05T23:00:58.902000", "message_id": "e46b190a-fe22-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-05T23:00:58.902000", "message_id": "e46b190a-fe22-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-05T22:00:49.240000", "message_id": "7ce446d8-fe1a-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-05T21:00:40.383000", "message_id": "15d87e4e-fe12-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-05T21:00:40.383000", "message_id": "15d87e4e-fe12-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-05T20:00:32.344000", "message_id": "af494986-fe09-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-05T19:00:24.240000", "message_id": "48b05bf4-fe01-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-05T19:00:24.240000", "message_id": "48b05bf4-fe01-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-05T18:00:16.122000", "message_id": "e2159272-fdf8-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-05T17:00:08.210000", "message_id": "7b99e7a8-fdf0-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-05T16:00:00.129000", "message_id": "1503ec1c-fde8-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-05T16:00:00.129000", "message_id": "1503ec1c-fde8-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-05T15:00:53.663000", "message_id": "d328f600-fddf-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-05T14:00:45.823000", "message_id": "6cb785f6-fdd7-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-05T14:00:45.823000", "message_id": "6cb785f6-fdd7-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-05T13:00:37.625000", "message_id": "061085d0-fdcf-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-05T13:00:37.625000", "message_id": "061085d0-fdcf-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-05T12:00:29.415000", "message_id": "9f676702-fdc6-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-05T11:00:21.432000", "message_id": "38e0b4be-fdbe-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-05T11:00:21.432000", "message_id": "38e0b4be-fdbe-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-05T10:00:13.177000", "message_id": "d230eff2-fdb5-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-05T09:00:05.255000", "message_id": "6bb392f0-fdad-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-05T08:00:58.637000", "message_id": "29c06d6c-fda5-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-05T07:00:50.504000", "message_id": "c3235b9e-fd9c-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-05T07:00:50.504000", "message_id": "c3235b9e-fd9c-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-05T06:00:42.344000", "message_id": "5c82028a-fd94-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-05T05:17:47.145000", "message_id": "5d9286c8-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.create.end", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "message": "Success", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.637168", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "image_name": "cirros-0.3.1-x86_64-uec", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-05T05:17:46.796000", "message_id": "5d5c3870-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.update", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "old_state": "building", "old_task_state": "spawning", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05T05:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 05:17:36", "launched_at": "2013-08-05T05:17:46.637168", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "None", "audit_period_ending": "2013-08-05T05:17:46.790953", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-05T05:17:41.456000", "message_id": "5a2d121e-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "spawning", "event_type": "compute.instance.update", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "building", "old_state": "None", "old_task_state": "None", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05T05:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 05:17:36", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "spawning", "audit_period_ending": "2013-08-05T05:17:41.453674", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-05T05:17:39.287000", "message_id": "58e4e22e-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "spawning", "event_type": "compute.instance.update", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "building", "old_state": "building", "old_task_state": "block_device_mapping", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05T05:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 05:17:36", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "spawning", "audit_period_ending": "2013-08-05T05:17:39.173788", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-05T05:17:38.476000", "message_id": "586ec008-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "block_device_mapping", "event_type": "compute.instance.update", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "building", "old_state": "building", "old_task_state": "networking", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05T05:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 05:17:36", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "block_device_mapping", "audit_period_ending": "2013-08-05T05:17:38.396896", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-05T05:17:37.893000", "message_id": "580e9052-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "networking", "event_type": "compute.instance.update", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "building", "old_state": "building", "old_task_state": "None", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05T05:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 05:17:36", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "networking", "audit_period_ending": "2013-08-05T05:17:37.887582", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-05T05:17:37.724000", "message_id": "57f5f448-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.update", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "building", "old_state": "None", "old_task_state": "None", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05T05:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 05:17:36", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "None", "audit_period_ending": "2013-08-05T05:17:37.716843", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-05T05:17:37.724000", "message_id": "57f5f448-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.update", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "building", "old_state": "None", "old_task_state": "None", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05T05:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 05:17:36", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "None", "audit_period_ending": "2013-08-05T05:17:37.716843", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-05T05:17:37.724000", "message_id": "57f5f448-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.update", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "building", "old_state": "None", "old_task_state": "None", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05T05:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 05:17:36", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "None", "audit_period_ending": "2013-08-05T05:17:37.716843", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-05T05:17:37.724000", "message_id": "57f5f448-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.update", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "building", "old_state": "None", "old_task_state": "None", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05T05:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 05:17:36", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "None", "audit_period_ending": "2013-08-05T05:17:37.716843", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-05T05:17:37.590000", "message_id": "57e56cc2-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "scheduling", "event_type": "compute.instance.create.start", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "message": "", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "building", "launched_at": "", "node": "None", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "image_name": "cirros-0.3.1-x86_64-uec", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-05T05:17:37.590000", "message_id": "57e56cc2-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "scheduling", "event_type": "compute.instance.create.start", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "message": "", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "building", "launched_at": "", "node": "None", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "image_name": "cirros-0.3.1-x86_64-uec", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-05T05:17:37.352000", "message_id": "57bafbf4-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.update", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "building", "old_state": "building", "old_task_state": "scheduling", "node": "None", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05T05:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 05:17:36", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "None", "audit_period_ending": "2013-08-05T05:17:37.343905", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-05T05:17:36.732000", "message_id": "5760997a-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "scheduling", "event_type": "compute.instance.update", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "building", "old_state": "None", "old_task_state": "None", "node": "None", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "api.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05T05:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 05:17:36", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "scheduling", "audit_period_ending": "2013-08-05T05:17:36.725146", "os_type": "None"}, "counter_type": "gauge"}], "http://localhost:8777/v2/meters/instance?q.field=resource_id&q.value=6d254988-1431-49d7-9491-e7c27d0bd6cb": [{"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-12T04:00:31.090000", "message_id": "bb37aacc-0303-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "stopped", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-12 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-12T04:00:31.090000", "message_id": "bb37aacc-0303-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "stopped", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-12 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-12T04:00:31.090000", "message_id": "bb37aacc-0303-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "stopped", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-12 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-12T04:00:31.090000", "message_id": "bb37aacc-0303-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "stopped", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-12 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-12T03:00:51.379000", "message_id": "658db9fc-02fb-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "stopped", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-12 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-12T02:00:27.642000", "message_id": "f59d2c34-02f2-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-12 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-12T02:00:27.642000", "message_id": "f59d2c34-02f2-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-12 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-12T02:00:27.642000", "message_id": "f59d2c34-02f2-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-12 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-12T02:00:27.642000", "message_id": "f59d2c34-02f2-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-12 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-12T01:00:47.031000", "message_id": "9f77cd12-02ea-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-12 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-12T00:00:24.703000", "message_id": "3053b11a-02e2-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-12T00:00:24.703000", "message_id": "3053b11a-02e2-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T23:00:42.276000", "message_id": "d90e2d0c-02d9-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T23:00:42.276000", "message_id": "d90e2d0c-02d9-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T22:00:20.999000", "message_id": "6aa09d94-02d1-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T21:00:29.993000", "message_id": "0e3e1f34-02c9-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T21:00:29.993000", "message_id": "0e3e1f34-02c9-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T21:00:29.993000", "message_id": "0e3e1f34-02c9-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T20:00:18.075000", "message_id": "a54f9d5c-02c0-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T19:00:11.738000", "message_id": "3fc5d512-02b8-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T18:00:02.982000", "message_id": "d8ca04c6-02af-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T17:00:49.686000", "message_id": "92e02240-02a7-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T17:00:49.686000", "message_id": "92e02240-02a7-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T17:00:49.686000", "message_id": "92e02240-02a7-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T16:00:45.668000", "message_id": "2ed40bac-029f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T15:00:36.682000", "message_id": "c79ad5fe-0296-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T14:00:27.927000", "message_id": "6093daa2-028e-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T14:00:27.927000", "message_id": "6093daa2-028e-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T14:00:27.927000", "message_id": "6093daa2-028e-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T14:00:27.927000", "message_id": "6093daa2-028e-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T14:00:27.927000", "message_id": "6093daa2-028e-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T13:00:20.195000", "message_id": "fa44a72a-0285-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T13:00:20.195000", "message_id": "fa44a72a-0285-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T12:00:11.498000", "message_id": "934c082c-027d-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T12:00:11.498000", "message_id": "934c082c-027d-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T12:00:11.498000", "message_id": "934c082c-027d-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T12:00:11.498000", "message_id": "934c082c-027d-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T12:00:11.498000", "message_id": "934c082c-027d-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T11:00:02.834000", "message_id": "2c59ae60-0275-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T11:00:02.834000", "message_id": "2c59ae60-0275-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T10:00:29.322000", "message_id": "da5509aa-026c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T10:00:29.322000", "message_id": "da5509aa-026c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T10:00:29.322000", "message_id": "da5509aa-026c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T10:00:29.322000", "message_id": "da5509aa-026c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T09:00:26.282000", "message_id": "76c2e48c-0264-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T09:00:26.282000", "message_id": "76c2e48c-0264-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T09:00:26.282000", "message_id": "76c2e48c-0264-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T08:00:23.204000", "message_id": "132ee43c-025c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T07:00:19.816000", "message_id": "af83d238-0253-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T06:00:16.410000", "message_id": "4b991c2c-024b-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T06:00:16.410000", "message_id": "4b991c2c-024b-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T06:00:16.410000", "message_id": "4b991c2c-024b-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T05:00:05.208000", "message_id": "e31dca60-0242-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T04:00:09.161000", "message_id": "83c4b022-023a-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T03:00:02.127000", "message_id": "1dd4309c-0232-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T02:00:02.839000", "message_id": "bc6aaa1e-0229-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T02:00:02.839000", "message_id": "bc6aaa1e-0229-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T02:00:02.839000", "message_id": "bc6aaa1e-0229-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T01:00:00.580000", "message_id": "595553f0-0221-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T00:00:59.456000", "message_id": "1a9fe48e-0219-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T00:00:59.456000", "message_id": "1a9fe48e-0219-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T00:00:59.456000", "message_id": "1a9fe48e-0219-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T00:00:59.456000", "message_id": "1a9fe48e-0219-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-10T23:00:57.025000", "message_id": "b7697950-0210-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-10T23:00:57.025000", "message_id": "b7697950-0210-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-10T22:00:51.185000", "message_id": "522bd950-0208-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-10T21:00:43.992000", "message_id": "ec35bf10-01ff-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-10T21:00:43.992000", "message_id": "ec35bf10-01ff-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-10T21:00:43.992000", "message_id": "ec35bf10-01ff-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-10T20:00:38.846000", "message_id": "87742f92-01f7-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-10T19:00:35.293000", "message_id": "2373ae30-01ef-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-10T18:00:31.848000", "message_id": "bf9c6026-01e6-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-10T17:00:28.356000", "message_id": "5bc3d802-01de-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-10T16:00:25.428000", "message_id": "f8424654-01d5-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-10T15:00:22.207000", "message_id": "948fbd60-01cd-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-10T14:00:19.139000", "message_id": "30f20da6-01c5-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-10T13:00:15.666000", "message_id": "cd1910fc-01bc-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-10T13:00:15.666000", "message_id": "cd1910fc-01bc-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-10T12:00:04.247000", "message_id": "64af421e-01b4-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-10T12:00:04.247000", "message_id": "64af421e-01b4-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-10T11:00:00.244000", "message_id": "005f52de-01ac-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-10T10:00:57.803000", "message_id": "c0f3f7f6-01a3-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-10T10:00:57.803000", "message_id": "c0f3f7f6-01a3-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-10T10:00:57.803000", "message_id": "c0f3f7f6-01a3-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-10T09:00:54.261000", "message_id": "5d0bc852-019b-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-10T08:00:51.316000", "message_id": "f97eb590-0192-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-10T07:00:47.611000", "message_id": "959702f6-018a-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-10T06:00:44.485000", "message_id": "3208c11e-0182-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-10T05:00:41.335000", "message_id": "ce4c3ad2-0179-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-10T04:00:38.478000", "message_id": "6ade0690-0171-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-10T03:00:35.050000", "message_id": "07055946-0169-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-10T02:00:32.184000", "message_id": "a3936c3e-0160-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-10T01:00:28.505000", "message_id": "3f913a7a-0158-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-10T01:00:28.505000", "message_id": "3f913a7a-0158-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-10T01:00:28.505000", "message_id": "3f913a7a-0158-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-10T00:00:24.195000", "message_id": "db41abd4-014f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-09T23:00:20.515000", "message_id": "774a2be0-0147-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-09T22:00:16.973000", "message_id": "135ff838-013f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-09T21:00:13.447000", "message_id": "af8514c2-0136-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-09T21:00:13.447000", "message_id": "af8514c2-0136-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-09T21:00:13.447000", "message_id": "af8514c2-0136-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-09T21:00:13.447000", "message_id": "af8514c2-0136-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-09T21:00:13.447000", "message_id": "af8514c2-0136-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-09T20:00:10.395000", "message_id": "4bf54f7e-012e-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-09T19:00:07.015000", "message_id": "e82197da-0125-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-09T18:00:05.372000", "message_id": "857a4dc8-011d-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-09T18:00:05.372000", "message_id": "857a4dc8-011d-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-09T18:00:05.372000", "message_id": "857a4dc8-011d-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-09T18:00:05.372000", "message_id": "857a4dc8-011d-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-09T17:00:01.510000", "message_id": "2161a64a-0115-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-09T16:00:59.732000", "message_id": "e24f6314-010c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-09T15:00:53.147000", "message_id": "7c88238e-0104-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-09T14:00:42.305000", "message_id": "14608402-00fc-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-09T13:00:31.957000", "message_id": "ac6a2036-00f3-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-09T13:00:31.957000", "message_id": "ac6a2036-00f3-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-09T12:00:21.642000", "message_id": "447bf588-00eb-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-09T11:00:11.726000", "message_id": "dcd35cda-00e2-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-09T10:00:01.992000", "message_id": "755a80e0-00da-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-09T09:00:53.733000", "message_id": "324643dc-00d2-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-09T08:00:44.789000", "message_id": "cb330fd4-00c9-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-09T07:00:35.639000", "message_id": "6400affe-00c1-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-09T07:00:35.639000", "message_id": "6400affe-00c1-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-09T07:00:35.639000", "message_id": "6400affe-00c1-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-09T07:00:35.639000", "message_id": "6400affe-00c1-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-09T07:00:35.639000", "message_id": "6400affe-00c1-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-09T06:00:27.468000", "message_id": "fd5c206a-00b8-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-09T06:00:27.468000", "message_id": "fd5c206a-00b8-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-09T06:00:27.468000", "message_id": "fd5c206a-00b8-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-09T05:00:17.845000", "message_id": "95ed19fa-00b0-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-09T05:00:17.845000", "message_id": "95ed19fa-00b0-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-09T05:00:17.845000", "message_id": "95ed19fa-00b0-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-09T04:00:02.363000", "message_id": "2adc1ee8-00a8-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-09T04:00:02.363000", "message_id": "2adc1ee8-00a8-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-09T03:00:52.992000", "message_id": "e744dc5e-009f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-09T02:00:37.336000", "message_id": "7c2616d4-0097-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-09T01:00:26.917000", "message_id": "14349b3e-008f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-09T01:00:26.917000", "message_id": "14349b3e-008f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-09T01:00:26.917000", "message_id": "14349b3e-008f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-09T01:00:26.917000", "message_id": "14349b3e-008f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-09T01:00:26.917000", "message_id": "14349b3e-008f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-09T00:00:17.075000", "message_id": "ac98181e-0086-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-08T23:00:07.584000", "message_id": "451ceba4-007e-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-08T23:00:07.584000", "message_id": "451ceba4-007e-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-08T23:00:07.584000", "message_id": "451ceba4-007e-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-08T23:00:07.584000", "message_id": "451ceba4-007e-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-08T22:01:01.353000", "message_id": "038b19e8-0076-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-08T21:00:52.305000", "message_id": "9c429552-006d-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-08T20:00:43.553000", "message_id": "354f6d8c-0065-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-08T19:00:36.809000", "message_id": "cf7ed81a-005c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-08T18:00:29.390000", "message_id": "6950f382-0054-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-08T17:00:22.400000", "message_id": "03665376-004c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-08T16:00:14.002000", "message_id": "9c969eb0-0043-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-08T16:00:14.002000", "message_id": "9c969eb0-0043-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-08T15:00:07.777000", "message_id": "372ac2a2-003b-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-08T14:01:00.736000", "message_id": "f50d5612-0032-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-08T13:00:51.701000", "message_id": "8dc2adfc-002a-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-08T12:00:42.620000", "message_id": "26905cd6-0022-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-08T11:00:35.807000", "message_id": "c0bf64ea-0019-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-08T10:00:28.484000", "message_id": "5aa1dd4e-0011-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-08T09:00:25.631000", "message_id": "f720d926-0008-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-08T09:00:25.631000", "message_id": "f720d926-0008-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-08T08:00:23.262000", "message_id": "93f49c0a-0000-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-08T08:00:23.262000", "message_id": "93f49c0a-0000-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-08T08:00:23.262000", "message_id": "93f49c0a-0000-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-08T07:00:21.325000", "message_id": "310ea840-fff8-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-08T06:00:19.373000", "message_id": "ce1f6c54-ffef-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-08T06:00:19.373000", "message_id": "ce1f6c54-ffef-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-08T06:00:19.373000", "message_id": "ce1f6c54-ffef-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-08T05:00:17.549000", "message_id": "6b4a9eee-ffe7-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-08T05:00:17.549000", "message_id": "6b4a9eee-ffe7-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-08T05:00:17.549000", "message_id": "6b4a9eee-ffe7-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-08T04:00:15.948000", "message_id": "0888f24a-ffdf-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-08T03:00:13.903000", "message_id": "a58ae084-ffd6-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-08T02:00:12.136000", "message_id": "42cca750-ffce-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-08T01:00:10.226000", "message_id": "dfe23fd6-ffc5-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-08T00:00:08.672000", "message_id": "7d2ca532-ffbd-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-07T23:00:03.895000", "message_id": "18806536-ffb5-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-07T23:00:03.895000", "message_id": "18806536-ffb5-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-07T23:00:03.895000", "message_id": "18806536-ffb5-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-07T22:00:01.395000", "message_id": "b5508b6a-ffac-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-07T22:00:01.395000", "message_id": "b5508b6a-ffac-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-07T21:00:58.385000", "message_id": "757f459c-ffa4-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-07T20:00:55.809000", "message_id": "123a5952-ff9c-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-07T19:00:51.151000", "message_id": "adaecd5e-ff93-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-07T19:00:51.151000", "message_id": "adaecd5e-ff93-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-07T19:00:51.151000", "message_id": "adaecd5e-ff93-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-07T19:00:51.151000", "message_id": "adaecd5e-ff93-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-07T19:00:51.151000", "message_id": "adaecd5e-ff93-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-07T18:00:49.623000", "message_id": "4af94750-ff8b-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-07T17:00:47.541000", "message_id": "e7eb86ee-ff82-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-07T16:00:45.309000", "message_id": "84d7a7a2-ff7a-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-07T16:00:45.309000", "message_id": "84d7a7a2-ff7a-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-07T15:00:43.052000", "message_id": "21b4f8e4-ff72-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-07T15:00:43.052000", "message_id": "21b4f8e4-ff72-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-07T15:00:43.052000", "message_id": "21b4f8e4-ff72-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-07T15:00:43.052000", "message_id": "21b4f8e4-ff72-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-07T15:00:43.052000", "message_id": "21b4f8e4-ff72-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-07T14:00:40.827000", "message_id": "bea8d692-ff69-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-07T13:00:38.046000", "message_id": "5b39155c-ff61-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-07T12:00:35.572000", "message_id": "f7fbdacc-ff58-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-07T11:00:33.104000", "message_id": "94bbdae6-ff50-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-07T10:00:28.911000", "message_id": "3075ccf2-ff48-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-07T10:00:28.911000", "message_id": "3075ccf2-ff48-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-07T09:00:26.181000", "message_id": "cd1ff8b0-ff3f-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-07T09:00:26.181000", "message_id": "cd1ff8b0-ff3f-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-07T08:00:23.752000", "message_id": "69cf7482-ff37-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-07T08:00:23.752000", "message_id": "69cf7482-ff37-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-07T07:00:21.581000", "message_id": "06db18b6-ff2f-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-07T06:00:16.384000", "message_id": "a1fd2e14-ff26-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-07T06:00:16.384000", "message_id": "a1fd2e14-ff26-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-07T06:00:16.384000", "message_id": "a1fd2e14-ff26-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-07T05:00:13.085000", "message_id": "3e42b9d2-ff1e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-07T04:00:10.468000", "message_id": "daea8b60-ff15-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-07T03:00:06.802000", "message_id": "76e74426-ff0d-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-07T02:00:03.900000", "message_id": "136e7a70-ff05-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-07T02:00:03.900000", "message_id": "136e7a70-ff05-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-07T01:00:01.930000", "message_id": "b07902a8-fefc-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-07T01:00:01.930000", "message_id": "b07902a8-fefc-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-07T01:00:01.930000", "message_id": "b07902a8-fefc-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-07T01:00:01.930000", "message_id": "b07902a8-fefc-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-07T00:00:01.212000", "message_id": "4e40b6ec-fef4-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-06T23:00:36.421000", "message_id": "0182faca-feec-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-06T22:00:00.283000", "message_id": "8a3471fe-fee3-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-06T22:00:00.283000", "message_id": "8a3471fe-fee3-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-06T22:00:00.283000", "message_id": "8a3471fe-fee3-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-06T22:00:00.283000", "message_id": "8a3471fe-fee3-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-06T22:00:00.283000", "message_id": "8a3471fe-fee3-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-06T21:00:12.892000", "message_id": "2ffcccc0-fedb-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-06T20:00:01.615000", "message_id": "c781147e-fed2-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-06T20:00:01.615000", "message_id": "c781147e-fed2-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-06T19:00:52.289000", "message_id": "83e48dde-feca-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-06T18:00:45.926000", "message_id": "1e59713a-fec2-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-06T17:00:34.384000", "message_id": "b5bce16e-feb9-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-06T16:00:25.245000", "message_id": "4e71e048-feb1-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-06T15:00:16.243000", "message_id": "e75971c6-fea8-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-06T14:00:07.271000", "message_id": "8039ec08-fea0-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-06T13:01:00.139000", "message_id": "3defa958-fe98-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-06T13:01:00.139000", "message_id": "3defa958-fe98-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-06T13:01:00.139000", "message_id": "3defa958-fe98-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-06T12:00:50.881000", "message_id": "d6aef8aa-fe8f-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-06T11:00:42.192000", "message_id": "6fb9f058-fe87-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-06T10:00:33.185000", "message_id": "0896906e-fe7f-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-06T09:00:25.670000", "message_id": "a2538314-fe76-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-06T08:00:15.411000", "message_id": "3a7f0cf2-fe6e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-06T07:00:06.742000", "message_id": "d3868b18-fe65-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-06T06:00:59.199000", "message_id": "910ba30c-fe5d-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-06T05:00:49.862000", "message_id": "29bb7e46-fe55-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-06T04:00:41.472000", "message_id": "c307b348-fe4c-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-06T03:00:32.542000", "message_id": "5bdf10a6-fe44-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-06T02:00:23.144000", "message_id": "f479c6ca-fe3b-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-06T01:00:14.125000", "message_id": "8d692b22-fe33-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-06T00:00:05.630000", "message_id": "268480da-fe2b-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-05T23:00:58.902000", "message_id": "e476306a-fe22-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-05T23:00:58.902000", "message_id": "e476306a-fe22-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-05T22:00:49.240000", "message_id": "7cf5d308-fe1a-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-05T21:00:40.383000", "message_id": "15ef2e32-fe12-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-05T20:00:32.344000", "message_id": "af51004a-fe09-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-05T19:00:24.240000", "message_id": "4940f09c-fe01-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-05T18:00:16.122000", "message_id": "e21dd108-fdf8-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-05T17:00:08.210000", "message_id": "7bb73876-fdf0-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-05T16:00:00.129000", "message_id": "150e4856-fde8-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-05T15:00:53.663000", "message_id": "d337e188-fddf-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-05T14:00:45.823000", "message_id": "6cc896e8-fdd7-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-05T13:00:37.625000", "message_id": "0621857e-fdcf-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-05T12:00:29.415000", "message_id": "9f6d7dcc-fdc6-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-05T12:00:29.415000", "message_id": "9f6d7dcc-fdc6-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-05T12:00:29.415000", "message_id": "9f6d7dcc-fdc6-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-05T11:00:21.432000", "message_id": "38f2ddce-fdbe-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-05T10:00:13.177000", "message_id": "d24359e4-fdb5-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-05T09:00:05.255000", "message_id": "6bc09662-fdad-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-05T08:00:58.637000", "message_id": "29cef1c0-fda5-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-05T08:00:58.637000", "message_id": "29cef1c0-fda5-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-05T08:00:58.637000", "message_id": "29cef1c0-fda5-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-05T07:00:50.504000", "message_id": "c33550ce-fd9c-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-05T06:00:42.344000", "message_id": "5c866578-fd94-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-05T05:17:47.145000", "message_id": "5d9bf83e-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.create.end", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "message": "Success", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.637168", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "image_name": "cirros-0.3.1-x86_64-uec", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-05T05:17:47.145000", "message_id": "5d9bf83e-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.create.end", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "message": "Success", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.637168", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "image_name": "cirros-0.3.1-x86_64-uec", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-05T05:17:47.145000", "message_id": "5d9bf83e-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.create.end", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "message": "Success", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.637168", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "image_name": "cirros-0.3.1-x86_64-uec", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-05T05:17:46.796000", "message_id": "5d6b2326-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.update", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "old_state": "building", "old_task_state": "spawning", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05T05:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 05:17:36", "launched_at": "2013-08-05T05:17:46.637168", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "None", "audit_period_ending": "2013-08-05T05:17:46.790953", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-05T05:17:41.456000", "message_id": "5a33b984-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "spawning", "event_type": "compute.instance.update", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "building", "old_state": "None", "old_task_state": "None", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05T05:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 05:17:36", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "spawning", "audit_period_ending": "2013-08-05T05:17:41.453674", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-05T05:17:39.287000", "message_id": "58ed72d6-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "spawning", "event_type": "compute.instance.update", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "building", "old_state": "building", "old_task_state": "block_device_mapping", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05T05:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 05:17:36", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "spawning", "audit_period_ending": "2013-08-05T05:17:39.173788", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-05T05:17:38.476000", "message_id": "5896fcf8-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "block_device_mapping", "event_type": "compute.instance.update", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "building", "old_state": "building", "old_task_state": "networking", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05T05:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 05:17:36", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "block_device_mapping", "audit_period_ending": "2013-08-05T05:17:38.396896", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-05T05:17:37.893000", "message_id": "5826de50-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "networking", "event_type": "compute.instance.update", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "building", "old_state": "building", "old_task_state": "None", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05T05:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 05:17:36", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "networking", "audit_period_ending": "2013-08-05T05:17:37.887582", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-05T05:17:37.724000", "message_id": "5817a2dc-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.update", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "building", "old_state": "None", "old_task_state": "None", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05T05:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 05:17:36", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "None", "audit_period_ending": "2013-08-05T05:17:37.716843", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-05T05:17:37.590000", "message_id": "580b926c-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "scheduling", "event_type": "compute.instance.create.start", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "message": "", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "building", "launched_at": "", "node": "None", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "image_name": "cirros-0.3.1-x86_64-uec", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-05T05:17:37.590000", "message_id": "580b926c-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "scheduling", "event_type": "compute.instance.create.start", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "message": "", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "building", "launched_at": "", "node": "None", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "image_name": "cirros-0.3.1-x86_64-uec", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-05T05:17:37.590000", "message_id": "580b926c-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "scheduling", "event_type": "compute.instance.create.start", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "message": "", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "building", "launched_at": "", "node": "None", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "image_name": "cirros-0.3.1-x86_64-uec", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-05T05:17:37.352000", "message_id": "57c2fe4e-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.update", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "building", "old_state": "building", "old_task_state": "scheduling", "node": "None", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05T05:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 05:17:36", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "None", "audit_period_ending": "2013-08-05T05:17:37.343905", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-05T05:17:36.732000", "message_id": "57652e36-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "scheduling", "event_type": "compute.instance.update", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "building", "old_state": "None", "old_task_state": "None", "node": "None", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "api.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05T05:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 05:17:36", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "scheduling", "audit_period_ending": "2013-08-05T05:17:36.725146", "os_type": "None"}, "counter_type": "gauge"}], "http://localhost:8777/v2/meters/vcpus?q.field=resource_id&q.value=6d254988-1431-49d7-9491-e7c27d0bd6cb": [{"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-12T04:00:31.090000", "message_id": "bb594790-0303-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "stopped", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-12 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-12T03:00:51.379000", "message_id": "65a5f47c-02fb-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "stopped", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-12 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-12T02:00:27.642000", "message_id": "f5b4b886-02f2-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-12 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-12T01:00:47.031000", "message_id": "9f9808b6-02ea-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-12 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-12T00:00:24.703000", "message_id": "30722b40-02e2-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T23:00:42.276000", "message_id": "d93a6d4a-02d9-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T22:00:20.999000", "message_id": "6ab34f52-02d1-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T21:00:29.993000", "message_id": "0e5eb672-02c9-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T20:00:18.075000", "message_id": "a5669a5c-02c0-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T19:00:11.738000", "message_id": "3fd963de-02b8-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T19:00:11.738000", "message_id": "3fd963de-02b8-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T19:00:11.738000", "message_id": "3fd963de-02b8-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T19:00:11.738000", "message_id": "3fd963de-02b8-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T18:00:02.982000", "message_id": "d8e3684e-02af-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T17:00:49.686000", "message_id": "92f668fc-02a7-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T17:00:49.686000", "message_id": "92f668fc-02a7-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T17:00:49.686000", "message_id": "92f668fc-02a7-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T17:00:49.686000", "message_id": "92f668fc-02a7-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T17:00:49.686000", "message_id": "92f668fc-02a7-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T16:00:45.668000", "message_id": "2ee878e4-029f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T15:00:36.682000", "message_id": "c7acb9ae-0296-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T15:00:36.682000", "message_id": "c7acb9ae-0296-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T15:00:36.682000", "message_id": "c7acb9ae-0296-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T15:00:36.682000", "message_id": "c7acb9ae-0296-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T14:00:27.927000", "message_id": "609ca24a-028e-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T13:00:20.195000", "message_id": "fa609656-0285-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T12:00:11.498000", "message_id": "936f0a34-027d-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T11:00:02.834000", "message_id": "2c76768a-0275-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T10:00:29.322000", "message_id": "da70c474-026c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T09:00:26.282000", "message_id": "76d98412-0264-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T08:00:23.204000", "message_id": "1330cd88-025c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T07:00:19.816000", "message_id": "af867498-0253-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T06:00:16.410000", "message_id": "4bb8bbc2-024b-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T06:00:16.410000", "message_id": "4bb8bbc2-024b-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T05:00:05.208000", "message_id": "e3329580-0242-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T05:00:05.208000", "message_id": "e3329580-0242-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T05:00:05.208000", "message_id": "e3329580-0242-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T05:00:05.208000", "message_id": "e3329580-0242-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T05:00:05.208000", "message_id": "e3329580-0242-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T04:00:09.161000", "message_id": "83dc4eee-023a-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T03:00:02.127000", "message_id": "1dfafbdc-0232-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T03:00:02.127000", "message_id": "1dfafbdc-0232-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T02:00:02.839000", "message_id": "bc7ffedc-0229-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T01:00:00.580000", "message_id": "59613a1c-0221-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T00:00:59.456000", "message_id": "1abed934-0219-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T00:00:59.456000", "message_id": "1abed934-0219-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T00:00:59.456000", "message_id": "1abed934-0219-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-10T23:00:57.025000", "message_id": "b784a3d8-0210-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-10T22:00:51.185000", "message_id": "523e1944-0208-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-10T21:00:43.992000", "message_id": "ec4dc9a2-01ff-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-10T20:00:38.846000", "message_id": "87764458-01f7-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-10T19:00:35.293000", "message_id": "239242c8-01ef-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-10T18:00:31.848000", "message_id": "bfb224d8-01e6-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-10T17:00:28.356000", "message_id": "5bccbb0c-01de-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-10T16:00:25.428000", "message_id": "f8603574-01d5-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-10T15:00:22.207000", "message_id": "94a9e2a8-01cd-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-10T14:00:19.139000", "message_id": "31135538-01c5-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-10T13:00:15.666000", "message_id": "cd312f70-01bc-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-10T12:00:04.247000", "message_id": "64c103d2-01b4-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-10T12:00:04.247000", "message_id": "64c103d2-01b4-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-10T11:00:00.244000", "message_id": "008d894c-01ac-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-10T10:00:57.803000", "message_id": "c11a7e9e-01a3-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-10T09:00:54.261000", "message_id": "5d2738f8-019b-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-10T08:00:51.316000", "message_id": "f99e6b74-0192-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-10T07:00:47.611000", "message_id": "95b19508-018a-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-10T06:00:44.485000", "message_id": "320ab6ea-0182-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-10T05:00:41.335000", "message_id": "ce6cf8a8-0179-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-10T04:00:38.478000", "message_id": "6afbcc48-0171-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-10T03:00:35.050000", "message_id": "07210b82-0169-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-10T02:00:32.184000", "message_id": "a3baee76-0160-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-10T01:00:28.505000", "message_id": "3fb607e2-0158-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-10T00:00:24.195000", "message_id": "db5557e2-014f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-09T23:00:20.515000", "message_id": "776a0bfe-0147-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-09T22:00:16.973000", "message_id": "1378ec8a-013f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-09T21:00:13.447000", "message_id": "afa01a9c-0136-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-09T21:00:13.447000", "message_id": "afa01a9c-0136-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-09T21:00:13.447000", "message_id": "afa01a9c-0136-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-09T20:00:10.395000", "message_id": "4c1ff8fa-012e-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-09T20:00:10.395000", "message_id": "4c1ff8fa-012e-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-09T19:00:07.015000", "message_id": "e83471c0-0125-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-09T18:00:05.372000", "message_id": "85907620-011d-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-09T17:00:01.510000", "message_id": "2178a412-0115-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-09T16:00:59.732000", "message_id": "e26ff96c-010c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-09T16:00:59.732000", "message_id": "e26ff96c-010c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-09T15:00:53.147000", "message_id": "7cac9e6c-0104-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-09T14:00:42.305000", "message_id": "1463199c-00fc-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-09T13:00:31.957000", "message_id": "ac88eb7e-00f3-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-09T12:00:21.642000", "message_id": "449991c4-00eb-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-09T11:00:11.726000", "message_id": "dce12202-00e2-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-09T10:00:01.992000", "message_id": "7573a232-00da-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-09T10:00:01.992000", "message_id": "7573a232-00da-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-09T10:00:01.992000", "message_id": "7573a232-00da-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-09T09:00:53.733000", "message_id": "324a4f0e-00d2-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-09T08:00:44.789000", "message_id": "cb4549ec-00c9-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-09T08:00:44.789000", "message_id": "cb4549ec-00c9-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-09T08:00:44.789000", "message_id": "cb4549ec-00c9-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-09T07:00:35.639000", "message_id": "64258c3e-00c1-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-09T06:00:27.468000", "message_id": "fd8c1fae-00b8-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-09T05:00:17.845000", "message_id": "9602ccbe-00b0-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-09T04:00:02.363000", "message_id": "2af9d3a2-00a8-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-09T03:00:52.992000", "message_id": "e77b752a-009f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-09T03:00:52.992000", "message_id": "e77b752a-009f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-09T02:00:37.336000", "message_id": "7c42252c-0097-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-09T02:00:37.336000", "message_id": "7c42252c-0097-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-09T02:00:37.336000", "message_id": "7c42252c-0097-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-09T01:00:26.917000", "message_id": "144a9920-008f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-09T00:00:17.075000", "message_id": "acbb4370-0086-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-08T23:00:07.584000", "message_id": "4536bd4a-007e-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-08T22:01:01.353000", "message_id": "03b88d92-0076-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-08T21:00:52.305000", "message_id": "9c559530-006d-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-08T20:00:43.553000", "message_id": "35728cfe-0065-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-08T19:00:36.809000", "message_id": "cf98a402-005c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-08T18:00:29.390000", "message_id": "696b86ca-0054-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-08T18:00:29.390000", "message_id": "696b86ca-0054-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-08T18:00:29.390000", "message_id": "696b86ca-0054-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-08T17:00:22.400000", "message_id": "0382d550-004c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-08T16:00:14.002000", "message_id": "9cb1b43e-0043-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-08T15:00:07.777000", "message_id": "37489070-003b-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-08T14:01:00.736000", "message_id": "f513acec-0032-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-08T13:00:51.701000", "message_id": "8dcdd2e0-002a-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-08T12:00:42.620000", "message_id": "26a8c74e-0022-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-08T12:00:42.620000", "message_id": "26a8c74e-0022-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-08T11:00:35.807000", "message_id": "c0d1d828-0019-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-08T10:00:28.484000", "message_id": "5abd7bf8-0011-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-08T09:00:25.631000", "message_id": "f73314b0-0008-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-08T08:00:23.262000", "message_id": "940ef91a-0000-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-08T07:00:21.325000", "message_id": "3129b130-fff8-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-08T07:00:21.325000", "message_id": "3129b130-fff8-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-08T07:00:21.325000", "message_id": "3129b130-fff8-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-08T07:00:21.325000", "message_id": "3129b130-fff8-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-08T07:00:21.325000", "message_id": "3129b130-fff8-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-08T06:00:19.373000", "message_id": "ce428ca2-ffef-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-08T06:00:19.373000", "message_id": "ce428ca2-ffef-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-08T06:00:19.373000", "message_id": "ce428ca2-ffef-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-08T06:00:19.373000", "message_id": "ce428ca2-ffef-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-08T06:00:19.373000", "message_id": "ce428ca2-ffef-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-08T05:00:17.549000", "message_id": "6b703a50-ffe7-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-08T04:00:15.948000", "message_id": "08a7d098-ffdf-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-08T04:00:15.948000", "message_id": "08a7d098-ffdf-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-08T03:00:13.903000", "message_id": "a5a12bf0-ffd6-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-08T02:00:12.136000", "message_id": "42e212e8-ffce-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-08T01:00:10.226000", "message_id": "dff66a42-ffc5-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-08T00:00:08.672000", "message_id": "7d445074-ffbd-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-07T23:00:03.895000", "message_id": "189856d2-ffb5-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-07T22:00:01.395000", "message_id": "b57dfab4-ffac-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-07T21:00:58.385000", "message_id": "7581ded8-ffa4-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-07T20:00:55.809000", "message_id": "125d0d12-ff9c-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-07T19:00:51.151000", "message_id": "adc233a8-ff93-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-07T19:00:51.151000", "message_id": "adc233a8-ff93-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-07T19:00:51.151000", "message_id": "adc233a8-ff93-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-07T19:00:51.151000", "message_id": "adc233a8-ff93-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-07T19:00:51.151000", "message_id": "adc233a8-ff93-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-07T18:00:49.623000", "message_id": "4b110d68-ff8b-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-07T18:00:49.623000", "message_id": "4b110d68-ff8b-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-07T18:00:49.623000", "message_id": "4b110d68-ff8b-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-07T18:00:49.623000", "message_id": "4b110d68-ff8b-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-07T17:00:47.541000", "message_id": "e7fe93e2-ff82-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-07T17:00:47.541000", "message_id": "e7fe93e2-ff82-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-07T17:00:47.541000", "message_id": "e7fe93e2-ff82-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-07T17:00:47.541000", "message_id": "e7fe93e2-ff82-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-07T16:00:45.309000", "message_id": "84ee1942-ff7a-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-07T15:00:43.052000", "message_id": "21cdf358-ff72-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-07T14:00:40.827000", "message_id": "bec8ea40-ff69-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-07T13:00:38.046000", "message_id": "5b4ef48a-ff61-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-07T12:00:35.572000", "message_id": "f80f3c7a-ff58-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-07T11:00:33.104000", "message_id": "94dcd61a-ff50-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-07T11:00:33.104000", "message_id": "94dcd61a-ff50-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-07T11:00:33.104000", "message_id": "94dcd61a-ff50-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-07T10:00:28.911000", "message_id": "30920692-ff48-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-07T10:00:28.911000", "message_id": "30920692-ff48-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-07T10:00:28.911000", "message_id": "30920692-ff48-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-07T10:00:28.911000", "message_id": "30920692-ff48-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-07T10:00:28.911000", "message_id": "30920692-ff48-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-07T09:00:26.181000", "message_id": "cd3c6aa4-ff3f-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-07T08:00:23.752000", "message_id": "69ebdcbc-ff37-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-07T07:00:21.581000", "message_id": "06f148fc-ff2f-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-07T07:00:21.581000", "message_id": "06f148fc-ff2f-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-07T07:00:21.581000", "message_id": "06f148fc-ff2f-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-07T07:00:21.581000", "message_id": "06f148fc-ff2f-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-07T06:00:16.384000", "message_id": "a2173a20-ff26-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-07T05:00:13.085000", "message_id": "3e59224e-ff1e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-07T05:00:13.085000", "message_id": "3e59224e-ff1e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-07T05:00:13.085000", "message_id": "3e59224e-ff1e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-07T05:00:13.085000", "message_id": "3e59224e-ff1e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-07T04:00:10.468000", "message_id": "db0364dc-ff15-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-07T03:00:06.802000", "message_id": "76fa1e20-ff0d-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-07T02:00:03.900000", "message_id": "1393e97c-ff05-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-07T01:00:01.930000", "message_id": "b08d1400-fefc-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-07T01:00:01.930000", "message_id": "b08d1400-fefc-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-07T01:00:01.930000", "message_id": "b08d1400-fefc-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-07T01:00:01.930000", "message_id": "b08d1400-fefc-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-07T01:00:01.930000", "message_id": "b08d1400-fefc-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-07T00:00:01.212000", "message_id": "4e52f294-fef4-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-06T23:00:36.421000", "message_id": "01989b8c-feec-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-06T22:00:00.283000", "message_id": "8a56e8b0-fee3-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-06T21:00:12.892000", "message_id": "3016caf8-fedb-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-06T20:00:01.615000", "message_id": "c7a27b96-fed2-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-06T19:00:52.289000", "message_id": "8401593c-feca-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-06T18:00:45.926000", "message_id": "1e6ec544-fec2-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-06T17:00:34.384000", "message_id": "b5da8296-feb9-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-06T16:00:25.245000", "message_id": "4e75780c-feb1-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-06T15:00:16.243000", "message_id": "e7725330-fea8-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-06T14:00:07.271000", "message_id": "804f0fb6-fea0-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-06T13:01:00.139000", "message_id": "3e072330-fe98-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-06T13:01:00.139000", "message_id": "3e072330-fe98-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-06T12:00:50.881000", "message_id": "d6c4b208-fe8f-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-06T12:00:50.881000", "message_id": "d6c4b208-fe8f-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-06T12:00:50.881000", "message_id": "d6c4b208-fe8f-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-06T12:00:50.881000", "message_id": "d6c4b208-fe8f-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-06T11:00:42.192000", "message_id": "6fd66d96-fe87-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-06T10:00:33.185000", "message_id": "08ad5fba-fe7f-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-06T09:00:25.670000", "message_id": "a2677040-fe76-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-06T08:00:15.411000", "message_id": "3a9d8d1c-fe6e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-06T07:00:06.742000", "message_id": "d39c487c-fe65-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-06T06:00:59.199000", "message_id": "91251f1c-fe5d-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-06T05:00:49.862000", "message_id": "29d729d4-fe55-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-06T04:00:41.472000", "message_id": "c30a01e8-fe4c-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-06T03:00:32.542000", "message_id": "5be33f8c-fe44-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-06T02:00:23.144000", "message_id": "f4a50312-fe3b-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-06T01:00:14.125000", "message_id": "8d74cbc6-fe33-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-06T00:00:05.630000", "message_id": "269c2956-fe2b-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-05T23:00:58.902000", "message_id": "e48d9e6c-fe22-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-05T22:00:49.240000", "message_id": "7d1708a2-fe1a-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-05T21:00:40.383000", "message_id": "1600d4ca-fe12-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-05T20:00:32.344000", "message_id": "af5f4b64-fe09-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-05T19:00:24.240000", "message_id": "4948185e-fe01-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-05T18:00:16.122000", "message_id": "e22f7796-fdf8-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-05T18:00:16.122000", "message_id": "e22f7796-fdf8-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-05T18:00:16.122000", "message_id": "e22f7796-fdf8-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-05T18:00:16.122000", "message_id": "e22f7796-fdf8-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-05T17:00:08.210000", "message_id": "7bc0e9de-fdf0-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-05T16:00:00.129000", "message_id": "151edf7c-fde8-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-05T15:00:53.663000", "message_id": "d3488696-fddf-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-05T15:00:53.663000", "message_id": "d3488696-fddf-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-05T15:00:53.663000", "message_id": "d3488696-fddf-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-05T14:00:45.823000", "message_id": "6cdb747a-fdd7-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-05T13:00:37.625000", "message_id": "0631b106-fdcf-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-05T13:00:37.625000", "message_id": "0631b106-fdcf-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-05T12:00:29.415000", "message_id": "9f821548-fdc6-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-05T11:00:21.432000", "message_id": "39056e80-fdbe-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-05T10:00:13.177000", "message_id": "d257a1ce-fdb5-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-05T09:00:05.255000", "message_id": "6bd11e10-fdad-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-05T08:00:58.637000", "message_id": "29eab798-fda5-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-05T07:00:50.504000", "message_id": "c34296a8-fd9c-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-05T07:00:50.504000", "message_id": "c34296a8-fd9c-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-05T06:00:42.344000", "message_id": "5c8a0750-fd94-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-05T06:00:42.344000", "message_id": "5c8a0750-fd94-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-05T06:00:42.344000", "message_id": "5c8a0750-fd94-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-05T06:00:42.344000", "message_id": "5c8a0750-fd94-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-05T05:17:47.145000", "message_id": "5da72ace-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.create.end", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "message": "Success", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.637168", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "image_name": "cirros-0.3.1-x86_64-uec", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-05T05:17:46.796000", "message_id": "5d7b75fa-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.update", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "old_state": "building", "old_task_state": "spawning", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05T05:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 05:17:36", "launched_at": "2013-08-05T05:17:46.637168", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "None", "audit_period_ending": "2013-08-05T05:17:46.790953", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-05T05:17:46.796000", "message_id": "5d7b75fa-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.update", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "old_state": "building", "old_task_state": "spawning", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05T05:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 05:17:36", "launched_at": "2013-08-05T05:17:46.637168", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "None", "audit_period_ending": "2013-08-05T05:17:46.790953", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-05T05:17:46.796000", "message_id": "5d7b75fa-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.update", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "old_state": "building", "old_task_state": "spawning", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05T05:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 05:17:36", "launched_at": "2013-08-05T05:17:46.637168", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "None", "audit_period_ending": "2013-08-05T05:17:46.790953", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-05T05:17:41.456000", "message_id": "5a3b6eae-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "spawning", "event_type": "compute.instance.update", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "building", "old_state": "None", "old_task_state": "None", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05T05:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 05:17:36", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "spawning", "audit_period_ending": "2013-08-05T05:17:41.453674", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-05T05:17:39.287000", "message_id": "58f9964c-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "spawning", "event_type": "compute.instance.update", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "building", "old_state": "building", "old_task_state": "block_device_mapping", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05T05:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 05:17:36", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "spawning", "audit_period_ending": "2013-08-05T05:17:39.173788", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-05T05:17:38.476000", "message_id": "58b1b89a-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "block_device_mapping", "event_type": "compute.instance.update", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "building", "old_state": "building", "old_task_state": "networking", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05T05:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 05:17:36", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "block_device_mapping", "audit_period_ending": "2013-08-05T05:17:38.396896", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-05T05:17:38.476000", "message_id": "58b1b89a-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "block_device_mapping", "event_type": "compute.instance.update", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "building", "old_state": "building", "old_task_state": "networking", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05T05:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 05:17:36", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "block_device_mapping", "audit_period_ending": "2013-08-05T05:17:38.396896", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-05T05:17:37.893000", "message_id": "585dd874-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "networking", "event_type": "compute.instance.update", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "building", "old_state": "building", "old_task_state": "None", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05T05:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 05:17:36", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "networking", "audit_period_ending": "2013-08-05T05:17:37.887582", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-05T05:17:37.724000", "message_id": "58426f08-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.update", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "building", "old_state": "None", "old_task_state": "None", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05T05:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 05:17:36", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "None", "audit_period_ending": "2013-08-05T05:17:37.716843", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-05T05:17:37.590000", "message_id": "5828f14a-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "scheduling", "event_type": "compute.instance.create.start", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "message": "", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "building", "launched_at": "", "node": "None", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "image_name": "cirros-0.3.1-x86_64-uec", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-05T05:17:37.352000", "message_id": "57ca980c-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.update", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "building", "old_state": "building", "old_task_state": "scheduling", "node": "None", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05T05:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 05:17:36", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "None", "audit_period_ending": "2013-08-05T05:17:37.343905", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-05T05:17:36.732000", "message_id": "5768bdb2-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "scheduling", "event_type": "compute.instance.update", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "building", "old_state": "None", "old_task_state": "None", "node": "None", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "api.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05T05:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 05:17:36", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "scheduling", "audit_period_ending": "2013-08-05T05:17:36.725146", "os_type": "None"}, "counter_type": "gauge"}], "http://localhost:8777/v2/meters/disk.ephemeral.size?q.field=resource_id&q.value=6d254988-1431-49d7-9491-e7c27d0bd6cb": [{"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-12T04:00:31.090000", "message_id": "bb2f2500-0303-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "stopped", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-12 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-12T04:00:31.090000", "message_id": "bb2f2500-0303-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "stopped", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-12 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-12T04:00:31.090000", "message_id": "bb2f2500-0303-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "stopped", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-12 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-12T03:00:51.379000", "message_id": "6581ad24-02fb-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "stopped", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-12 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-12T02:00:27.642000", "message_id": "f59770a0-02f2-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-12 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-12T01:00:47.031000", "message_id": "9f6b8a84-02ea-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-12 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-12T00:00:24.703000", "message_id": "304d9afa-02e2-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-12T00:00:24.703000", "message_id": "304d9afa-02e2-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T23:00:42.276000", "message_id": "d901a79e-02d9-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T23:00:42.276000", "message_id": "d901a79e-02d9-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T22:00:20.999000", "message_id": "6a914bdc-02d1-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T21:00:29.993000", "message_id": "0e26a0d4-02c9-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T21:00:29.993000", "message_id": "0e26a0d4-02c9-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T20:00:18.075000", "message_id": "a547e332-02c0-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T19:00:11.738000", "message_id": "3fbef42c-02b8-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T18:00:02.982000", "message_id": "d8c0a908-02af-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T17:00:49.686000", "message_id": "92d4b324-02a7-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T17:00:49.686000", "message_id": "92d4b324-02a7-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T16:00:45.668000", "message_id": "2eb124a2-029f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T16:00:45.668000", "message_id": "2eb124a2-029f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T15:00:36.682000", "message_id": "c791516e-0296-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T14:00:27.927000", "message_id": "608c5c78-028e-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T13:00:20.195000", "message_id": "fa2f9240-0285-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T13:00:20.195000", "message_id": "fa2f9240-0285-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T12:00:11.498000", "message_id": "933973e2-027d-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T11:00:02.834000", "message_id": "2c4c6e3a-0275-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T11:00:02.834000", "message_id": "2c4c6e3a-0275-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T11:00:02.834000", "message_id": "2c4c6e3a-0275-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T10:00:29.322000", "message_id": "da5036b4-026c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T09:00:26.282000", "message_id": "76bbd2e6-0264-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T08:00:23.204000", "message_id": "132dc034-025c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T07:00:19.816000", "message_id": "af5a73c0-0253-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T07:00:19.816000", "message_id": "af5a73c0-0253-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T07:00:19.816000", "message_id": "af5a73c0-0253-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T06:00:16.410000", "message_id": "4b8c11c6-024b-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T05:00:05.208000", "message_id": "e3193e3c-0242-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T04:00:09.161000", "message_id": "83bb1454-023a-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T03:00:02.127000", "message_id": "1dc5dcae-0232-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T02:00:02.839000", "message_id": "bc6407b8-0229-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T02:00:02.839000", "message_id": "bc6407b8-0229-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T01:00:00.580000", "message_id": "5948e84a-0221-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-11T00:00:59.456000", "message_id": "1a9a7058-0219-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-10T23:00:57.025000", "message_id": "b762e5a4-0210-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-10T23:00:57.025000", "message_id": "b762e5a4-0210-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-10T23:00:57.025000", "message_id": "b762e5a4-0210-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-10T22:00:51.185000", "message_id": "5224563a-0208-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-10T22:00:51.185000", "message_id": "5224563a-0208-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-10T21:00:43.992000", "message_id": "ec172168-01ff-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-10T21:00:43.992000", "message_id": "ec172168-01ff-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-10T20:00:38.846000", "message_id": "8743f192-01f7-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-10T19:00:35.293000", "message_id": "235f3a0e-01ef-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-10T19:00:35.293000", "message_id": "235f3a0e-01ef-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-10T18:00:31.848000", "message_id": "bf905c9a-01e6-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-10T17:00:28.356000", "message_id": "5bb4fad0-01de-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-10T16:00:25.428000", "message_id": "f830706e-01d5-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-10T16:00:25.428000", "message_id": "f830706e-01d5-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-10T15:00:22.207000", "message_id": "94816472-01cd-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-10T14:00:19.139000", "message_id": "30e3df88-01c5-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-10T14:00:19.139000", "message_id": "30e3df88-01c5-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-10T14:00:19.139000", "message_id": "30e3df88-01c5-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-10T13:00:15.666000", "message_id": "cd0f6a3e-01bc-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-10T13:00:15.666000", "message_id": "cd0f6a3e-01bc-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-10T13:00:15.666000", "message_id": "cd0f6a3e-01bc-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-10T12:00:04.247000", "message_id": "649b1622-01b4-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-10T11:00:00.244000", "message_id": "0056b9bc-01ac-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-10T10:00:57.803000", "message_id": "c0e122d4-01a3-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-10T09:00:54.261000", "message_id": "5cfecdfa-019b-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-10T08:00:51.316000", "message_id": "f978b1ea-0192-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-10T07:00:47.611000", "message_id": "9585c068-018a-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-10T07:00:47.611000", "message_id": "9585c068-018a-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-10T06:00:44.485000", "message_id": "31e71910-0182-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-10T06:00:44.485000", "message_id": "31e71910-0182-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-10T05:00:41.335000", "message_id": "ce38cfc4-0179-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-10T05:00:41.335000", "message_id": "ce38cfc4-0179-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-10T05:00:41.335000", "message_id": "ce38cfc4-0179-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-10T04:00:38.478000", "message_id": "6acfc4fe-0171-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-10T03:00:35.050000", "message_id": "06fab112-0169-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-10T02:00:32.184000", "message_id": "a37de986-0160-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-10T02:00:32.184000", "message_id": "a37de986-0160-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-10T01:00:28.505000", "message_id": "3f83c318-0158-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-10T01:00:28.505000", "message_id": "3f83c318-0158-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-10T00:00:24.195000", "message_id": "db350398-014f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-10T00:00:24.195000", "message_id": "db350398-014f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-10T00:00:24.195000", "message_id": "db350398-014f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-09T23:00:20.515000", "message_id": "773a2330-0147-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-09T22:00:16.973000", "message_id": "1357471a-013f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-09T22:00:16.973000", "message_id": "1357471a-013f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-09T21:00:13.447000", "message_id": "af785764-0136-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-09T21:00:13.447000", "message_id": "af785764-0136-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-09T20:00:10.395000", "message_id": "4be1998e-012e-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-09T20:00:10.395000", "message_id": "4be1998e-012e-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-09T19:00:07.015000", "message_id": "e818b1d8-0125-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-09T18:00:05.372000", "message_id": "856e5784-011d-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-09T18:00:05.372000", "message_id": "856e5784-011d-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-09T17:00:01.510000", "message_id": "214ed7d6-0115-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-09T16:00:59.732000", "message_id": "e23e8c60-010c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-09T15:00:53.147000", "message_id": "7c835f70-0104-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-09T14:00:42.305000", "message_id": "1451ec26-00fc-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-09T13:00:31.957000", "message_id": "ac5bb35c-00f3-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-09T12:00:21.642000", "message_id": "447193b8-00eb-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-09T11:00:11.726000", "message_id": "dcc6f8a0-00e2-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-09T11:00:11.726000", "message_id": "dcc6f8a0-00e2-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-09T11:00:11.726000", "message_id": "dcc6f8a0-00e2-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-09T10:00:01.992000", "message_id": "7543d250-00da-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-09T09:00:53.733000", "message_id": "32445d88-00d2-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-09T08:00:44.789000", "message_id": "cb2b82c8-00c9-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-09T07:00:35.639000", "message_id": "63f51248-00c1-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-09T06:00:27.468000", "message_id": "fd54d67a-00b8-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-09T06:00:27.468000", "message_id": "fd54d67a-00b8-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-09T05:00:17.845000", "message_id": "95cfdcaa-00b0-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-09T05:00:17.845000", "message_id": "95cfdcaa-00b0-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-09T05:00:17.845000", "message_id": "95cfdcaa-00b0-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-09T04:00:02.363000", "message_id": "2ad16fde-00a8-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-09T04:00:02.363000", "message_id": "2ad16fde-00a8-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-09T03:00:52.992000", "message_id": "e73c9396-009f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-09T02:00:37.336000", "message_id": "7c222b64-0097-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-09T01:00:26.917000", "message_id": "142b9b1a-008f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-09T00:00:17.075000", "message_id": "ac82eac0-0086-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-08T23:00:07.584000", "message_id": "4517c50c-007e-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-08T23:00:07.584000", "message_id": "4517c50c-007e-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-08T22:01:01.353000", "message_id": "036b6cb0-0076-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-08T21:00:52.305000", "message_id": "9c3a1ab2-006d-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-08T21:00:52.305000", "message_id": "9c3a1ab2-006d-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-08T20:00:43.553000", "message_id": "353b1e2c-0065-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-08T19:00:36.809000", "message_id": "cf7223ea-005c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-08T19:00:36.809000", "message_id": "cf7223ea-005c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-08T18:00:29.390000", "message_id": "694381a2-0054-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-08T17:00:22.400000", "message_id": "0355e23e-004c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-08T17:00:22.400000", "message_id": "0355e23e-004c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-08T17:00:22.400000", "message_id": "0355e23e-004c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-08T16:00:14.002000", "message_id": "9c8d3b2c-0043-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-08T15:00:07.777000", "message_id": "3714899c-003b-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-08T15:00:07.777000", "message_id": "3714899c-003b-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-08T15:00:07.777000", "message_id": "3714899c-003b-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-08T14:01:00.736000", "message_id": "f4efecda-0032-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-08T13:00:51.701000", "message_id": "8dc0f69c-002a-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-08T12:00:42.620000", "message_id": "26881b34-0022-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-08T12:00:42.620000", "message_id": "26881b34-0022-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-08T11:00:35.807000", "message_id": "c0b693ba-0019-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-08T10:00:28.484000", "message_id": "5a95b9ec-0011-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-08T09:00:25.631000", "message_id": "f71c199a-0008-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-08T08:00:23.262000", "message_id": "93ecf662-0000-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-08T07:00:21.325000", "message_id": "3102f040-fff8-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-08T06:00:19.373000", "message_id": "ce1731e2-ffef-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-08T06:00:19.373000", "message_id": "ce1731e2-ffef-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-08T05:00:17.549000", "message_id": "6b3b8d0a-ffe7-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-08T05:00:17.549000", "message_id": "6b3b8d0a-ffe7-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-08T04:00:15.948000", "message_id": "0881f6ca-ffdf-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-08T03:00:13.903000", "message_id": "a584447c-ffd6-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-08T03:00:13.903000", "message_id": "a584447c-ffd6-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-08T03:00:13.903000", "message_id": "a584447c-ffd6-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-08T02:00:12.136000", "message_id": "42c3cd10-ffce-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-08T01:00:10.226000", "message_id": "dfcdbce6-ffc5-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-08T00:00:08.672000", "message_id": "7d1b7a00-ffbd-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-08T00:00:08.672000", "message_id": "7d1b7a00-ffbd-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-07T23:00:03.895000", "message_id": "187a88a0-ffb5-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-07T22:00:01.395000", "message_id": "b537f37a-ffac-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-07T22:00:01.395000", "message_id": "b537f37a-ffac-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-07T22:00:01.395000", "message_id": "b537f37a-ffac-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-07T21:00:58.385000", "message_id": "756e4a1c-ffa4-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-07T21:00:58.385000", "message_id": "756e4a1c-ffa4-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-07T21:00:58.385000", "message_id": "756e4a1c-ffa4-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-07T20:00:55.809000", "message_id": "122457ec-ff9c-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-07T19:00:51.151000", "message_id": "ada7f5e2-ff93-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-07T18:00:49.623000", "message_id": "4aec2b42-ff8b-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-07T18:00:49.623000", "message_id": "4aec2b42-ff8b-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-07T17:00:47.541000", "message_id": "e7e23684-ff82-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-07T17:00:47.541000", "message_id": "e7e23684-ff82-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-07T17:00:47.541000", "message_id": "e7e23684-ff82-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-07T16:00:45.309000", "message_id": "84cb0c72-ff7a-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-07T16:00:45.309000", "message_id": "84cb0c72-ff7a-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-07T15:00:43.052000", "message_id": "21adf7e2-ff72-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-07T14:00:40.827000", "message_id": "be98efa2-ff69-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-07T13:00:38.046000", "message_id": "5b2b39f0-ff61-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-07T13:00:38.046000", "message_id": "5b2b39f0-ff61-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-07T13:00:38.046000", "message_id": "5b2b39f0-ff61-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-07T13:00:38.046000", "message_id": "5b2b39f0-ff61-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-07T12:00:35.572000", "message_id": "f7efd222-ff58-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-07T12:00:35.572000", "message_id": "f7efd222-ff58-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-07T11:00:33.104000", "message_id": "94b2762c-ff50-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-07T10:00:28.911000", "message_id": "306bb938-ff48-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-07T10:00:28.911000", "message_id": "306bb938-ff48-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-07T09:00:26.181000", "message_id": "cd07ea7c-ff3f-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-07T08:00:23.752000", "message_id": "69cc0202-ff37-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-07T07:00:21.581000", "message_id": "06c06fb6-ff2f-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-07T07:00:21.581000", "message_id": "06c06fb6-ff2f-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-07T07:00:21.581000", "message_id": "06c06fb6-ff2f-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-07T06:00:16.384000", "message_id": "a1e0894e-ff26-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-07T05:00:13.085000", "message_id": "3e25fc66-ff1e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-07T05:00:13.085000", "message_id": "3e25fc66-ff1e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-07T05:00:13.085000", "message_id": "3e25fc66-ff1e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-07T04:00:10.468000", "message_id": "dadaec0a-ff15-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-07T03:00:06.802000", "message_id": "76e11966-ff0d-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-07T02:00:03.900000", "message_id": "1364e35c-ff05-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-07T01:00:01.930000", "message_id": "b0714860-fefc-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-07T01:00:01.930000", "message_id": "b0714860-fefc-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-07T00:00:01.212000", "message_id": "4e3b5c10-fef4-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-06T23:00:36.421000", "message_id": "01791852-feec-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-06T23:00:36.421000", "message_id": "01791852-feec-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-06T22:00:00.283000", "message_id": "8a290670-fee3-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-06T22:00:00.283000", "message_id": "8a290670-fee3-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-06T21:00:12.892000", "message_id": "2feccf14-fedb-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-06T20:00:01.615000", "message_id": "c76be5fe-fed2-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-06T19:00:52.289000", "message_id": "83dd6342-feca-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-06T18:00:45.926000", "message_id": "1e4bcb70-fec2-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-06T17:00:34.384000", "message_id": "b5a7d922-feb9-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-06T16:00:25.245000", "message_id": "4e6f91bc-feb1-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-06T15:00:16.243000", "message_id": "e74b839a-fea8-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-06T15:00:16.243000", "message_id": "e74b839a-fea8-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-06T15:00:16.243000", "message_id": "e74b839a-fea8-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-06T14:00:07.271000", "message_id": "802de656-fea0-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-06T13:01:00.139000", "message_id": "3de9eb6c-fe98-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-06T12:00:50.881000", "message_id": "d6a6eec6-fe8f-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-06T11:00:42.192000", "message_id": "6fb19eee-fe87-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-06T11:00:42.192000", "message_id": "6fb19eee-fe87-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-06T10:00:33.185000", "message_id": "088d7740-fe7f-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-06T09:00:25.670000", "message_id": "a24cb0e8-fe76-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-06T08:00:15.411000", "message_id": "3a6e250e-fe6e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-06T07:00:06.742000", "message_id": "d380749e-fe65-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-06T06:00:59.199000", "message_id": "90ffe620-fe5d-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-06T06:00:59.199000", "message_id": "90ffe620-fe5d-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-06T06:00:59.199000", "message_id": "90ffe620-fe5d-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-06T06:00:59.199000", "message_id": "90ffe620-fe5d-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-06T05:00:49.862000", "message_id": "29aae6e4-fe55-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-06T04:00:41.472000", "message_id": "c2e54db2-fe4c-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-06T04:00:41.472000", "message_id": "c2e54db2-fe4c-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-06T03:00:32.542000", "message_id": "5bd173ba-fe44-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-06T02:00:23.144000", "message_id": "f46e119a-fe3b-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-06T01:00:14.125000", "message_id": "8d4646ac-fe33-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-06T01:00:14.125000", "message_id": "8d4646ac-fe33-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-06T01:00:14.125000", "message_id": "8d4646ac-fe33-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-06T00:00:05.630000", "message_id": "267614aa-fe2b-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-06T00:00:05.630000", "message_id": "267614aa-fe2b-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-06T00:00:05.630000", "message_id": "267614aa-fe2b-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-05T23:00:58.902000", "message_id": "e46f14d8-fe22-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-05T23:00:58.902000", "message_id": "e46f14d8-fe22-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-05T23:00:58.902000", "message_id": "e46f14d8-fe22-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-05T22:00:49.240000", "message_id": "7ce9df58-fe1a-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-05T22:00:49.240000", "message_id": "7ce9df58-fe1a-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-05T22:00:49.240000", "message_id": "7ce9df58-fe1a-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-05T21:00:40.383000", "message_id": "15e407a0-fe12-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-05T20:00:32.344000", "message_id": "af4ba4e2-fe09-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-05T19:00:24.240000", "message_id": "493c3b42-fe01-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-05T18:00:16.122000", "message_id": "e218f426-fdf8-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-05T17:00:08.210000", "message_id": "7b9f9d38-fdf0-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-05T16:00:00.129000", "message_id": "150783b8-fde8-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-05T16:00:00.129000", "message_id": "150783b8-fde8-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-05T15:00:53.663000", "message_id": "d330996e-fddf-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-05T15:00:53.663000", "message_id": "d330996e-fddf-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-05T14:00:45.823000", "message_id": "6cbc93ca-fdd7-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-05T14:00:45.823000", "message_id": "6cbc93ca-fdd7-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-05T13:00:37.625000", "message_id": "0617fcfc-fdcf-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-05T13:00:37.625000", "message_id": "0617fcfc-fdcf-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-05T12:00:29.415000", "message_id": "9f6a89b4-fdc6-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-05T11:00:21.432000", "message_id": "38e6d79a-fdbe-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-05T10:00:13.177000", "message_id": "d23dce34-fdb5-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-05T09:00:05.255000", "message_id": "6bb7f3e0-fdad-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-05T08:00:58.637000", "message_id": "29c4202e-fda5-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-05T07:00:50.504000", "message_id": "c32a1c68-fd9c-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-05T07:00:50.504000", "message_id": "c32a1c68-fd9c-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-05T07:00:50.504000", "message_id": "c32a1c68-fd9c-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-05T06:00:42.344000", "message_id": "5c8407f6-fd94-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-05T05:17:47.145000", "message_id": "5d976a26-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.create.end", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "message": "Success", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "launched_at": "2013-08-05T05:17:46.637168", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "image_name": "cirros-0.3.1-x86_64-uec", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-05T05:17:46.796000", "message_id": "5d626fce-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.update", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "active", "old_state": "building", "old_task_state": "spawning", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05T05:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 05:17:36", "launched_at": "2013-08-05T05:17:46.637168", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "None", "audit_period_ending": "2013-08-05T05:17:46.790953", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-05T05:17:41.456000", "message_id": "5a2f9b9c-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "spawning", "event_type": "compute.instance.update", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "building", "old_state": "None", "old_task_state": "None", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05T05:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 05:17:36", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "spawning", "audit_period_ending": "2013-08-05T05:17:41.453674", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-05T05:17:39.287000", "message_id": "58ebbb9e-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "spawning", "event_type": "compute.instance.update", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "building", "old_state": "building", "old_task_state": "block_device_mapping", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05T05:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 05:17:36", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "spawning", "audit_period_ending": "2013-08-05T05:17:39.173788", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-05T05:17:38.476000", "message_id": "587e0ce8-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "block_device_mapping", "event_type": "compute.instance.update", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "building", "old_state": "building", "old_task_state": "networking", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05T05:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 05:17:36", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "block_device_mapping", "audit_period_ending": "2013-08-05T05:17:38.396896", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-05T05:17:37.893000", "message_id": "5819c8dc-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "networking", "event_type": "compute.instance.update", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "building", "old_state": "building", "old_task_state": "None", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05T05:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 05:17:36", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "networking", "audit_period_ending": "2013-08-05T05:17:37.887582", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-05T05:17:37.724000", "message_id": "580be938-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.update", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "building", "old_state": "None", "old_task_state": "None", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05T05:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 05:17:36", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "None", "audit_period_ending": "2013-08-05T05:17:37.716843", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-05T05:17:37.590000", "message_id": "57f7cd4a-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "scheduling", "event_type": "compute.instance.create.start", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "message": "", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "building", "launched_at": "", "node": "None", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "image_name": "cirros-0.3.1-x86_64-uec", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-05T05:17:37.352000", "message_id": "57c00e3c-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.update", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "building", "old_state": "building", "old_task_state": "scheduling", "node": "None", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05T05:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 05:17:36", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "None", "audit_period_ending": "2013-08-05T05:17:37.343905", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "timestamp": "2013-08-05T05:17:36.732000", "message_id": "57633a90-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "scheduling", "event_type": "compute.instance.update", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "building", "old_state": "None", "old_task_state": "None", "node": "None", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "api.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05T05:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 05:17:36", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "scheduling", "audit_period_ending": "2013-08-05T05:17:36.725146", "os_type": "None"}, "counter_type": "gauge"}]} \ No newline at end of file diff --git a/tests/data/map_fixture_16.json b/tests/data/map_fixture_16.json new file mode 100644 index 0000000..da48545 --- /dev/null +++ b/tests/data/map_fixture_16.json @@ -0,0 +1 @@ +{"http://localhost:8777/v2/meters/network?q.field=resource_id&q.value=79b5e163-496c-4ab6-9c21-3b597ed632dc": [{"counter_name": "network", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "79b5e163-496c-4ab6-9c21-3b597ed632dc", "timestamp": "2013-08-05T21:56:01.044000", "message_id": "d11cd69e-fe19-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "network", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"status": "ACTIVE", "name": "two", "admin_state_up": "True", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "host": "network.openstack", "shared": "False", "id": "79b5e163-496c-4ab6-9c21-3b597ed632dc", "event_type": "network.create.end"}, "counter_type": "gauge"}], "http://localhost:8777/v2/meters/network.create?q.field=resource_id&q.value=79b5e163-496c-4ab6-9c21-3b597ed632dc": [{"counter_name": "network.create", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "79b5e163-496c-4ab6-9c21-3b597ed632dc", "timestamp": "2013-08-05T21:56:01.044000", "message_id": "d11dd012-fe19-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "network", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"status": "ACTIVE", "name": "two", "admin_state_up": "True", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "host": "network.openstack", "shared": "False", "id": "79b5e163-496c-4ab6-9c21-3b597ed632dc", "event_type": "network.create.end"}, "counter_type": "delta"}]} \ No newline at end of file diff --git a/tests/data/map_fixture_17.json b/tests/data/map_fixture_17.json new file mode 100644 index 0000000..bbc52f4 --- /dev/null +++ b/tests/data/map_fixture_17.json @@ -0,0 +1 @@ +{"http://localhost:8777/v2/meters/image.download?q.field=resource_id&q.value=7cbf09f5-43ae-4d94-a1e7-47e95fd27017": [{"counter_name": "image.download", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-04T23:58:50.094000", "message_id": "cefe4e0a-fd61-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"receiver_tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "destination_ip": "10.0.2.15", "event_type": "image.send", "bytes_sent": "4955792", "image_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "openstack", "receiver_user_id": "2b8fbe55863d4dfab5310796202b2019", "owner_id": "0c5a6b84fd2a43999c8820060c57da30"}, "counter_type": "delta"}], "http://localhost:8777/v2/meters/image?q.field=resource_id&q.value=7cbf09f5-43ae-4d94-a1e7-47e95fd27017": [{"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-12T04:01:18", "message_id": "d74bec14-0303-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-12T03:51:18", "message_id": "719f102c-0302-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-12T03:41:18", "message_id": "0bee2d40-0301-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-12T03:31:18", "message_id": "a64f3e08-02ff-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-12T03:21:18", "message_id": "409eeee2-02fe-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-12T03:11:17", "message_id": "daf56f7c-02fc-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-12T03:01:17", "message_id": "7538e7d2-02fb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-12T02:51:17", "message_id": "0f96d6f6-02fa-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-12T02:41:17", "message_id": "a9d36d62-02f8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-12T02:31:17", "message_id": "443385ba-02f7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-12T02:21:17", "message_id": "de7d3b36-02f5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-12T02:11:17", "message_id": "78cefdca-02f4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-12T02:01:17", "message_id": "1323c678-02f3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-12T01:51:17", "message_id": "ad7857d6-02f1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-12T01:41:17", "message_id": "47c19d22-02f0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-12T01:31:16", "message_id": "e2188dce-02ee-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-12T01:21:16", "message_id": "7c62b3c0-02ed-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-12T01:11:16", "message_id": "16b86d72-02ec-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-12T01:01:16", "message_id": "b0fb13a0-02ea-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-12T00:51:16", "message_id": "4b569e58-02e9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-12T00:41:16", "message_id": "e59e726c-02e7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-12T00:31:16", "message_id": "7fefc19c-02e6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-12T00:21:16", "message_id": "1a6c396e-02e5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-12T00:11:16", "message_id": "b494c0e4-02e3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-12T00:01:16", "message_id": "4ee50cd2-02e2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T23:51:16", "message_id": "e93ac454-02e0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T23:41:15", "message_id": "8395f110-02df-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T23:31:15", "message_id": "1deaf5f0-02de-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T23:21:15", "message_id": "b83067b4-02dc-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T23:11:15", "message_id": "528ad242-02db-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T23:01:15", "message_id": "ed0813ea-02d9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T22:51:15", "message_id": "872dad1a-02d8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T22:41:15", "message_id": "217c4540-02d7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T22:31:15", "message_id": "bbcfbdae-02d5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T22:21:15", "message_id": "561e0c50-02d4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T22:11:15", "message_id": "f06d26d0-02d2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T22:01:15", "message_id": "8ac33ea6-02d1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T21:51:15", "message_id": "251ab59e-02d0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T21:41:14", "message_id": "bf6e7cb8-02ce-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T21:31:14", "message_id": "59bc3794-02cd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T21:21:14", "message_id": "f410e09e-02cb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T21:11:14", "message_id": "8e60e13c-02ca-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T21:01:14", "message_id": "28b0c704-02c9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T20:51:14", "message_id": "c303e1da-02c7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T20:41:14", "message_id": "5d51dee2-02c6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T20:31:14", "message_id": "f7a6c518-02c4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T20:21:14", "message_id": "91fc13fe-02c3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T20:11:14", "message_id": "2c569df4-02c2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T20:01:14", "message_id": "c6a09bd2-02c0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T19:51:14", "message_id": "60f81702-02bf-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T19:41:13", "message_id": "fb423cae-02bd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T19:31:13", "message_id": "959bdf3c-02bc-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T19:21:13", "message_id": "2fead84c-02bb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T19:11:13", "message_id": "ca36c5a2-02b9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T19:01:13", "message_id": "6481a8e0-02b8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T18:51:13", "message_id": "fed1aa32-02b6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T18:41:13", "message_id": "99258c9a-02b5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T18:31:13", "message_id": "3374ceb6-02b4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T18:21:13", "message_id": "cdc4c66c-02b2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T18:11:13", "message_id": "681847c2-02b1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T18:01:12", "message_id": "026579dc-02b0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T17:51:12", "message_id": "9cbba382-02ae-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T17:41:12", "message_id": "370a3716-02ad-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T17:31:12", "message_id": "d15faabe-02ab-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T17:21:12", "message_id": "6bab9e18-02aa-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T17:11:12", "message_id": "05fcbbd4-02a9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T17:01:12", "message_id": "a05e4208-02a7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T16:51:12", "message_id": "3aad8582-02a6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T16:41:12", "message_id": "d50a9446-02a4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T16:31:12", "message_id": "6f539d88-02a3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T16:21:12", "message_id": "099dd0d6-02a2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T16:11:11", "message_id": "a3f2fd98-02a0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T16:01:11", "message_id": "3e500a7c-029f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T15:51:11", "message_id": "d89ee9ce-029d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T15:41:11", "message_id": "72fd26ae-029c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T15:31:11", "message_id": "0d583510-029b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T15:21:11", "message_id": "a7b7f8ea-0299-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T15:11:11", "message_id": "4201240a-0298-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T15:01:11", "message_id": "dc5094de-0296-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T14:51:11", "message_id": "769bfae4-0295-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T14:41:11", "message_id": "10ef5e76-0294-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T14:31:11", "message_id": "ab3f681a-0292-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T14:21:11", "message_id": "458e58ce-0291-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T14:11:11", "message_id": "dfe015ea-028f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T14:01:11", "message_id": "7a3b5570-028e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T13:51:10", "message_id": "148e9e40-028d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T13:41:10", "message_id": "aee00238-028b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T13:31:10", "message_id": "4933b606-028a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T13:21:10", "message_id": "e381e324-0288-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T13:11:10", "message_id": "7ddac442-0287-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T13:01:10", "message_id": "18311f20-0286-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T12:51:10", "message_id": "b278c544-0284-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T12:41:10", "message_id": "4cce625e-0283-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T12:31:10", "message_id": "e71a0e28-0281-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T12:21:10", "message_id": "8169fb20-0280-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T12:11:10", "message_id": "1bbcba98-027f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T12:01:09", "message_id": "b609947e-027d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T11:51:09", "message_id": "50636830-027c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T11:41:09", "message_id": "eaa689b0-027a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T11:31:09", "message_id": "84fc6540-0279-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T11:21:09", "message_id": "1f4b42e4-0278-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T11:11:09", "message_id": "b99d1a68-0276-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T11:01:09", "message_id": "53ef5218-0275-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T10:51:09", "message_id": "ee3c369e-0273-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T10:41:09", "message_id": "88928d1c-0272-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T10:31:09", "message_id": "22e29d46-0271-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T10:21:08", "message_id": "bd30c97e-026f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T10:11:09", "message_id": "57923cfc-026e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T10:01:08", "message_id": "f1de84a2-026c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T09:51:08", "message_id": "8c2fbb36-026b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T09:41:08", "message_id": "267e7db4-026a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T09:31:08", "message_id": "c0d504e8-0268-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T09:21:08", "message_id": "5b25665c-0267-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T09:11:08", "message_id": "f57dfbda-0265-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T09:01:08", "message_id": "8fcbf2e8-0264-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T08:51:08", "message_id": "2a29990a-0263-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T08:41:08", "message_id": "c47edefe-0261-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T08:31:08", "message_id": "5ed2a780-0260-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T08:21:08", "message_id": "f918aee0-025e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T08:11:07", "message_id": "936a0b44-025d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T08:01:07", "message_id": "2dbd6238-025c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T07:51:07", "message_id": "c80d7226-025a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T07:41:07", "message_id": "625fce02-0259-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T07:31:07", "message_id": "fcb67804-0257-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T07:21:07", "message_id": "97056642-0256-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T07:11:07", "message_id": "314df25c-0255-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T07:01:07", "message_id": "cba67452-0253-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T06:51:07", "message_id": "65f85824-0252-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T06:41:07", "message_id": "0046ead2-0251-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T06:31:07", "message_id": "9a9953c4-024f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T06:21:07", "message_id": "34f7e072-024e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T06:11:06", "message_id": "cf43f370-024c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T06:01:06", "message_id": "69a9fa06-024b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T05:51:06", "message_id": "03ecdd42-024a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T05:41:06", "message_id": "9e3f7eba-0248-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T05:31:06", "message_id": "388935da-0247-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T05:21:06", "message_id": "d2d7c112-0245-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T05:11:06", "message_id": "6d250132-0244-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T05:01:06", "message_id": "077bd776-0243-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T04:51:06", "message_id": "a1d3a2ec-0241-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T04:41:06", "message_id": "3c2196f8-0240-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T04:31:06", "message_id": "d675c352-023e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T04:21:05", "message_id": "70cd2492-023d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T04:11:05", "message_id": "0b13a9ec-023c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T04:01:05", "message_id": "a56cf0c2-023a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T03:51:05", "message_id": "3fbf03b0-0239-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T03:41:05", "message_id": "da193220-0237-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T03:31:05", "message_id": "745f481c-0236-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T03:21:05", "message_id": "0eadc5c6-0235-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T03:11:05", "message_id": "a901203e-0233-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T03:01:05", "message_id": "434b97ac-0232-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T02:51:05", "message_id": "dd9899f6-0230-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T02:41:04", "message_id": "77e1d6fa-022f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T02:31:04", "message_id": "123cce78-022e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T02:21:04", "message_id": "ac88f9fe-022c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T02:11:04", "message_id": "46dcf246-022b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T02:01:04", "message_id": "e135abaa-0229-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T01:51:04", "message_id": "7b823716-0228-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T01:41:04", "message_id": "15e2f0f4-0227-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T01:31:04", "message_id": "b0312042-0225-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T01:21:04", "message_id": "4a6bffee-0224-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T01:11:04", "message_id": "e4bbc6e4-0222-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T01:01:04", "message_id": "7f1865e6-0221-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T00:51:03", "message_id": "19609d64-0220-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T00:41:03", "message_id": "b3b3fafc-021e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T00:31:03", "message_id": "4e065dea-021d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T00:21:03", "message_id": "e854a5ca-021b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T00:11:03", "message_id": "82a5a194-021a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T00:01:03", "message_id": "1cf97344-0219-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T23:51:03", "message_id": "b74ada2a-0217-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T23:41:03", "message_id": "519aa738-0216-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T23:31:03", "message_id": "ebf0dc78-0214-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T23:21:03", "message_id": "8646d4a0-0213-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T23:11:03", "message_id": "2090d800-0212-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T23:01:03", "message_id": "bb221340-0210-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T22:51:02", "message_id": "55463566-020f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T22:41:07", "message_id": "f23c5da2-020d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T22:31:02", "message_id": "89f13354-020c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T22:21:02", "message_id": "243acdf0-020b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T22:11:02", "message_id": "be99c22c-0209-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T22:01:02", "message_id": "58d7bfb2-0208-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T21:51:02", "message_id": "f341c428-0206-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T21:41:02", "message_id": "8d8d6cd2-0205-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T21:31:02", "message_id": "27d9fe60-0204-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T21:21:02", "message_id": "c23ad788-0202-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T21:11:02", "message_id": "5c85ff36-0201-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T21:01:02", "message_id": "f6cb8a9a-01ff-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T20:51:02", "message_id": "913a2624-01fe-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T20:41:01", "message_id": "2b79e9f6-01fd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T20:31:01", "message_id": "c5df114e-01fb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T20:21:01", "message_id": "60187702-01fa-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T20:11:01", "message_id": "fa5cd9ea-01f8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T20:01:01", "message_id": "94ba5a96-01f7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T19:51:01", "message_id": "2f073620-01f6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T19:41:01", "message_id": "c9591d30-01f4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T19:31:01", "message_id": "63b85938-01f3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T19:21:01", "message_id": "fdee211a-01f1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T19:11:01", "message_id": "984dc316-01f0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T19:01:00", "message_id": "329d4bfa-01ef-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T18:51:00", "message_id": "cce1af64-01ed-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T18:41:00", "message_id": "67449c80-01ec-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T18:31:00", "message_id": "0191c346-01eb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T18:21:00", "message_id": "9be027aa-01e9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T18:11:00", "message_id": "362bda40-01e8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T18:01:00", "message_id": "d07cbf30-01e6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T17:51:00", "message_id": "6ad4865a-01e5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T17:41:00", "message_id": "052ad03a-01e4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T17:31:00", "message_id": "9f7539c0-01e2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T17:21:00", "message_id": "39ca36a8-01e1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T17:10:59", "message_id": "d414c608-01df-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T17:00:59", "message_id": "6e6694ae-01de-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T16:50:59", "message_id": "08bbe6dc-01dd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T16:40:59", "message_id": "a30789f0-01db-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T16:30:59", "message_id": "3d5df7d4-01da-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T16:20:59", "message_id": "d7a8a5d4-01d8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T16:10:59", "message_id": "7202a640-01d7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T16:00:59", "message_id": "0c55033e-01d6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T15:50:59", "message_id": "a6aa56a2-01d4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T15:40:59", "message_id": "410706a2-01d3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T15:30:59", "message_id": "db579a34-01d1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T15:20:59", "message_id": "75aabd70-01d0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T15:10:58", "message_id": "0ffa6260-01cf-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T15:00:58", "message_id": "aa4d1fc6-01cd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T14:50:58", "message_id": "44a42f4e-01cc-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T14:40:58", "message_id": "dee7c6c6-01ca-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T14:30:58", "message_id": "7934250a-01c9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T14:20:58", "message_id": "13844c36-01c8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T14:10:58", "message_id": "adda1772-01c6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T14:00:58", "message_id": "483290c6-01c5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T13:50:58", "message_id": "e28236ec-01c3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T13:40:58", "message_id": "7ccb0604-01c2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T13:30:58", "message_id": "17278616-01c1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T13:20:57", "message_id": "b16ed244-01bf-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T13:10:57", "message_id": "4bc261b4-01be-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T13:00:57", "message_id": "e618633c-01bc-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T12:50:57", "message_id": "806290fe-01bb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T12:40:57", "message_id": "1ab8ac26-01ba-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T12:30:57", "message_id": "b5116332-01b8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T12:20:57", "message_id": "4f620a24-01b7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T12:10:57", "message_id": "e9bafe5c-01b5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T12:00:57", "message_id": "8408af74-01b4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T11:50:57", "message_id": "1e59b39a-01b3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T11:40:57", "message_id": "b8ad2dca-01b1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T11:30:56", "message_id": "52f7971e-01b0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T11:20:56", "message_id": "ed494f08-01ae-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T11:10:56", "message_id": "87acfc54-01ad-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T11:00:56", "message_id": "21e41bc4-01ac-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T10:50:56", "message_id": "bc49fa96-01aa-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T10:40:56", "message_id": "569b48b8-01a9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T10:30:56", "message_id": "f0f2a5a2-01a7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T10:20:56", "message_id": "8b3985ce-01a6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T10:10:56", "message_id": "2595dc1e-01a5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T10:00:56", "message_id": "bfe92a34-01a3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T09:50:56", "message_id": "5a31ebf0-01a2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T09:40:56", "message_id": "f486ccea-01a0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T09:30:55", "message_id": "8ee57644-019f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T09:20:55", "message_id": "292b05a4-019e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T09:10:55", "message_id": "c3807672-019c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T09:00:55", "message_id": "5de91536-019b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T08:50:55", "message_id": "f8227414-0199-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T08:40:55", "message_id": "9283b01a-0198-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T08:30:55", "message_id": "2cb8fd5e-0197-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T08:20:55", "message_id": "c717b018-0195-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T08:10:55", "message_id": "6159d7ac-0194-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T08:00:55", "message_id": "fbad9eda-0192-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T07:50:55", "message_id": "960fd120-0191-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T07:40:55", "message_id": "30655cd8-0190-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T07:30:54", "message_id": "cab1ab90-018e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T07:20:54", "message_id": "6507b09c-018d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T07:10:54", "message_id": "ff58883a-018b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T07:00:54", "message_id": "99a68f06-018a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T06:50:54", "message_id": "33fb95b2-0189-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T06:40:54", "message_id": "ce4f2be4-0187-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T06:30:54", "message_id": "68a48e02-0186-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T06:20:54", "message_id": "02f17ad0-0185-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T06:10:54", "message_id": "9d3c63fe-0183-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T06:00:54", "message_id": "378b2852-0182-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T05:50:54", "message_id": "d1e570bc-0180-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T05:40:53", "message_id": "6c36d432-017f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T05:30:53", "message_id": "067ddd26-017e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T05:20:53", "message_id": "a0d6eaae-017c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T05:10:53", "message_id": "3b28c688-017b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T05:00:53", "message_id": "d5840fdc-0179-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T04:50:53", "message_id": "6fc7e7b4-0178-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T04:40:53", "message_id": "0a160ae6-0177-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T04:30:53", "message_id": "a4671182-0175-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T04:20:53", "message_id": "3eb873ea-0174-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T04:10:53", "message_id": "d909a614-0172-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T04:00:53", "message_id": "7365390a-0171-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T03:50:52", "message_id": "0db53818-0170-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T03:40:52", "message_id": "a80a72ea-016e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T03:30:52", "message_id": "425c039c-016d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T03:20:52", "message_id": "dcac08ea-016b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T03:10:52", "message_id": "76fdf018-016a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T03:00:52", "message_id": "1150f928-0169-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T02:50:52", "message_id": "aba14f0c-0167-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T02:40:52", "message_id": "45eefaf2-0166-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T02:30:52", "message_id": "e040675a-0164-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T02:20:52", "message_id": "7a9f2234-0163-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T02:10:52", "message_id": "14f39c68-0162-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T02:00:51", "message_id": "af3f5f84-0160-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T01:50:52", "message_id": "49b25bb8-015f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T01:40:51", "message_id": "e3f5a452-015d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T01:30:51", "message_id": "7e40b99a-015c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T01:20:51", "message_id": "18a14326-015b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T01:10:51", "message_id": "b2f1cf1a-0159-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T01:00:51", "message_id": "4d4939b0-0158-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T00:50:51", "message_id": "e76f9f4a-0156-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T00:40:51", "message_id": "81cd9ea4-0155-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T00:30:51", "message_id": "1c19fe46-0154-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T00:20:51", "message_id": "b666b8ba-0152-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T00:10:50", "message_id": "50c05f80-0151-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T00:00:50", "message_id": "eb0fdd9c-014f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T23:50:50", "message_id": "855c4bee-014e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T23:40:50", "message_id": "1faa89a6-014d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T23:30:50", "message_id": "b9f4b326-014b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T23:20:50", "message_id": "5453a136-014a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T23:10:50", "message_id": "eea1c4ea-0148-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T23:00:50", "message_id": "891cd8f4-0147-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T22:50:50", "message_id": "2345b45c-0146-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T22:40:50", "message_id": "bd8f511e-0144-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T22:30:50", "message_id": "57e4d60a-0143-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T22:20:50", "message_id": "f246f64e-0141-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T22:10:49", "message_id": "8c84f60e-0140-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T22:00:49", "message_id": "26e17102-013f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T21:50:49", "message_id": "c1368550-013d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T21:40:49", "message_id": "5b8776c0-013c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T21:30:49", "message_id": "f5e13334-013a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T21:20:49", "message_id": "90337200-0139-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T21:10:49", "message_id": "2a8c0ddc-0138-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T21:00:49", "message_id": "c4e21e8c-0136-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T20:50:49", "message_id": "5f3097ae-0135-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T20:40:49", "message_id": "f9869fda-0133-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T20:30:49", "message_id": "93cb79d2-0132-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T20:20:49", "message_id": "2e32e156-0131-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T20:10:48", "message_id": "c878ffa4-012f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T20:00:48", "message_id": "62c42590-012e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T19:50:48", "message_id": "fd2132ba-012c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T19:40:48", "message_id": "9769d5fe-012b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T19:30:48", "message_id": "31c41a62-012a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T19:20:48", "message_id": "cc22bc50-0128-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T19:10:48", "message_id": "6667d52c-0127-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T19:00:48", "message_id": "00b0721c-0126-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T18:50:48", "message_id": "9af986da-0124-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T18:40:48", "message_id": "3550b282-0123-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T18:30:48", "message_id": "cf9fdcf2-0121-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T18:20:47", "message_id": "69ed8cf2-0120-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T18:10:47", "message_id": "043c7ab8-011f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T18:00:47", "message_id": "9e893d74-011d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T17:50:47", "message_id": "38df92b2-011c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T17:40:47", "message_id": "d32d6abc-011a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T17:30:47", "message_id": "6d7d232a-0119-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T17:20:47", "message_id": "07d1b2c6-0118-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T17:10:47", "message_id": "a21fa74a-0116-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T17:00:47", "message_id": "3c74ec94-0115-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T16:50:47", "message_id": "d6c04c82-0113-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T16:40:46", "message_id": "71116728-0112-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T16:30:46", "message_id": "0b730c56-0111-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T16:20:46", "message_id": "a5b90d12-010f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T16:10:46", "message_id": "40116bcc-010e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T16:00:46", "message_id": "da60c4f4-010c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T15:50:48", "message_id": "7605be70-010b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T15:40:46", "message_id": "0f57cb4c-010a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T15:30:46", "message_id": "a9721f68-0108-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T15:20:46", "message_id": "43aca4ec-0107-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T15:10:46", "message_id": "de116ca4-0105-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T15:00:46", "message_id": "78541066-0104-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T14:50:46", "message_id": "12a86074-0103-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T14:40:45", "message_id": "acf730f8-0101-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T14:30:45", "message_id": "47446d80-0100-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T14:20:45", "message_id": "e199a834-00fe-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T14:10:45", "message_id": "7bf2d290-00fd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T14:00:45", "message_id": "16374bda-00fc-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T13:50:45", "message_id": "b0918e68-00fa-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T13:40:45", "message_id": "4ad75216-00f9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T13:30:45", "message_id": "e52cc938-00f7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T13:20:45", "message_id": "7fd10406-00f6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T13:10:45", "message_id": "19c4ab0a-00f5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T13:00:45", "message_id": "b41eded4-00f3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T12:50:44", "message_id": "4e671814-00f2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T12:40:44", "message_id": "e8c05a8a-00f0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T12:30:44", "message_id": "8314e7f6-00ef-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T12:20:44", "message_id": "1d610a26-00ee-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T12:10:44", "message_id": "b7b3d5a6-00ec-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T12:00:44", "message_id": "5206f662-00eb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T11:50:44", "message_id": "ec56256e-00e9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T11:40:44", "message_id": "86a71c74-00e8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T11:30:44", "message_id": "210119b6-00e7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T11:20:44", "message_id": "bb4e434c-00e5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T11:10:44", "message_id": "55a4bb76-00e4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T11:00:43", "message_id": "efed45e2-00e2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T10:50:43", "message_id": "8a415108-00e1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T10:40:43", "message_id": "248ee95c-00e0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T10:30:43", "message_id": "bee70554-00de-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T10:20:43", "message_id": "592ef056-00dd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T10:10:43", "message_id": "f385c50a-00db-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T10:00:43", "message_id": "8de9a01e-00da-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T09:50:43", "message_id": "2829eece-00d9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T09:40:43", "message_id": "c2802b0c-00d7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T09:30:43", "message_id": "5cd17456-00d6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T09:20:43", "message_id": "f725ba50-00d4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T09:10:43", "message_id": "917b256a-00d3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T09:00:42", "message_id": "2bcbc91e-00d2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T08:50:42", "message_id": "c6191816-00d0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T08:40:42", "message_id": "606cfb96-00cf-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T08:30:42", "message_id": "fac69348-00cd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T08:20:42", "message_id": "95179322-00cc-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T08:10:42", "message_id": "2f631138-00cb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T08:00:42", "message_id": "c9b2323e-00c9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T07:50:42", "message_id": "64039e9c-00c8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T07:40:42", "message_id": "fe6685f0-00c6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T07:30:42", "message_id": "98ad1b58-00c5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T07:20:41", "message_id": "32f4f804-00c4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T07:10:41", "message_id": "cd443db8-00c2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T07:00:41", "message_id": "67994c34-00c1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T06:50:41", "message_id": "01e5da7a-00c0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T06:40:41", "message_id": "9c3b891e-00be-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T06:30:41", "message_id": "368fe7f0-00bd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T06:20:41", "message_id": "d0d97ada-00bb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T06:10:41", "message_id": "6b2e15d4-00ba-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T06:00:41", "message_id": "058d3c38-00b9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T05:50:41", "message_id": "9fd703f2-00b7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T05:40:41", "message_id": "3a2c6ffc-00b6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T05:30:41", "message_id": "d47a896a-00b4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T05:20:40", "message_id": "6ecce884-00b3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T05:10:40", "message_id": "091f8c54-00b2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T05:00:40", "message_id": "a375d0f8-00b0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T04:50:40", "message_id": "3dd5ea04-00af-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T04:40:40", "message_id": "d82cf5a4-00ad-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T04:30:40", "message_id": "727e945c-00ac-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T04:20:40", "message_id": "0cda894a-00ab-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T04:10:40", "message_id": "a7364c24-00a9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T04:00:40", "message_id": "419c7a56-00a8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T03:50:40", "message_id": "dc25fa0e-00a6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T03:40:40", "message_id": "763d6804-00a5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T03:30:40", "message_id": "10b5d242-00a4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T03:20:40", "message_id": "aae970dc-00a2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T03:10:40", "message_id": "453c0746-00a1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T03:00:40", "message_id": "df990ef8-009f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T02:50:40", "message_id": "79dee804-009e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T02:40:40", "message_id": "14582e92-009d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T02:30:39", "message_id": "ae85fd48-009b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T02:20:39", "message_id": "48da2646-009a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T02:10:39", "message_id": "e3203148-0098-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T02:00:39", "message_id": "7d813a72-0097-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T01:50:39", "message_id": "17bc0646-0096-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T01:40:39", "message_id": "b20a935e-0094-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T01:30:39", "message_id": "4c5e5f0a-0093-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T01:20:39", "message_id": "e6b6a974-0091-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T01:10:39", "message_id": "8101ff9e-0090-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T01:00:39", "message_id": "1b5c297c-008f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T00:50:38", "message_id": "b5a706e8-008d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T00:40:38", "message_id": "4ff16704-008c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T00:30:38", "message_id": "ea4d67dc-008a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T00:20:38", "message_id": "84a7c554-0089-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T00:10:38", "message_id": "1ef3b0f2-0088-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T00:00:38", "message_id": "b943c1d0-0086-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T23:50:38", "message_id": "538e3c86-0085-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T23:40:38", "message_id": "ede63542-0083-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T23:30:38", "message_id": "8832d21a-0082-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T23:20:38", "message_id": "227d7dc2-0081-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T23:10:38", "message_id": "bcd4a884-007f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T23:00:38", "message_id": "57525cc8-007e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T22:50:37", "message_id": "f1772826-007c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T22:40:37", "message_id": "8bceedb6-007b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T22:30:37", "message_id": "2611de76-007a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T22:20:37", "message_id": "c06aaf7c-0078-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T22:10:37", "message_id": "5abc9448-0077-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T22:00:37", "message_id": "f50c76f0-0075-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T21:50:37", "message_id": "8f5e96e0-0074-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T21:40:37", "message_id": "29b41b72-0073-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T21:30:37", "message_id": "c4068ec8-0071-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T21:20:37", "message_id": "5e6412da-0070-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T21:10:36", "message_id": "f8ad2608-006e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T21:00:36", "message_id": "92f41034-006d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T20:50:36", "message_id": "2d47932e-006c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T20:40:36", "message_id": "c797c496-006a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T20:30:36", "message_id": "61efadd0-0069-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T20:20:36", "message_id": "fc38ca90-0067-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T20:10:36", "message_id": "9694b7cc-0066-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T20:00:36", "message_id": "30daec9a-0065-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T19:50:36", "message_id": "cb31a8f8-0063-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T19:40:36", "message_id": "6581237c-0062-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T19:30:35", "message_id": "ffcf3dd0-0060-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T19:20:35", "message_id": "9a1f997c-005f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T19:10:35", "message_id": "347260b0-005e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T19:00:35", "message_id": "cec6adf8-005c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T18:50:35", "message_id": "69134bc0-005b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T18:40:35", "message_id": "0365826c-005a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T18:30:35", "message_id": "9dc44c96-0058-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T18:20:35", "message_id": "3805f734-0057-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T18:10:35", "message_id": "d25c7b98-0055-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T18:00:35", "message_id": "6cb36514-0054-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T17:50:35", "message_id": "07076004-0053-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T17:40:35", "message_id": "a15ec5c2-0051-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T17:30:35", "message_id": "3bb0e602-0050-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T17:20:34", "message_id": "d6009fba-004e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T17:10:34", "message_id": "705102dc-004d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T17:00:34", "message_id": "0a9fc406-004c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T16:50:34", "message_id": "a4f25f20-004a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T16:40:34", "message_id": "3f4eced4-0049-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T16:30:34", "message_id": "d99d332e-0047-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T16:20:34", "message_id": "73f33efc-0046-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T16:10:34", "message_id": "0e4240ea-0045-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T16:00:34", "message_id": "a89958e2-0043-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T15:50:34", "message_id": "42ec5518-0042-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T15:40:34", "message_id": "dd37a1a6-0040-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T15:30:33", "message_id": "778c5bfe-003f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T15:20:33", "message_id": "11e17556-003e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T15:10:33", "message_id": "ac33ae6e-003c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T15:00:33", "message_id": "467e57dc-003b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T14:50:33", "message_id": "e0d42584-0039-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T14:40:33", "message_id": "7b1f918e-0038-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T14:30:33", "message_id": "157759c6-0037-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T14:20:33", "message_id": "afc5476a-0035-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T14:10:33", "message_id": "4a243b92-0034-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T14:00:33", "message_id": "e48fc298-0032-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T13:50:33", "message_id": "7eb95318-0031-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T13:40:32", "message_id": "190e2346-0030-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T13:30:32", "message_id": "b3639c0c-002e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T13:20:32", "message_id": "4dba96d6-002d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T13:10:32", "message_id": "e8075758-002b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T13:00:32", "message_id": "82561954-002a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T12:50:32", "message_id": "1cacd058-0029-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T12:40:32", "message_id": "b6f4b3a8-0027-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T12:30:32", "message_id": "514eff0a-0026-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T12:20:32", "message_id": "eb959a58-0024-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T12:10:32", "message_id": "85e234f6-0023-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T12:00:32", "message_id": "203bbd6c-0022-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T11:50:31", "message_id": "ba8b86c4-0020-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T11:40:32", "message_id": "54f16f8c-001f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T11:30:31", "message_id": "ef46068a-001d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T11:20:31", "message_id": "898ce454-001c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T11:10:31", "message_id": "23f08aac-001b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T11:00:31", "message_id": "be39249a-0019-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T10:50:31", "message_id": "588f9f30-0018-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T10:40:31", "message_id": "f2e980a2-0016-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T10:30:31", "message_id": "8d417670-0015-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T10:20:31", "message_id": "2798b05a-0014-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T10:10:31", "message_id": "c200cc74-0012-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T10:00:31", "message_id": "5c2e8310-0011-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T09:50:31", "message_id": "f67df9d4-000f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T09:40:30", "message_id": "90ca3658-000e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T09:30:30", "message_id": "2b23449e-000d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T09:20:30", "message_id": "c56d619e-000b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T09:10:30", "message_id": "5fbb85ca-000a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T09:00:30", "message_id": "fa131df6-0008-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T08:50:30", "message_id": "9466eb64-0007-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T08:40:30", "message_id": "2ebb4a90-0006-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T08:30:30", "message_id": "c916bb8a-0004-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T08:20:30", "message_id": "635b3e66-0003-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T08:10:30", "message_id": "fdbc6252-0001-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T08:00:30", "message_id": "9803c654-0000-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T07:50:30", "message_id": "324f52fc-ffff-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T07:40:29", "message_id": "cca24db6-fffd-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T07:30:29", "message_id": "66f2c03c-fffc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T07:20:29", "message_id": "014a154c-fffb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T07:10:29", "message_id": "9b95a9ba-fff9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T07:00:29", "message_id": "35e054c2-fff8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T06:50:29", "message_id": "d03df594-fff6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T06:40:29", "message_id": "6a87c640-fff5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T06:30:29", "message_id": "04d6aa6a-fff4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T06:20:29", "message_id": "9f26ec26-fff2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T06:10:29", "message_id": "397b58d6-fff1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T06:00:29", "message_id": "d3d125ac-ffef-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T05:50:28", "message_id": "6e23b590-ffee-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T05:40:28", "message_id": "087f1a5a-ffed-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T05:30:28", "message_id": "a2cc5bce-ffeb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T05:20:28", "message_id": "3d161e06-ffea-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T05:10:28", "message_id": "d76b2e58-ffe8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T05:00:28", "message_id": "71be50fe-ffe7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T04:50:28", "message_id": "0c064bb4-ffe6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T04:40:28", "message_id": "a66334c6-ffe4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T04:30:28", "message_id": "40a9aa12-ffe3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T04:20:28", "message_id": "db03493a-ffe1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T04:10:28", "message_id": "754e8970-ffe0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T04:00:27", "message_id": "0f9c167a-ffdf-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T03:50:27", "message_id": "a9e9edbc-ffdd-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T03:40:27", "message_id": "443f3ed2-ffdc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T03:30:27", "message_id": "de91d906-ffda-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T03:20:27", "message_id": "78e15830-ffd9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T03:10:27", "message_id": "13365752-ffd8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T03:00:27", "message_id": "ad837c42-ffd6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T02:50:27", "message_id": "47d4855e-ffd5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T02:40:27", "message_id": "e222300e-ffd3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T02:30:27", "message_id": "7c789438-ffd2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T02:20:27", "message_id": "16d6e5e0-ffd1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T02:10:26", "message_id": "b11126f4-ffcf-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T02:00:26", "message_id": "4b6975e6-ffce-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T01:50:26", "message_id": "e5b7f44e-ffcc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T01:40:26", "message_id": "800a7d98-ffcb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T01:30:26", "message_id": "1a58afde-ffca-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T01:20:26", "message_id": "b4afda0a-ffc8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T01:10:26", "message_id": "4f03c8e8-ffc7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T01:00:26", "message_id": "e955f080-ffc5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T00:50:26", "message_id": "83a7ebd6-ffc4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T00:40:26", "message_id": "1dfe1e0a-ffc3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T00:30:26", "message_id": "b84a85f4-ffc1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T00:20:26", "message_id": "52e8e4ae-ffc0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T00:10:25", "message_id": "ecedc5da-ffbe-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T00:00:25", "message_id": "8754c7e2-ffbd-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T23:50:25", "message_id": "218f1a4e-ffbc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T23:40:25", "message_id": "bbedc47a-ffba-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T23:30:25", "message_id": "5638e232-ffb9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T23:20:25", "message_id": "f0b04d84-ffb7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T23:10:25", "message_id": "8afb6286-ffb6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T23:00:25", "message_id": "255bd150-ffb5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T22:50:25", "message_id": "bf710db6-ffb3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T22:40:25", "message_id": "59cc28ac-ffb2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T22:30:24", "message_id": "f41e0bb6-ffb0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T22:20:24", "message_id": "8e6628b8-ffaf-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T22:10:24", "message_id": "28c6b546-ffae-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T22:00:24", "message_id": "c30e6b32-ffac-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T21:50:24", "message_id": "5d529d96-ffab-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T21:40:24", "message_id": "f7ac4a06-ffa9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T21:30:24", "message_id": "920699e6-ffa8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T21:20:24", "message_id": "2c4908d8-ffa7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T21:10:24", "message_id": "c693148a-ffa5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T21:00:24", "message_id": "60ec4e2c-ffa4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T20:50:23", "message_id": "fb353270-ffa2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T20:40:23", "message_id": "95881646-ffa1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T20:30:23", "message_id": "2fe19232-ffa0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T20:20:23", "message_id": "ca27bdfa-ff9e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T20:10:23", "message_id": "64770d36-ff9d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T20:00:23", "message_id": "fece4dba-ff9b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T19:50:23", "message_id": "991ad930-ff9a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T19:40:23", "message_id": "337011a0-ff99-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T19:30:23", "message_id": "cdc30f48-ff97-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T19:20:23", "message_id": "6816a494-ff96-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T19:10:22", "message_id": "02645052-ff95-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T19:00:22", "message_id": "9caeb23a-ff93-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T18:50:22", "message_id": "370a58ae-ff92-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T18:40:22", "message_id": "d156c53e-ff90-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T18:30:22", "message_id": "6b9f0716-ff8f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T18:20:22", "message_id": "05f0b92e-ff8e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T18:10:22", "message_id": "a04433c2-ff8c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T18:00:22", "message_id": "3a959ba2-ff8b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T17:50:22", "message_id": "d4e5c9ae-ff89-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T17:40:22", "message_id": "6f3bf5a2-ff88-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T17:30:22", "message_id": "098cff40-ff87-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T17:20:21", "message_id": "a3da7b74-ff85-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T17:10:21", "message_id": "3e307414-ff84-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T17:00:21", "message_id": "d877a17a-ff82-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T16:50:21", "message_id": "72c136a8-ff81-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T16:40:21", "message_id": "0d162530-ff80-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T16:30:21", "message_id": "a77150f2-ff7e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T16:20:21", "message_id": "41b4fb20-ff7d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T16:10:21", "message_id": "dc10142c-ff7b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T16:00:21", "message_id": "7664409a-ff7a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T15:50:21", "message_id": "10b38b08-ff79-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T15:40:20", "message_id": "ab03b838-ff77-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T15:30:20", "message_id": "454e4518-ff76-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T15:20:20", "message_id": "dfa0c73c-ff74-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T15:10:20", "message_id": "79f022d0-ff73-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T15:00:20", "message_id": "14407396-ff72-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T14:50:20", "message_id": "ae947c1e-ff70-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T14:40:20", "message_id": "48e3dab4-ff6f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T14:30:20", "message_id": "e348c346-ff6d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T14:20:20", "message_id": "7d955808-ff6c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T14:10:20", "message_id": "17e652ce-ff6b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T14:00:20", "message_id": "b235d81a-ff69-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T13:50:19", "message_id": "4c849fa2-ff68-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T13:40:20", "message_id": "e6ea6024-ff66-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T13:30:19", "message_id": "8132bfc0-ff65-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T13:20:19", "message_id": "1b825056-ff64-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T13:10:19", "message_id": "b5d85fee-ff62-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T13:00:19", "message_id": "503365ea-ff61-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T12:50:19", "message_id": "ea854318-ff5f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T12:40:19", "message_id": "84d44ac4-ff5e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T12:30:19", "message_id": "1f2e8c9e-ff5d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T12:20:19", "message_id": "b97a55fa-ff5b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T12:10:19", "message_id": "53c8c22e-ff5a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T12:00:19", "message_id": "ee1867a0-ff58-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T11:50:19", "message_id": "886b8618-ff57-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T11:40:18", "message_id": "22c0e96c-ff56-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T11:30:18", "message_id": "bd121a06-ff54-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T11:20:18", "message_id": "57617c70-ff53-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T11:10:18", "message_id": "f1d0a5e4-ff51-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T11:00:18", "message_id": "8c144cde-ff50-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T10:50:18", "message_id": "26698954-ff4f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T10:40:18", "message_id": "c0c24024-ff4d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T10:30:18", "message_id": "5b0aae66-ff4c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T10:20:18", "message_id": "f5606b06-ff4a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T10:10:18", "message_id": "8fbbb0ea-ff49-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T10:00:18", "message_id": "2a1a82ee-ff48-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T09:50:18", "message_id": "c4558bc6-ff46-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T09:40:18", "message_id": "5eaef132-ff45-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T09:30:17", "message_id": "f8efdac4-ff43-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T09:20:17", "message_id": "934a85ee-ff42-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T09:10:17", "message_id": "2d9f951e-ff41-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T09:00:17", "message_id": "c7e2da2a-ff3f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T08:50:17", "message_id": "62348e40-ff3e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T08:40:17", "message_id": "fc8d9ef2-ff3c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T08:30:17", "message_id": "96d62d14-ff3b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T08:20:17", "message_id": "311e0dd0-ff3a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T08:10:17", "message_id": "cb712ec8-ff38-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T08:00:16", "message_id": "65be26ea-ff37-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T07:50:16", "message_id": "000e8264-ff36-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T07:40:16", "message_id": "9a5db7ce-ff34-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T07:30:16", "message_id": "34b9ef24-ff33-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T07:20:16", "message_id": "ceffecc0-ff31-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T07:10:16", "message_id": "694e5750-ff30-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T07:00:16", "message_id": "03a70ba0-ff2f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T06:50:16", "message_id": "9df95a70-ff2d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T06:40:16", "message_id": "3845a7ca-ff2c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T06:30:16", "message_id": "d293a59a-ff2a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T06:20:16", "message_id": "6cf381c0-ff29-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T06:10:16", "message_id": "074c8732-ff28-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T06:00:15", "message_id": "a190749a-ff26-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T05:50:15", "message_id": "3be94532-ff25-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T05:40:15", "message_id": "d631790e-ff23-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T05:30:15", "message_id": "7094897a-ff22-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T05:20:15", "message_id": "0ad8dc40-ff21-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T05:10:15", "message_id": "a5224022-ff1f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T05:00:15", "message_id": "3f7a7bf0-ff1e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T04:50:15", "message_id": "d9cb0faa-ff1c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T04:40:15", "message_id": "741f7066-ff1b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T04:30:15", "message_id": "0e7d6d4a-ff1a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T04:20:15", "message_id": "a8c72bfe-ff18-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T04:10:14", "message_id": "431f2550-ff17-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T04:00:14", "message_id": "dd6c3fe6-ff15-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T03:50:14", "message_id": "77bec61a-ff14-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T03:40:14", "message_id": "1216d66e-ff13-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T03:30:14", "message_id": "ac5c62e0-ff11-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T03:20:14", "message_id": "46b185f2-ff10-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T03:10:14", "message_id": "e117db16-ff0e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T03:00:14", "message_id": "7b5b2a2c-ff0d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T02:50:14", "message_id": "15c33f2a-ff0c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T02:40:14", "message_id": "b0100a2e-ff0a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T02:30:14", "message_id": "4a5e2c84-ff09-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T02:20:14", "message_id": "e4aa4824-ff07-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T02:10:13", "message_id": "7efda706-ff06-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T02:00:13", "message_id": "1948124e-ff05-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T01:50:13", "message_id": "b3a3a242-ff03-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T01:40:13", "message_id": "4decd460-ff02-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T01:30:13", "message_id": "e84322e6-ff00-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T01:20:13", "message_id": "829739a6-feff-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T01:10:13", "message_id": "1ceb8ba8-fefe-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T01:00:13", "message_id": "b7347082-fefc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T00:50:13", "message_id": "5189eef2-fefb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T00:40:13", "message_id": "ebe49e72-fef9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T00:30:13", "message_id": "8624318e-fef8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T00:20:12", "message_id": "2079b404-fef7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T00:10:12", "message_id": "bacaccde-fef5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T00:00:12", "message_id": "551577b4-fef4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T23:50:12", "message_id": "ef748554-fef2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T23:40:12", "message_id": "89c80556-fef1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T23:30:12", "message_id": "24198a96-fef0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T23:20:12", "message_id": "be76c25e-feee-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T23:10:12", "message_id": "58b6a598-feed-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T23:00:12", "message_id": "f33ba6c4-feeb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T22:50:12", "message_id": "8d5c364e-feea-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T22:40:12", "message_id": "27b3f300-fee9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T22:30:12", "message_id": "c205b8a0-fee7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T22:20:11", "message_id": "5c52a06e-fee6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T22:10:11", "message_id": "f6b3dabc-fee4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T22:00:11", "message_id": "911a6c6c-fee3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T21:50:11", "message_id": "2b53a6f6-fee2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T21:40:11", "message_id": "c5ae1b48-fee0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T21:30:11", "message_id": "5ff43874-fedf-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T21:20:11", "message_id": "fa4757be-fedd-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T21:10:11", "message_id": "949a9116-fedc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T21:00:11", "message_id": "2ee2f530-fedb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T20:50:11", "message_id": "c9396a94-fed9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T20:40:11", "message_id": "6397b1ba-fed8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T20:30:11", "message_id": "fde389ee-fed6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T20:20:11", "message_id": "983cac20-fed5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T20:10:10", "message_id": "3280ed16-fed4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T20:00:10", "message_id": "ccea9250-fed2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T19:50:10", "message_id": "673140cc-fed1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T19:40:10", "message_id": "0188d7a4-fed0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T19:30:10", "message_id": "9bde121c-fece-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T19:20:10", "message_id": "36273a62-fecd-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T19:10:10", "message_id": "d078310e-fecb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T19:00:10", "message_id": "6abc6e80-feca-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T18:50:10", "message_id": "05286426-fec9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T18:40:10", "message_id": "9f707e80-fec7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T18:30:09", "message_id": "39b8f67c-fec6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T18:20:09", "message_id": "d41082c8-fec4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T18:10:09", "message_id": "6e5981d8-fec3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T18:00:09", "message_id": "08a0d95a-fec2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T17:50:09", "message_id": "a2f74b12-fec0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T17:40:09", "message_id": "3d52889a-febf-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T17:30:09", "message_id": "d79a7626-febd-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T17:20:09", "message_id": "71f2777a-febc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T17:10:09", "message_id": "0c3a09b2-febb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T17:00:09", "message_id": "a68ae33a-feb9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T16:50:09", "message_id": "40ded6d2-feb8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T16:40:08", "message_id": "db2b1e82-feb6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T16:30:08", "message_id": "757e82f0-feb5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T16:20:08", "message_id": "0fd04bf6-feb4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T16:10:08", "message_id": "aa27753c-feb2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T16:00:08", "message_id": "447c1d56-feb1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T15:50:08", "message_id": "dec61aee-feaf-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T15:40:08", "message_id": "792083a6-feae-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T15:30:08", "message_id": "1367c980-fead-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T15:20:08", "message_id": "adb9c652-feab-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T15:10:08", "message_id": "480917c8-feaa-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T15:00:08", "message_id": "e25b8060-fea8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T14:50:07", "message_id": "7caecba6-fea7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T14:40:07", "message_id": "170f370a-fea6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T14:30:07", "message_id": "b16a43f0-fea4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T14:20:07", "message_id": "4bb99886-fea3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T14:10:07", "message_id": "e607dce2-fea1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T14:00:07", "message_id": "8072ce7e-fea0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T13:50:07", "message_id": "1ab87102-fe9f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T13:40:07", "message_id": "b4fcd732-fe9d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T13:30:07", "message_id": "4f500590-fe9c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T13:20:07", "message_id": "e9a0fb38-fe9a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T13:10:07", "message_id": "83ec7354-fe99-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T13:00:07", "message_id": "1e47f5ce-fe98-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T12:50:07", "message_id": "b89d3230-fe96-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T12:40:07", "message_id": "52f8277e-fe95-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T12:30:06", "message_id": "ed413e76-fe93-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T12:20:06", "message_id": "878e538a-fe92-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T12:10:06", "message_id": "21e8255c-fe91-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T12:00:06", "message_id": "bc356aa4-fe8f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T11:50:06", "message_id": "568bd680-fe8e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T11:40:06", "message_id": "f0e6d902-fe8c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T11:30:07", "message_id": "8bae354a-fe8b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T11:20:06", "message_id": "258147b8-fe8a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T11:10:06", "message_id": "bfcac59e-fe88-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T11:00:06", "message_id": "5a223d22-fe87-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T10:50:05", "message_id": "f474f1d2-fe85-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T10:40:05", "message_id": "8ec8e9e8-fe84-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T10:30:05", "message_id": "29177c32-fe83-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T10:20:05", "message_id": "c369c7a6-fe81-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T10:10:05", "message_id": "5db3c5a2-fe80-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T10:00:05", "message_id": "f80c4360-fe7e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T09:50:05", "message_id": "92581c0c-fe7d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T09:40:05", "message_id": "2caec3ca-fe7c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T09:30:05", "message_id": "c701764a-fe7a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T09:20:05", "message_id": "614be7dc-fe79-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T09:10:05", "message_id": "fba63082-fe77-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T09:00:05", "message_id": "95f5bcf4-fe76-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T08:50:04", "message_id": "30465310-fe75-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T08:40:04", "message_id": "ca9711d6-fe73-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T08:30:04", "message_id": "64e70b9e-fe72-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T08:20:04", "message_id": "ff3ce7a6-fe70-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T08:10:04", "message_id": "998fc3b6-fe6f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T08:00:04", "message_id": "33de8832-fe6e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T07:50:04", "message_id": "ce313fb2-fe6c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T07:40:04", "message_id": "688fa56e-fe6b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T07:30:04", "message_id": "02e15cfe-fe6a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T07:20:04", "message_id": "9d35a82a-fe68-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T07:10:04", "message_id": "37871816-fe67-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T07:00:04", "message_id": "d1d54b9c-fe65-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T06:50:03", "message_id": "6c2414b4-fe64-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T06:40:03", "message_id": "06809976-fe63-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T06:30:03", "message_id": "a0d26146-fe61-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T06:20:03", "message_id": "3b209058-fe60-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T06:10:03", "message_id": "d56ce974-fe5e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T06:00:03", "message_id": "6fbe3d2c-fe5d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T05:50:03", "message_id": "0a110f64-fe5c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T05:40:03", "message_id": "a45b3f60-fe5a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T05:30:03", "message_id": "3eaf4e50-fe59-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T05:20:03", "message_id": "d9049b7e-fe57-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T05:10:03", "message_id": "7358166c-fe56-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T05:00:02", "message_id": "0da6550a-fe55-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T04:50:02", "message_id": "a7f6d46a-fe53-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T04:40:02", "message_id": "424dafe0-fe52-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T04:30:02", "message_id": "dca4646e-fe50-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T04:20:02", "message_id": "76eab80e-fe4f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T04:10:02", "message_id": "11386b9c-fe4e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T04:00:02", "message_id": "ab91bbb4-fe4c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T03:50:02", "message_id": "45de9a40-fe4b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T03:40:02", "message_id": "e0329738-fe49-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T03:30:02", "message_id": "7a7f2a6a-fe48-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T03:20:01", "message_id": "14cbb4e6-fe47-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T03:10:01", "message_id": "af293470-fe45-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T03:00:01", "message_id": "497468d0-fe44-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T02:50:01", "message_id": "e3c54e92-fe42-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T02:40:01", "message_id": "7e11e804-fe41-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T02:30:01", "message_id": "1870f856-fe40-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T02:20:01", "message_id": "b2c368aa-fe3e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T02:10:01", "message_id": "4d10fbb8-fe3d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T02:00:01", "message_id": "e767a560-fe3b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T01:50:01", "message_id": "81b89d06-fe3a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T01:40:01", "message_id": "1c157830-fe39-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T01:30:01", "message_id": "b66902b4-fe37-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T01:20:01", "message_id": "50bdebec-fe36-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T01:10:00", "message_id": "eb08dd6c-fe34-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T01:00:00", "message_id": "8562de6e-fe33-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T00:50:00", "message_id": "1fab2f28-fe32-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T00:40:00", "message_id": "ba008d0e-fe30-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T00:30:00", "message_id": "544d41ce-fe2f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T00:20:00", "message_id": "ee9c22ba-fe2d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T00:10:00", "message_id": "88f35574-fe2c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T00:00:00", "message_id": "23413fda-fe2b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T23:50:00", "message_id": "bd95f1c2-fe29-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T23:40:00", "message_id": "57eab28c-fe28-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T23:30:00", "message_id": "f239a9bc-fe26-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T23:20:00", "message_id": "8c9850e6-fe25-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T23:10:00", "message_id": "270c1b5a-fe24-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T23:00:00", "message_id": "c1618c82-fe22-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T22:49:59", "message_id": "5b7da438-fe21-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T22:39:59", "message_id": "f5cd12be-fe1f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T22:29:59", "message_id": "9026447c-fe1e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T22:19:59", "message_id": "2a782696-fe1d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T22:09:59", "message_id": "c4c51558-fe1b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T21:59:59", "message_id": "5f1760c2-fe1a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T21:49:59", "message_id": "f96586c4-fe18-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T21:39:59", "message_id": "93b2cc7a-fe17-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T21:29:58", "message_id": "2dff9134-fe16-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T21:19:58", "message_id": "c8558452-fe14-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T21:09:58", "message_id": "62a8962c-fe13-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T20:59:58", "message_id": "fcfc819a-fe11-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T20:49:58", "message_id": "974598ec-fe10-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T20:39:58", "message_id": "3195e782-fe0f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T20:29:58", "message_id": "cbe59f5a-fe0d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T20:19:58", "message_id": "663d1ddc-fe0c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T20:09:58", "message_id": "0089496c-fe0b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T19:59:58", "message_id": "9adc79be-fe09-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T19:49:58", "message_id": "3531a4d2-fe08-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T19:39:57", "message_id": "cf8ceab6-fe06-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T19:29:57", "message_id": "69d99ecc-fe05-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T19:19:57", "message_id": "042b8c6c-fe04-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T19:09:57", "message_id": "9e7e09b8-fe02-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T18:59:57", "message_id": "38ce1b04-fe01-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T18:49:57", "message_id": "d31f7b1e-fdff-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T18:39:57", "message_id": "6d770850-fdfe-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T18:29:57", "message_id": "07cbbede-fdfd-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T18:19:57", "message_id": "a21eca14-fdfb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T18:09:57", "message_id": "3c7f2cf4-fdfa-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T17:59:57", "message_id": "d6c5e8a4-fdf8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T17:49:57", "message_id": "7119c7f6-fdf7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T17:39:56", "message_id": "0b6cafaa-fdf6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T17:29:56", "message_id": "a5c2dfc2-fdf4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T17:19:56", "message_id": "401204d8-fdf3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T17:09:56", "message_id": "da66f108-fdf1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T16:59:56", "message_id": "74b81234-fdf0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T16:49:56", "message_id": "0f093752-fdef-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T16:39:56", "message_id": "a9628512-fded-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T16:29:56", "message_id": "43c1f392-fdec-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T16:19:56", "message_id": "de0ec5da-fdea-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T16:09:56", "message_id": "7867dcfe-fde9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T15:59:56", "message_id": "12bc253c-fde8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T15:49:56", "message_id": "ad15f114-fde6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T15:39:56", "message_id": "47670246-fde5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T15:29:56", "message_id": "e1b6c644-fde3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T15:19:56", "message_id": "7c2cd7b0-fde2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T15:09:55", "message_id": "165695ee-fde1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T14:59:55", "message_id": "b0a5a2ea-fddf-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T14:49:55", "message_id": "4affbc92-fdde-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T14:39:55", "message_id": "e54db698-fddc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T14:29:55", "message_id": "7fa07c1e-fddb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T14:19:55", "message_id": "19efac92-fdda-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T14:09:55", "message_id": "b4453dae-fdd8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T13:59:55", "message_id": "4e91e4ea-fdd7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T13:49:55", "message_id": "e8e5a2d6-fdd5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T13:39:55", "message_id": "833499f2-fdd4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T13:29:54", "message_id": "1d82b978-fdd3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T13:19:54", "message_id": "b7d5c31e-fdd1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T13:09:54", "message_id": "522809d8-fdd0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T12:59:54", "message_id": "ec7b10fe-fdce-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T12:49:54", "message_id": "86cb65d4-fdcd-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T12:39:54", "message_id": "211b53da-fdcc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T12:29:54", "message_id": "bb69f39e-fdca-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T12:19:54", "message_id": "55bd2490-fdc9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T12:09:54", "message_id": "f0073e0c-fdc7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T11:59:54", "message_id": "8a5df7d6-fdc6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T11:49:54", "message_id": "24b5621c-fdc5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T11:39:54", "message_id": "bf0950c8-fdc3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T11:29:53", "message_id": "59589866-fdc2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T11:19:53", "message_id": "f3ac8db6-fdc0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T11:09:53", "message_id": "8dffa77e-fdbf-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T10:59:53", "message_id": "28520fbc-fdbe-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T10:49:53", "message_id": "c2a75ccc-fdbc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T10:39:53", "message_id": "5cf5579a-fdbb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T10:29:53", "message_id": "f74ffcca-fdb9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T10:19:53", "message_id": "919f585e-fdb8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T10:09:53", "message_id": "2c00b08e-fdb7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T09:59:53", "message_id": "c65268e6-fdb5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T09:49:53", "message_id": "60a9669e-fdb4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T09:39:53", "message_id": "faf9904a-fdb2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T09:29:53", "message_id": "954e22e8-fdb1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T09:19:52", "message_id": "2f9e4366-fdb0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T09:09:52", "message_id": "c9eb127a-fdae-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T08:59:52", "message_id": "643c6560-fdad-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T08:49:52", "message_id": "fea216d8-fdab-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T08:39:52", "message_id": "98e95104-fdaa-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T08:29:52", "message_id": "3337df02-fda9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T08:19:52", "message_id": "cd856b9e-fda7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T08:09:52", "message_id": "67ef274e-fda6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T07:59:52", "message_id": "022e0cf0-fda5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T07:49:52", "message_id": "9c7ecb2a-fda3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T07:39:52", "message_id": "36d5bdc0-fda2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T07:29:51", "message_id": "d1221498-fda0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T07:19:51", "message_id": "6b75d75c-fd9f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T07:09:52", "message_id": "05ed6a68-fd9e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T06:59:51", "message_id": "a0139646-fd9c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T06:49:51", "message_id": "3a69d658-fd9b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T06:39:51", "message_id": "d4b0e8d4-fd99-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T06:29:51", "message_id": "6f05d1ee-fd98-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T06:19:51", "message_id": "09525e68-fd97-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T06:09:51", "message_id": "a3a8a032-fd95-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T05:59:51", "message_id": "3dfc8984-fd94-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T05:49:51", "message_id": "d84e4f42-fd92-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T05:39:50", "message_id": "729f901c-fd91-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T05:29:50", "message_id": "0cf574a8-fd90-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T05:19:50", "message_id": "a745ffa2-fd8e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T05:09:50", "message_id": "41943f80-fd8d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T04:59:50", "message_id": "dbe7d0da-fd8b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T04:49:50", "message_id": "764a01b8-fd8a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T04:39:50", "message_id": "10a33cb8-fd89-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T04:29:50", "message_id": "ab047e18-fd87-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T04:19:50", "message_id": "453b4f36-fd86-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T04:09:50", "message_id": "df8141e2-fd84-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T03:59:49", "message_id": "79c1bd60-fd83-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T03:49:49", "message_id": "141fd31c-fd82-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T03:39:49", "message_id": "ae7827d6-fd80-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T03:29:49", "message_id": "48d280e4-fd7f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T03:19:49", "message_id": "e330c210-fd7d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T03:09:49", "message_id": "7d884bc8-fd7c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T02:59:49", "message_id": "17c83196-fd7b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T02:49:49", "message_id": "b2077962-fd79-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T02:39:49", "message_id": "4c8650c8-fd78-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T02:29:49", "message_id": "e6cb2e58-fd76-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T02:19:49", "message_id": "812953c8-fd75-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T02:09:49", "message_id": "1b836a32-fd74-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T01:59:49", "message_id": "b5c1e18e-fd72-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T01:49:49", "message_id": "5011303e-fd71-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T01:39:49", "message_id": "ea61dea6-fd6f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T01:29:49", "message_id": "84db52a2-fd6e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T01:19:49", "message_id": "1f3bcbe4-fd6d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T01:09:48", "message_id": "b97b9d08-fd6b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T00:59:48", "message_id": "53c692f2-fd6a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T00:49:48", "message_id": "ee0830a2-fd68-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T00:39:48", "message_id": "886a382c-fd67-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T00:29:48", "message_id": "22c8a202-fd66-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T00:19:48", "message_id": "bd1b5716-fd64-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T00:09:48", "message_id": "578cf784-fd63-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-04T23:59:48", "message_id": "f1cffbc2-fd61-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-04T23:49:48", "message_id": "8c145f18-fd60-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-04T23:39:05", "message_id": "0d1fe804-fd5f-11e2-b8cf-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-04T23:29:05", "message_id": "a78bcc3e-fd5d-11e2-b8cf-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}], "http://localhost:8777/v2/meters/image.serve?q.field=resource_id&q.value=7cbf09f5-43ae-4d94-a1e7-47e95fd27017": [{"counter_name": "image.serve", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-04T23:58:50.094000", "message_id": "cf004110-fd61-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"receiver_tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "destination_ip": "10.0.2.15", "event_type": "image.send", "bytes_sent": "4955792", "image_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "openstack", "receiver_user_id": "2b8fbe55863d4dfab5310796202b2019", "owner_id": "0c5a6b84fd2a43999c8820060c57da30"}, "counter_type": "delta"}], "http://localhost:8777/v2/meters/image.size?q.field=resource_id&q.value=7cbf09f5-43ae-4d94-a1e7-47e95fd27017": [{"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-12T04:01:18", "message_id": "d74ce60a-0303-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-12T03:51:18", "message_id": "719fa87a-0302-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-12T03:41:18", "message_id": "0beebcba-0301-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-12T03:31:18", "message_id": "a64fe1fa-02ff-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-12T03:21:18", "message_id": "409fbfe8-02fe-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-12T03:11:17", "message_id": "daf632ea-02fc-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-12T03:01:17", "message_id": "75399e2a-02fb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-12T02:51:17", "message_id": "0f978358-02fa-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-12T02:41:17", "message_id": "a9d42eaa-02f8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-12T02:31:17", "message_id": "44343cbc-02f7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-12T02:21:17", "message_id": "de7dff12-02f5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-12T02:11:17", "message_id": "78cf9b40-02f4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-12T02:01:17", "message_id": "1324a458-02f3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-12T01:51:17", "message_id": "ad7931ce-02f1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-12T01:41:17", "message_id": "47c25eba-02f0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-12T01:31:17", "message_id": "e219608c-02ee-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-12T01:21:16", "message_id": "7c636cac-02ed-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-12T01:11:16", "message_id": "16b97d48-02ec-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-12T01:01:16", "message_id": "b0fbb8d2-02ea-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-12T00:51:16", "message_id": "4b57f24e-02e9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-12T00:41:16", "message_id": "e59fb596-02e7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-12T00:31:16", "message_id": "7ff0dadc-02e6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-12T00:21:16", "message_id": "1a6cea4e-02e5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-12T00:11:16", "message_id": "b4960a6c-02e3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-12T00:01:16", "message_id": "4ee5d40a-02e2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T23:51:16", "message_id": "e93b8aba-02e0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T23:41:15", "message_id": "839698cc-02df-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T23:31:15", "message_id": "1debb4ea-02de-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T23:21:15", "message_id": "b8312456-02dc-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T23:11:15", "message_id": "528b94de-02db-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T23:01:15", "message_id": "ed08c04c-02d9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T22:51:15", "message_id": "872e4b1c-02d8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T22:41:15", "message_id": "217d3c98-02d7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T22:31:15", "message_id": "bbd0a174-02d5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T22:21:15", "message_id": "561ef8d6-02d4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T22:11:15", "message_id": "f06df6e6-02d2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T22:01:15", "message_id": "8ac45642-02d1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T21:51:15", "message_id": "251b8910-02d0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T21:41:14", "message_id": "bf6f2708-02ce-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T21:31:14", "message_id": "59bcee96-02cd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T21:21:14", "message_id": "f4120208-02cb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T21:11:14", "message_id": "8e6192d0-02ca-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T21:01:14", "message_id": "28b1f64c-02c9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T20:51:14", "message_id": "c304c208-02c7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T20:41:14", "message_id": "5d52aafc-02c6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T20:31:14", "message_id": "f7a7bf90-02c4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T20:21:14", "message_id": "91fd1b82-02c3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T20:11:14", "message_id": "2c57f906-02c2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T20:01:14", "message_id": "c6a166c0-02c0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T19:51:14", "message_id": "60f8eec0-02bf-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T19:41:13", "message_id": "fb4303fa-02bd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T19:31:13", "message_id": "959c97f6-02bc-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T19:21:13", "message_id": "2febce50-02bb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T19:11:13", "message_id": "ca376dae-02b9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T19:01:13", "message_id": "648292aa-02b8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T18:51:13", "message_id": "fed23a4c-02b6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T18:41:13", "message_id": "992656a2-02b5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T18:31:13", "message_id": "337579d8-02b4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T18:21:13", "message_id": "cdc5db7e-02b2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T18:11:13", "message_id": "681914e0-02b1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T18:01:12", "message_id": "02666b12-02b0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T17:51:12", "message_id": "9cbca62e-02ae-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T17:41:12", "message_id": "370b0574-02ad-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T17:31:12", "message_id": "d16084ac-02ab-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T17:21:12", "message_id": "6bacba46-02aa-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T17:11:12", "message_id": "05fd5c60-02a9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T17:01:12", "message_id": "a05f5292-02a7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T16:51:12", "message_id": "3aae5728-02a6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T16:41:12", "message_id": "d50b5c6e-02a4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T16:31:12", "message_id": "6f54a250-02a3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T16:21:12", "message_id": "099e7392-02a2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T16:11:11", "message_id": "a3f3ce62-02a0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T16:01:11", "message_id": "3e50e2bc-029f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T15:51:11", "message_id": "d89fbcdc-029d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T15:41:11", "message_id": "72fdd414-029c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T15:31:11", "message_id": "0d58e758-029b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T15:21:11", "message_id": "a7b89fa2-0299-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T15:11:11", "message_id": "4201dce2-0298-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T15:01:11", "message_id": "dc516cf6-0296-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T14:51:11", "message_id": "769ca4bc-0295-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T14:41:11", "message_id": "10effb56-0294-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T14:31:11", "message_id": "ab400cb6-0292-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T14:21:11", "message_id": "458f3c58-0291-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T14:11:11", "message_id": "dfe0c54e-028f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T14:01:11", "message_id": "7a3c0c5e-028e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T13:51:10", "message_id": "148f37ce-028d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T13:41:10", "message_id": "aee11e02-028b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T13:31:10", "message_id": "49345d90-028a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T13:21:10", "message_id": "e382ac46-0288-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T13:11:10", "message_id": "7ddbbb22-0287-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T13:01:10", "message_id": "1831d532-0286-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T12:51:10", "message_id": "b2796a4e-0284-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T12:41:10", "message_id": "4ccfa5ce-0283-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T12:31:10", "message_id": "e71b05bc-0281-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T12:21:10", "message_id": "816af034-0280-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T12:11:10", "message_id": "1bbd7636-027f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T12:01:09", "message_id": "b60a923e-027d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T11:51:09", "message_id": "5064368e-027c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T11:41:09", "message_id": "eaa7307c-027a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T11:31:09", "message_id": "84fd1ad0-0279-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T11:21:09", "message_id": "1f4c2fb0-0278-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T11:11:09", "message_id": "b99dc2e2-0276-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T11:01:09", "message_id": "53eff5ce-0275-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T10:51:09", "message_id": "ee3cf52a-0273-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T10:41:09", "message_id": "88932a60-0272-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T10:31:09", "message_id": "22e3c108-0271-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T10:21:09", "message_id": "bd31e07a-026f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T10:11:09", "message_id": "5793704a-026e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T10:01:08", "message_id": "f1df4d56-026c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T09:51:08", "message_id": "8c30db74-026b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T09:41:08", "message_id": "267f9db6-026a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T09:31:08", "message_id": "c0d5ae98-0268-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T09:21:08", "message_id": "5b2621aa-0267-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T09:11:08", "message_id": "f57eba70-0265-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T09:01:08", "message_id": "8fccf42c-0264-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T08:51:08", "message_id": "2a2a7a46-0263-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T08:41:08", "message_id": "c47fbf40-0261-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T08:31:08", "message_id": "5ed3626a-0260-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T08:21:08", "message_id": "f919566a-025e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T08:11:07", "message_id": "936b3424-025d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T08:01:07", "message_id": "2dbe243e-025c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T07:51:07", "message_id": "c80e37ce-025a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T07:41:07", "message_id": "62607398-0259-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T07:31:07", "message_id": "fcb73122-0257-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T07:21:07", "message_id": "9706fbce-0256-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T07:11:07", "message_id": "314eaa58-0255-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T07:01:07", "message_id": "cba92e9a-0253-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T06:51:07", "message_id": "65f91bba-0252-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T06:41:07", "message_id": "0047adf0-0251-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T06:31:07", "message_id": "9a9a344c-024f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T06:21:07", "message_id": "34f8906c-024e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T06:11:06", "message_id": "cf44cf7a-024c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T06:01:06", "message_id": "69aaccd8-024b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T05:51:06", "message_id": "03edd81e-024a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T05:41:06", "message_id": "9e40349a-0248-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T05:31:06", "message_id": "3889de18-0247-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T05:21:06", "message_id": "d2d8943e-0245-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T05:11:06", "message_id": "6d25fd4e-0244-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T05:01:06", "message_id": "077d29c8-0243-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T04:51:06", "message_id": "a1d4c640-0241-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T04:41:06", "message_id": "3c226a9c-0240-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T04:31:06", "message_id": "d676a236-023e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T04:21:06", "message_id": "70cde0f8-023d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T04:11:05", "message_id": "0b1454aa-023c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T04:01:05", "message_id": "a56de982-023a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T03:51:05", "message_id": "3fbfed34-0239-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T03:41:05", "message_id": "da1a2af4-0237-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T03:31:05", "message_id": "746063a0-0236-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T03:21:05", "message_id": "0eaf092c-0235-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T03:11:05", "message_id": "a90228da-0233-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T03:01:05", "message_id": "434c378e-0232-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T02:51:05", "message_id": "dd99c70e-0230-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T02:41:04", "message_id": "77e2c844-022f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T02:31:04", "message_id": "123dabae-022e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T02:21:04", "message_id": "ac89a3ae-022c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T02:11:04", "message_id": "46de0ee2-022b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T02:01:04", "message_id": "e13b4a88-0229-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T01:51:04", "message_id": "7b82c7f8-0228-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T01:41:04", "message_id": "15e43acc-0227-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T01:31:04", "message_id": "b03242ba-0225-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T01:21:04", "message_id": "4a6c9d1e-0224-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T01:11:04", "message_id": "e4bc7c1a-0222-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T01:01:04", "message_id": "7f1930fc-0221-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T00:51:03", "message_id": "1961d2d8-0220-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T00:41:03", "message_id": "b3b4b42e-021e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T00:31:03", "message_id": "4e070be6-021d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T00:21:03", "message_id": "e8557126-021b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T00:11:03", "message_id": "82a64842-021a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-11T00:01:03", "message_id": "1cfa83ec-0219-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T23:51:03", "message_id": "b74b89a2-0217-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T23:41:03", "message_id": "519b6cf4-0216-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T23:31:03", "message_id": "ebf1c4da-0214-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T23:21:03", "message_id": "86485730-0213-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T23:11:03", "message_id": "20916e46-0212-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T23:01:03", "message_id": "bb236d76-0210-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T22:51:02", "message_id": "55470cca-020f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T22:41:07", "message_id": "f23e0a94-020d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T22:31:02", "message_id": "89f27fca-020c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T22:21:02", "message_id": "243bc1f6-020b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T22:11:02", "message_id": "be9b59ac-0209-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T22:01:02", "message_id": "58d86502-0208-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T21:51:02", "message_id": "f3427d8c-0206-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T21:41:02", "message_id": "8d8e30fe-0205-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T21:31:02", "message_id": "27db4248-0204-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T21:21:02", "message_id": "c23bae10-0202-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T21:11:02", "message_id": "5c86ce20-0201-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T21:01:02", "message_id": "f6cc957a-01ff-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T20:51:02", "message_id": "913b5d1e-01fe-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T20:41:01", "message_id": "2b7a97de-01fd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T20:31:01", "message_id": "c5e13780-01fb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T20:21:01", "message_id": "6019c3fa-01fa-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T20:11:01", "message_id": "fa5d8fd4-01f8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T20:01:01", "message_id": "94bb022a-01f7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T19:51:01", "message_id": "2f07d0a8-01f6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T19:41:01", "message_id": "c95a1348-01f4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T19:31:01", "message_id": "63b94974-01f3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T19:21:01", "message_id": "fdeed2f4-01f1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T19:11:01", "message_id": "984f0794-01f0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T19:01:00", "message_id": "329df10e-01ef-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T18:51:00", "message_id": "cce2c372-01ed-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T18:41:00", "message_id": "67457a7e-01ec-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T18:31:00", "message_id": "01927520-01eb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T18:21:00", "message_id": "9be0ca0c-01e9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T18:11:00", "message_id": "362c7806-01e8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T18:01:00", "message_id": "d07d69f8-01e6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T17:51:00", "message_id": "6ad53d70-01e5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T17:41:00", "message_id": "052b6be4-01e4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T17:31:00", "message_id": "9f761264-01e2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T17:21:00", "message_id": "39cb30bc-01e1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T17:10:59", "message_id": "d415b676-01df-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T17:00:59", "message_id": "6e67621c-01de-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T16:50:59", "message_id": "08bc85e2-01dd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T16:40:59", "message_id": "a3092b2a-01db-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T16:30:59", "message_id": "3d5ee176-01da-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T16:20:59", "message_id": "d7a9ef98-01d8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T16:10:59", "message_id": "7203da6a-01d7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T16:00:59", "message_id": "0c55ed62-01d6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T15:50:59", "message_id": "a6ab2492-01d4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T15:40:59", "message_id": "4107dbfe-01d3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T15:30:59", "message_id": "db588502-01d1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T15:20:59", "message_id": "75ab673e-01d0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T15:10:58", "message_id": "0ffb6f02-01cf-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T15:00:58", "message_id": "aa4f3a36-01cd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T14:50:58", "message_id": "44a4fca8-01cc-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T14:40:58", "message_id": "dee8bbda-01ca-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T14:30:58", "message_id": "793524c8-01c9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T14:20:58", "message_id": "13851954-01c8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T14:10:58", "message_id": "addaa8a4-01c6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T14:00:58", "message_id": "48333ae4-01c5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T13:50:58", "message_id": "e2830176-01c3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T13:40:58", "message_id": "7ccc0acc-01c2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T13:30:58", "message_id": "1728a870-01c1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T13:20:57", "message_id": "b170626c-01bf-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T13:10:57", "message_id": "4bc333be-01be-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T13:00:57", "message_id": "e61970a6-01bc-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T12:50:57", "message_id": "80636fa6-01bb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T12:40:57", "message_id": "1ab9761a-01ba-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T12:30:57", "message_id": "b512259c-01b8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T12:20:57", "message_id": "4f6533de-01b7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T12:10:57", "message_id": "e9bc20f2-01b5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T12:00:57", "message_id": "84099fe2-01b4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T11:50:57", "message_id": "1e5a4ecc-01b3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T11:40:57", "message_id": "b8aded32-01b1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T11:30:56", "message_id": "52f8a3de-01b0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T11:20:56", "message_id": "ed4a07ea-01ae-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T11:10:56", "message_id": "87adcd78-01ad-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T11:00:56", "message_id": "21e579a6-01ac-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T10:50:56", "message_id": "bc4b8032-01aa-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T10:40:56", "message_id": "569bfc68-01a9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T10:30:56", "message_id": "f0f3769e-01a7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T10:20:56", "message_id": "8b3a3c1c-01a6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T10:10:56", "message_id": "259684f2-01a5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T10:00:56", "message_id": "bfe9db96-01a3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T09:50:56", "message_id": "5a32cb60-01a2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T09:40:56", "message_id": "f4891478-01a0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T09:30:56", "message_id": "8ee630fc-019f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T09:20:55", "message_id": "292ba432-019e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T09:10:55", "message_id": "c381a4a2-019c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T09:00:55", "message_id": "5dea32b8-019b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T08:50:55", "message_id": "f8241e2c-0199-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T08:40:55", "message_id": "9284b0dc-0198-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T08:30:55", "message_id": "2cb9eae8-0197-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T08:20:55", "message_id": "c7186364-0195-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T08:10:55", "message_id": "615aa97a-0194-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T08:00:55", "message_id": "fbae4f6a-0192-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T07:50:55", "message_id": "96109024-0191-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T07:40:55", "message_id": "30660b7e-0190-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T07:30:54", "message_id": "cab2705c-018e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T07:20:54", "message_id": "650872f2-018d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T07:10:54", "message_id": "ff5ae300-018b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T07:00:54", "message_id": "99a74b94-018a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T06:50:54", "message_id": "33fc3ae4-0189-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T06:40:54", "message_id": "ce4fd792-0187-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T06:30:54", "message_id": "68a54630-0186-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T06:20:54", "message_id": "02f27a02-0185-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T06:10:54", "message_id": "9d3d4008-0183-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T06:00:54", "message_id": "378bf87c-0182-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T05:50:54", "message_id": "d1e6a3ce-0180-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T05:40:53", "message_id": "6c3780f8-017f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T05:30:53", "message_id": "067ef152-017e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T05:20:53", "message_id": "a0d7b1b4-017c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T05:10:53", "message_id": "3b298906-017b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T05:00:53", "message_id": "d584bf0e-0179-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T04:50:53", "message_id": "6fc87d3c-0178-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T04:40:53", "message_id": "0a16c8be-0177-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T04:30:53", "message_id": "a467c2f8-0175-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T04:20:53", "message_id": "3eb92fb0-0174-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T04:10:53", "message_id": "d90aa8e8-0172-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T04:00:53", "message_id": "73663b3e-0171-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T03:50:52", "message_id": "0db5f564-0170-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T03:40:52", "message_id": "a80bc550-016e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T03:30:52", "message_id": "425cb1ac-016d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T03:20:52", "message_id": "dcacafde-016b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T03:10:52", "message_id": "76feb8e0-016a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T03:00:52", "message_id": "115193ba-0169-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T02:50:52", "message_id": "aba21950-0167-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T02:40:52", "message_id": "45efc2a2-0166-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T02:30:52", "message_id": "e041165a-0164-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T02:20:52", "message_id": "7aa00000-0163-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T02:10:52", "message_id": "14f49636-0162-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T02:00:51", "message_id": "af4037ce-0160-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T01:50:52", "message_id": "49b3165c-015f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T01:40:51", "message_id": "e3f64614-015d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T01:30:51", "message_id": "7e41ead6-015c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T01:20:51", "message_id": "18a24514-015b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T01:10:51", "message_id": "b2f2f958-0159-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T01:00:51", "message_id": "4d4d08c4-0158-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T00:50:51", "message_id": "e7709c6a-0156-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T00:40:51", "message_id": "81ce6a82-0155-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T00:30:51", "message_id": "1c1ccdec-0154-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T00:20:51", "message_id": "b6677854-0152-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T00:10:51", "message_id": "50c10c0a-0151-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-10T00:00:50", "message_id": "eb10b4ec-014f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T23:50:50", "message_id": "855d3c52-014e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T23:40:50", "message_id": "1fab9e0e-014d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T23:30:50", "message_id": "b9f57004-014b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T23:20:50", "message_id": "54546fda-014a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T23:10:50", "message_id": "eea2f2e8-0148-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T23:00:50", "message_id": "891d8146-0147-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T22:50:50", "message_id": "2346c4e6-0146-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T22:40:50", "message_id": "bd9018b0-0144-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T22:30:50", "message_id": "57e56c0a-0143-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T22:20:50", "message_id": "f2483b30-0141-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T22:10:49", "message_id": "8c85de5c-0140-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T22:00:49", "message_id": "26e2d54c-013f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T21:50:49", "message_id": "c13731a8-013d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T21:40:49", "message_id": "5b883fba-013c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T21:30:49", "message_id": "f5e1f332-013a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T21:20:49", "message_id": "90345dc8-0139-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T21:10:49", "message_id": "2a8d237a-0138-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T21:00:49", "message_id": "c4e3492e-0136-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T20:50:49", "message_id": "5f314f28-0135-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T20:40:49", "message_id": "f98762e4-0133-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T20:30:49", "message_id": "93cc212a-0132-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T20:20:49", "message_id": "2e33ab18-0131-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T20:10:48", "message_id": "c879cb3c-012f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T20:00:48", "message_id": "62c658b0-012e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T19:50:48", "message_id": "fd223264-012c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T19:40:48", "message_id": "976a7a40-012b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T19:30:48", "message_id": "31c4aec8-012a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T19:20:48", "message_id": "cc23e6fc-0128-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T19:10:48", "message_id": "6668917e-0127-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T19:00:48", "message_id": "00b111fe-0126-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T18:50:48", "message_id": "9afaf6fa-0124-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T18:40:48", "message_id": "355189a0-0123-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T18:30:48", "message_id": "cfa110f4-0121-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T18:20:47", "message_id": "69eef812-0120-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T18:10:47", "message_id": "043e3baa-011f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T18:00:47", "message_id": "9e89fe12-011d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T17:50:47", "message_id": "38e04216-011c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T17:40:47", "message_id": "d32e37bc-011a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T17:30:47", "message_id": "6d7dc53c-0119-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T17:20:47", "message_id": "07d257e4-0118-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T17:10:47", "message_id": "a2206176-0116-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T17:00:47", "message_id": "3c75cc04-0115-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T16:50:47", "message_id": "d6c12ecc-0113-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T16:40:46", "message_id": "71123e46-0112-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T16:30:46", "message_id": "0b73e2c0-0111-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T16:20:46", "message_id": "a5ba0334-010f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T16:10:46", "message_id": "40122c2e-010e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T16:00:46", "message_id": "da6171ce-010c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T15:50:48", "message_id": "7608ffae-010b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T15:40:47", "message_id": "0f5ab320-010a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T15:30:46", "message_id": "a9748686-0108-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T15:20:46", "message_id": "43ad45b4-0107-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T15:10:46", "message_id": "de12cd56-0105-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T15:00:46", "message_id": "7855258c-0104-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T14:50:46", "message_id": "12a9ae20-0103-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T14:40:45", "message_id": "acf843bc-0101-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T14:30:45", "message_id": "47452b9e-0100-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T14:20:45", "message_id": "e19a78ea-00fe-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T14:10:45", "message_id": "7bf3eaea-00fd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T14:00:45", "message_id": "1638756e-00fc-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T13:50:45", "message_id": "b09250b4-00fa-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T13:40:45", "message_id": "4ad89c84-00f9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T13:30:45", "message_id": "e52d757c-00f7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T13:20:45", "message_id": "7fd1d5de-00f6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T13:10:45", "message_id": "19c56446-00f5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T13:00:45", "message_id": "b41fdb4a-00f3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T12:50:44", "message_id": "4e67c5b6-00f2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T12:40:44", "message_id": "e8c198d2-00f0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T12:30:44", "message_id": "83158d00-00ef-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T12:20:44", "message_id": "1d61d780-00ee-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T12:10:44", "message_id": "b7b5555c-00ec-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T12:00:44", "message_id": "52079c98-00eb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T11:50:44", "message_id": "ec57083a-00e9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T11:40:44", "message_id": "86a7fafe-00e8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T11:30:44", "message_id": "21025786-00e7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T11:20:44", "message_id": "bb4f37e8-00e5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T11:10:44", "message_id": "55a56b02-00e4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T11:00:43", "message_id": "efee43de-00e2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T10:50:43", "message_id": "8a420d64-00e1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T10:40:43", "message_id": "248ff090-00e0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T10:30:43", "message_id": "bee7e3ca-00de-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T10:20:43", "message_id": "592fcad0-00dd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T10:10:43", "message_id": "f3867dc4-00db-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T10:00:43", "message_id": "8dea610c-00da-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T09:50:43", "message_id": "282abfb6-00d9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T09:40:43", "message_id": "c281554a-00d7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T09:30:43", "message_id": "5cd25e2a-00d6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T09:20:43", "message_id": "f72698b2-00d4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T09:10:43", "message_id": "917bf8f0-00d3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T09:00:42", "message_id": "2bcc5f96-00d2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T08:50:42", "message_id": "c619b1e0-00d0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T08:40:42", "message_id": "606e7eee-00cf-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T08:30:42", "message_id": "fac745ea-00cd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T08:20:42", "message_id": "95186c70-00cc-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T08:10:42", "message_id": "2f63c20e-00cb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T08:00:42", "message_id": "c9b3327e-00c9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T07:50:42", "message_id": "6404d208-00c8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T07:40:42", "message_id": "fe675656-00c6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T07:30:42", "message_id": "98ade588-00c5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T07:20:41", "message_id": "32f5a470-00c4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T07:10:41", "message_id": "cd457502-00c2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T07:00:41", "message_id": "679a0296-00c1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T06:50:41", "message_id": "01e75c6a-00c0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T06:40:41", "message_id": "9c3c57cc-00be-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T06:30:41", "message_id": "36907f12-00bd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T06:20:41", "message_id": "d0da302e-00bb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T06:10:41", "message_id": "6b2ebf2a-00ba-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T06:00:41", "message_id": "058e74cc-00b9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T05:50:41", "message_id": "9fd7d2c8-00b7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T05:40:41", "message_id": "3a2d3568-00b6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T05:30:41", "message_id": "d47b629a-00b4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T05:20:40", "message_id": "6ecdae86-00b3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T05:10:40", "message_id": "09209eaa-00b2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T05:00:40", "message_id": "a3769808-00b0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T04:50:40", "message_id": "3dd6a732-00af-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T04:40:40", "message_id": "d82e404e-00ad-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T04:30:40", "message_id": "72801d86-00ac-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T04:20:40", "message_id": "0cdb573a-00ab-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T04:10:40", "message_id": "a7373184-00a9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T04:00:40", "message_id": "419d73d4-00a8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T03:50:40", "message_id": "dc27acdc-00a6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T03:40:40", "message_id": "763ead4a-00a5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T03:30:40", "message_id": "10b6f870-00a4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T03:20:40", "message_id": "aaea1f0a-00a2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T03:10:40", "message_id": "45425d6c-00a1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T03:00:40", "message_id": "df99c7b2-009f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T02:50:40", "message_id": "79dfa4f6-009e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T02:40:40", "message_id": "14592ce8-009d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T02:30:39", "message_id": "ae8698ca-009b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T02:20:39", "message_id": "48daf152-009a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T02:10:39", "message_id": "e320e048-0098-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T02:00:39", "message_id": "7d821ad2-0097-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T01:50:39", "message_id": "17bc9ec6-0096-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T01:40:39", "message_id": "b20b5fdc-0094-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T01:30:39", "message_id": "4c5f460e-0093-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T01:20:39", "message_id": "e6b76454-0091-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T01:10:39", "message_id": "8102dd24-0090-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T01:00:39", "message_id": "1b5ce330-008f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T00:50:38", "message_id": "b5a8168c-008d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T00:40:38", "message_id": "4ff246b0-008c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T00:30:38", "message_id": "ea4e4058-008a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T00:20:38", "message_id": "84a876e8-0089-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T00:10:38", "message_id": "1ef453c2-0088-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-09T00:00:38", "message_id": "b9448d04-0086-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T23:50:38", "message_id": "538f3c26-0085-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T23:40:38", "message_id": "ede6f310-0083-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T23:30:38", "message_id": "8834177e-0082-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T23:20:38", "message_id": "227e8ae6-0081-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T23:10:38", "message_id": "bcd5848e-007f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T23:00:38", "message_id": "57533332-007e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T22:50:37", "message_id": "f1780d5e-007c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T22:40:37", "message_id": "8bd06402-007b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T22:30:37", "message_id": "26128df8-007a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T22:20:37", "message_id": "c06b7e3e-0078-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T22:10:37", "message_id": "5abd2ce6-0077-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T22:00:37", "message_id": "f50d735c-0075-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T21:50:37", "message_id": "8f5f4036-0074-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T21:40:37", "message_id": "29b50ec4-0073-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T21:30:37", "message_id": "c4073ae4-0071-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T21:20:37", "message_id": "5e64eb2e-0070-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T21:10:36", "message_id": "f8add8f0-006e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T21:00:36", "message_id": "92f5070a-006d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T20:50:36", "message_id": "2d482730-006c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T20:40:36", "message_id": "c7989308-006a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T20:30:36", "message_id": "61f0650e-0069-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T20:20:36", "message_id": "fc39a302-0067-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T20:10:36", "message_id": "969561e0-0066-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T20:00:36", "message_id": "30dc7ec0-0065-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T19:50:36", "message_id": "cb33ac52-0063-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T19:40:36", "message_id": "6582a62a-0062-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T19:30:35", "message_id": "ffd00954-0060-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T19:20:35", "message_id": "9a2052d6-005f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T19:10:35", "message_id": "347463a6-005e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T19:00:35", "message_id": "cec787e6-005c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T18:50:35", "message_id": "6914bd5c-005b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T18:40:35", "message_id": "0366bbf0-005a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T18:30:35", "message_id": "9dc4e304-0058-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T18:20:35", "message_id": "38073efa-0057-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T18:10:35", "message_id": "d25d5ad6-0055-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T18:00:35", "message_id": "6cb45b0e-0054-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T17:50:35", "message_id": "070815a8-0053-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T17:40:35", "message_id": "a15ff3e8-0051-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T17:30:35", "message_id": "3bb22d1e-0050-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T17:20:34", "message_id": "d6018b14-004e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T17:10:34", "message_id": "7051b7d6-004d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T17:00:34", "message_id": "0aa15d02-004c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T16:50:34", "message_id": "a4f31014-004a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T16:40:34", "message_id": "3f4fb8da-0049-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T16:30:34", "message_id": "d99f2e68-0047-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T16:20:34", "message_id": "73f3f810-0046-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T16:10:34", "message_id": "0e430b38-0045-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T16:00:34", "message_id": "a89a1d72-0043-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T15:50:34", "message_id": "42ed29fc-0042-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T15:40:34", "message_id": "dd38e322-0040-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T15:30:33", "message_id": "778dc3d6-003f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T15:20:33", "message_id": "11e2bec0-003e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T15:10:33", "message_id": "ac3452ec-003c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T15:00:33", "message_id": "467f06be-003b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T14:50:33", "message_id": "e0d5425c-0039-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T14:40:33", "message_id": "7b204476-0038-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T14:30:33", "message_id": "1577f70a-0037-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T14:20:33", "message_id": "afc62e82-0035-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T14:10:33", "message_id": "4a24f24e-0034-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T14:00:33", "message_id": "e49290fe-0032-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T13:50:33", "message_id": "7eba0ed4-0031-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T13:40:33", "message_id": "190ec300-0030-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T13:30:32", "message_id": "b3647bc2-002e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T13:20:32", "message_id": "4dbc1f60-002d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T13:10:32", "message_id": "e807ebf0-002b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T13:00:32", "message_id": "8256caa2-002a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T12:50:32", "message_id": "1cad846c-0029-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T12:40:32", "message_id": "b6f58ec2-0027-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T12:30:32", "message_id": "514fa888-0026-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T12:20:32", "message_id": "eb968cf6-0024-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T12:10:32", "message_id": "85e35f84-0023-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T12:00:32", "message_id": "203d83fe-0022-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T11:50:31", "message_id": "ba8c9730-0020-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T11:40:32", "message_id": "54f23d0e-001f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T11:30:31", "message_id": "ef46bf44-001d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T11:20:31", "message_id": "898dd5f8-001c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T11:10:31", "message_id": "23f1aa68-001b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T11:00:31", "message_id": "be39f50a-0019-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T10:50:31", "message_id": "58905bbe-0018-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T10:40:31", "message_id": "f2ea34e8-0016-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T10:30:31", "message_id": "8d424c62-0015-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T10:20:31", "message_id": "279952da-0014-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T10:10:31", "message_id": "c201f252-0012-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T10:00:31", "message_id": "5c2f2482-0011-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T09:50:31", "message_id": "f67eabd6-000f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T09:40:30", "message_id": "90cad446-000e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T09:30:30", "message_id": "2b23ff24-000d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T09:20:30", "message_id": "c56df866-000b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T09:10:30", "message_id": "5fbc4686-000a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T09:00:30", "message_id": "fa141472-0008-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T08:50:30", "message_id": "9467b210-0007-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T08:40:30", "message_id": "2ebc0822-0006-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T08:30:30", "message_id": "c917488e-0004-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T08:20:30", "message_id": "635c4162-0003-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T08:10:30", "message_id": "fdbd11ca-0001-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T08:00:30", "message_id": "98046af0-0000-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T07:50:30", "message_id": "325019d0-ffff-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T07:40:29", "message_id": "cca2ff40-fffd-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T07:30:29", "message_id": "66f37324-fffc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T07:20:29", "message_id": "014aed14-fffb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T07:10:29", "message_id": "9b96541e-fff9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T07:00:29", "message_id": "35e0f38c-fff8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T06:50:29", "message_id": "d03ea12e-fff6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T06:40:29", "message_id": "6a88a826-fff5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T06:30:29", "message_id": "04d77512-fff4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T06:20:29", "message_id": "9f27ba48-fff2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T06:10:29", "message_id": "397c93ea-fff1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T06:00:29", "message_id": "d3d1ce3a-ffef-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T05:50:28", "message_id": "6e2476a6-ffee-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T05:40:28", "message_id": "088002e4-ffed-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T05:30:28", "message_id": "a2cd0be6-ffeb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T05:20:28", "message_id": "3d16f998-ffea-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T05:10:28", "message_id": "d76bd33a-ffe8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T05:00:28", "message_id": "71bf82bc-ffe7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T04:50:28", "message_id": "0c06f6fe-ffe6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T04:40:28", "message_id": "a663d6a6-ffe4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T04:30:28", "message_id": "40aa57aa-ffe3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T04:20:28", "message_id": "db047e18-ffe1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T04:10:28", "message_id": "754fcf56-ffe0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T04:00:27", "message_id": "0f9cdfec-ffdf-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T03:50:27", "message_id": "a9ea9082-ffdd-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T03:40:27", "message_id": "444056d2-ffdc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T03:30:27", "message_id": "de92bc9a-ffda-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T03:20:27", "message_id": "78e20442-ffd9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T03:10:27", "message_id": "13372196-ffd8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T03:00:27", "message_id": "ad84c304-ffd6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T02:50:27", "message_id": "47d5485e-ffd5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T02:40:27", "message_id": "e222db44-ffd3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T02:30:27", "message_id": "7c795972-ffd2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T02:20:27", "message_id": "16d782a2-ffd1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T02:10:26", "message_id": "b1126b18-ffcf-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T02:00:26", "message_id": "4b6ad2f6-ffce-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T01:50:26", "message_id": "e5b89af2-ffcc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T01:40:26", "message_id": "800b9bc4-ffcb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T01:30:26", "message_id": "1a59cd74-ffca-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T01:20:26", "message_id": "b4b0afe8-ffc8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T01:10:26", "message_id": "4f04ab00-ffc7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T01:00:26", "message_id": "e956e3b4-ffc5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T00:50:26", "message_id": "83a8d604-ffc4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T00:40:26", "message_id": "1dff7dcc-ffc3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T00:30:26", "message_id": "b84b5312-ffc1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T00:20:26", "message_id": "52e9ba32-ffc0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T00:10:25", "message_id": "eceea5cc-ffbe-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-08T00:00:25", "message_id": "8756402c-ffbd-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T23:50:25", "message_id": "2190a800-ffbc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T23:40:25", "message_id": "bbeeb3c6-ffba-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T23:30:25", "message_id": "5639bef0-ffb9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T23:20:25", "message_id": "f0b1263c-ffb7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T23:10:25", "message_id": "8afd36ba-ffb6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T23:00:25", "message_id": "255d45ee-ffb5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T22:50:25", "message_id": "bf725d60-ffb3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T22:40:25", "message_id": "59cd88aa-ffb2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T22:30:24", "message_id": "f41f05d4-ffb0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T22:20:24", "message_id": "8e6713fe-ffaf-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T22:10:24", "message_id": "28c78b60-ffae-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T22:00:24", "message_id": "c30fb956-ffac-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T21:50:24", "message_id": "5d534912-ffab-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T21:40:24", "message_id": "f7ace10a-ffa9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T21:30:24", "message_id": "9209e90c-ffa8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T21:20:24", "message_id": "2c49c0f2-ffa7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T21:10:24", "message_id": "c693b692-ffa5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T21:00:24", "message_id": "60ece8aa-ffa4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T20:50:23", "message_id": "fb363d32-ffa2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T20:40:23", "message_id": "9589798c-ffa1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T20:30:23", "message_id": "2fe25f46-ffa0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T20:20:23", "message_id": "ca287a4c-ff9e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T20:10:23", "message_id": "647873b0-ff9d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T20:00:23", "message_id": "fecfc046-ff9b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T19:50:23", "message_id": "991bbc42-ff9a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T19:40:23", "message_id": "3370e6e8-ff99-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T19:30:23", "message_id": "cdc3b830-ff97-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T19:20:23", "message_id": "6817aa60-ff96-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T19:10:22", "message_id": "02650b82-ff95-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T19:00:22", "message_id": "9caf6a68-ff93-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T18:50:22", "message_id": "370b5eac-ff92-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T18:40:22", "message_id": "d157b16a-ff90-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T18:30:22", "message_id": "6b9fbbd4-ff8f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T18:20:22", "message_id": "05f16b12-ff8e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T18:10:22", "message_id": "a044e4b6-ff8c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T18:00:22", "message_id": "3a963fc6-ff8b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T17:50:22", "message_id": "d4e6dcd6-ff89-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T17:40:22", "message_id": "6f3cac22-ff88-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T17:30:22", "message_id": "098dad32-ff87-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T17:20:21", "message_id": "a3db3a28-ff85-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T17:10:21", "message_id": "3e31c1a2-ff84-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T17:00:21", "message_id": "d878681c-ff82-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T16:50:21", "message_id": "72c233f0-ff81-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T16:40:21", "message_id": "0d16bf90-ff80-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T16:30:21", "message_id": "a77220c2-ff7e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T16:20:21", "message_id": "41b5fdf4-ff7d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T16:10:21", "message_id": "dc111926-ff7b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T16:00:21", "message_id": "766534a0-ff7a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T15:50:21", "message_id": "10b42f04-ff79-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T15:40:20", "message_id": "ab048f56-ff77-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T15:30:20", "message_id": "454ed546-ff76-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T15:20:20", "message_id": "dfa1a346-ff74-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T15:10:20", "message_id": "79f0dd38-ff73-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T15:00:20", "message_id": "144131a0-ff72-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T14:50:20", "message_id": "ae951b88-ff70-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T14:40:20", "message_id": "48e48d7e-ff6f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T14:30:20", "message_id": "e349a806-ff6d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T14:20:20", "message_id": "7d96be46-ff6c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T14:10:20", "message_id": "17e714f2-ff6b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T14:00:20", "message_id": "b236caae-ff69-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T13:50:20", "message_id": "4c854830-ff68-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T13:40:20", "message_id": "e6eb0128-ff66-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T13:30:19", "message_id": "81336b6e-ff65-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T13:20:19", "message_id": "1b8329fe-ff64-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T13:10:19", "message_id": "b5d92e06-ff62-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T13:00:19", "message_id": "50345874-ff61-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T12:50:19", "message_id": "ea868e26-ff5f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T12:40:19", "message_id": "84d5324a-ff5e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T12:30:19", "message_id": "1f3060fa-ff5d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T12:20:19", "message_id": "b97b44f6-ff5b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T12:10:19", "message_id": "53c961d4-ff5a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T12:00:19", "message_id": "ee197280-ff58-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T11:50:19", "message_id": "886c3748-ff57-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T11:40:18", "message_id": "22c1983a-ff56-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T11:30:18", "message_id": "bd134a34-ff54-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T11:20:18", "message_id": "57623cc8-ff53-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T11:10:18", "message_id": "f1d24192-ff51-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T11:00:18", "message_id": "8c14fdc8-ff50-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T10:50:18", "message_id": "266a4d76-ff4f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T10:40:18", "message_id": "c0c2e51a-ff4d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T10:30:18", "message_id": "5b0bbe28-ff4c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T10:20:18", "message_id": "f561747e-ff4a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T10:10:18", "message_id": "8fbcdeb6-ff49-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T10:00:18", "message_id": "2a1b5408-ff48-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T09:50:18", "message_id": "c4564476-ff46-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T09:40:18", "message_id": "5eafa0aa-ff45-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T09:30:17", "message_id": "f8f096da-ff43-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T09:20:17", "message_id": "934be0e2-ff42-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T09:10:17", "message_id": "2da080fa-ff41-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T09:00:17", "message_id": "c7e37c46-ff3f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T08:50:17", "message_id": "6235aa8c-ff3e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T08:40:17", "message_id": "fc8e7c1e-ff3c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T08:30:17", "message_id": "96d6fd7a-ff3b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T08:20:17", "message_id": "311eda80-ff3a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T08:10:17", "message_id": "cb71f40c-ff38-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T08:00:16", "message_id": "65bed66c-ff37-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T07:50:16", "message_id": "000f20a2-ff36-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T07:40:16", "message_id": "9a5e6d18-ff34-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T07:30:16", "message_id": "34baddd0-ff33-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T07:20:16", "message_id": "cf00d5ea-ff31-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T07:10:16", "message_id": "694f68a2-ff30-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T07:00:16", "message_id": "03a82580-ff2f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T06:50:16", "message_id": "9dfa1f50-ff2d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T06:40:16", "message_id": "3846547c-ff2c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T06:30:16", "message_id": "d2946214-ff2a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T06:20:16", "message_id": "6cf43408-ff29-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T06:10:16", "message_id": "074d60b2-ff28-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T06:00:15", "message_id": "a19125c0-ff26-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T05:50:15", "message_id": "3bea293e-ff25-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T05:40:15", "message_id": "d63246fe-ff23-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T05:30:15", "message_id": "7097434a-ff22-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T05:20:15", "message_id": "0ada3860-ff21-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T05:10:15", "message_id": "a522f3be-ff1f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T05:00:15", "message_id": "3f7b0746-ff1e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T04:50:15", "message_id": "d9cc5c0c-ff1c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T04:40:15", "message_id": "7420284e-ff1b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T04:30:15", "message_id": "0e7e350e-ff1a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T04:20:15", "message_id": "a8c7e350-ff18-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T04:10:15", "message_id": "431fc9ec-ff17-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T04:00:14", "message_id": "dd6cdfaa-ff15-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T03:50:14", "message_id": "77bfded8-ff14-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T03:40:14", "message_id": "1217ad64-ff13-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T03:30:14", "message_id": "ac5d1636-ff11-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T03:20:14", "message_id": "46b25068-ff10-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T03:10:14", "message_id": "e1189df8-ff0e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T03:00:14", "message_id": "7b5be4da-ff0d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T02:50:14", "message_id": "15c42c46-ff0c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T02:40:14", "message_id": "b010f40c-ff0a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T02:30:14", "message_id": "4a5f0b72-ff09-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T02:20:14", "message_id": "e4ab1876-ff07-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T02:10:14", "message_id": "7efe4c60-ff06-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T02:00:13", "message_id": "1948d1de-ff05-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T01:50:13", "message_id": "b3a474d8-ff03-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T01:40:13", "message_id": "4dee2036-ff02-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T01:30:13", "message_id": "e843c99e-ff00-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T01:20:13", "message_id": "82985318-feff-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T01:10:13", "message_id": "1cec3c06-fefe-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T01:00:13", "message_id": "b7352cde-fefc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T00:50:13", "message_id": "518ac14c-fefb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T00:40:13", "message_id": "ebe56e56-fef9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T00:30:13", "message_id": "86252440-fef8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T00:20:12", "message_id": "207aa3c8-fef7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T00:10:12", "message_id": "bacbb0ae-fef5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-07T00:00:12", "message_id": "55165fda-fef4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T23:50:12", "message_id": "ef752388-fef2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T23:40:12", "message_id": "89c8bbe0-fef1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T23:30:12", "message_id": "241a8234-fef0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T23:20:12", "message_id": "be77be66-feee-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T23:10:12", "message_id": "58b76226-feed-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T23:00:12", "message_id": "f33cd6ac-feeb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T22:50:12", "message_id": "8d5d0024-feea-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T22:40:12", "message_id": "27b4e0e4-fee9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T22:30:12", "message_id": "c2066f16-fee7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T22:20:11", "message_id": "5c537e58-fee6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T22:10:11", "message_id": "f6b4c62a-fee4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T22:00:12", "message_id": "911bcb16-fee3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T21:50:11", "message_id": "2b547ef0-fee2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T21:40:11", "message_id": "c5af666a-fee0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T21:30:11", "message_id": "5ff5a61e-fedf-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T21:20:11", "message_id": "fa4831d4-fedd-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T21:10:11", "message_id": "949b34b8-fedc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T21:00:11", "message_id": "2ee38f36-fedb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T20:50:11", "message_id": "c93a3708-fed9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T20:40:11", "message_id": "63984b7a-fed8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T20:30:11", "message_id": "fde47926-fed6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T20:20:11", "message_id": "983d83d4-fed5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T20:10:10", "message_id": "3281b4e4-fed4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T20:00:10", "message_id": "cceb8a70-fed2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T19:50:10", "message_id": "67325e9e-fed1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T19:40:10", "message_id": "0189964e-fed0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T19:30:10", "message_id": "9bdec4c8-fece-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T19:20:10", "message_id": "36289268-fecd-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T19:10:10", "message_id": "d078dbcc-fecb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T19:00:10", "message_id": "6abd7960-feca-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T18:50:10", "message_id": "052a4b24-fec9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T18:40:10", "message_id": "9f7147ca-fec7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T18:30:09", "message_id": "39b9c656-fec6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T18:20:09", "message_id": "d4114a78-fec4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T18:10:09", "message_id": "6e5a3f7e-fec3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T18:00:09", "message_id": "08a17d2e-fec2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T17:50:09", "message_id": "a2f83356-fec0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T17:40:09", "message_id": "3d538524-febf-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T17:30:09", "message_id": "d79b5320-febd-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T17:20:09", "message_id": "71f36c7a-febc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T17:10:09", "message_id": "0c3aa872-febb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T17:00:09", "message_id": "a68c37bc-feb9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T16:50:09", "message_id": "40e048f0-feb8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T16:40:08", "message_id": "db2bdba6-feb6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T16:30:08", "message_id": "757f4d3e-feb5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T16:20:08", "message_id": "0fd12c24-feb4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T16:10:08", "message_id": "aa28a0a6-feb2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T16:00:08", "message_id": "447ccc56-feb1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T15:50:08", "message_id": "dec72074-feaf-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T15:40:08", "message_id": "79214246-feae-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T15:30:08", "message_id": "1368806e-fead-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T15:20:08", "message_id": "adba71c4-feab-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T15:10:08", "message_id": "480a4f30-feaa-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T15:00:08", "message_id": "e25cab52-fea8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T14:50:07", "message_id": "7cafb502-fea7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T14:40:07", "message_id": "17100dd8-fea6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T14:30:07", "message_id": "b16b07d6-fea4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T14:20:07", "message_id": "4bba411e-fea3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T14:10:07", "message_id": "e6089556-fea1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T14:00:07", "message_id": "8073e82c-fea0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T13:50:07", "message_id": "1ab936fa-fe9f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T13:40:07", "message_id": "b4fd7bec-fe9d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T13:30:07", "message_id": "4f509780-fe9c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T13:20:07", "message_id": "e9a1a1a0-fe9a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T13:10:07", "message_id": "83ed2056-fe99-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T13:00:07", "message_id": "1e489b96-fe98-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T12:50:07", "message_id": "b89ea5de-fe96-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T12:40:07", "message_id": "52f90392-fe95-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T12:30:06", "message_id": "ed41cfbc-fe93-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T12:20:06", "message_id": "878eddb4-fe92-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T12:10:06", "message_id": "21e9049a-fe91-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T12:00:06", "message_id": "bc36af7c-fe8f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T11:50:06", "message_id": "568cc054-fe8e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T11:40:06", "message_id": "f0e7b804-fe8c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T11:30:07", "message_id": "8baef34a-fe8b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T11:20:06", "message_id": "2581e6be-fe8a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T11:10:06", "message_id": "bfcc1264-fe88-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T11:00:06", "message_id": "5a22f4ec-fe87-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T10:50:06", "message_id": "f4768984-fe85-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T10:40:05", "message_id": "8eca0512-fe84-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T10:30:05", "message_id": "29189f40-fe83-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T10:20:05", "message_id": "c36a6490-fe81-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T10:10:05", "message_id": "5db4ea40-fe80-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T10:00:05", "message_id": "f80d17fe-fe7e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T09:50:05", "message_id": "92591044-fe7d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T09:40:05", "message_id": "2caff9ca-fe7c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T09:30:05", "message_id": "c7024ef8-fe7a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T09:20:05", "message_id": "614c936c-fe79-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T09:10:05", "message_id": "fba7c3b6-fe77-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T09:00:05", "message_id": "95f68f58-fe76-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T08:50:04", "message_id": "30470d8c-fe75-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T08:40:04", "message_id": "ca97ceb4-fe73-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T08:30:04", "message_id": "64e7ce4e-fe72-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T08:20:04", "message_id": "ff3da51a-fe70-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T08:10:04", "message_id": "9990a3da-fe6f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T08:00:04", "message_id": "33df6cd4-fe6e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T07:50:04", "message_id": "ce325276-fe6c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T07:40:04", "message_id": "689078ae-fe6b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T07:30:04", "message_id": "02e2062c-fe6a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T07:20:04", "message_id": "9d366030-fe68-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T07:10:04", "message_id": "37880136-fe67-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T07:00:04", "message_id": "d1d5f326-fe65-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T06:50:03", "message_id": "6c25663e-fe64-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T06:40:03", "message_id": "068194de-fe63-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T06:30:03", "message_id": "a0d32bb2-fe61-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T06:20:03", "message_id": "3b213ad0-fe60-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T06:10:03", "message_id": "d56daf08-fe5e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T06:00:03", "message_id": "6fbf098c-fe5d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T05:50:03", "message_id": "0a123574-fe5c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T05:40:03", "message_id": "a45bf4be-fe5a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T05:30:03", "message_id": "3eaff774-fe59-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T05:20:03", "message_id": "d9056a54-fe57-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T05:10:03", "message_id": "7359ab44-fe56-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T05:00:02", "message_id": "0da74eec-fe55-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T04:50:02", "message_id": "a7f7bdee-fe53-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T04:40:02", "message_id": "424e7998-fe52-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T04:30:02", "message_id": "dca5190e-fe50-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T04:20:02", "message_id": "76eb6c2c-fe4f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T04:10:02", "message_id": "11391006-fe4e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T04:00:02", "message_id": "ab9317de-fe4c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T03:50:02", "message_id": "45dffbc4-fe4b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T03:40:02", "message_id": "e0349c9a-fe49-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T03:30:02", "message_id": "7a7fe752-fe48-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T03:20:01", "message_id": "14ccc20a-fe47-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T03:10:01", "message_id": "af29d89e-fe45-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T03:00:01", "message_id": "49755d4e-fe44-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T02:50:01", "message_id": "e3c5f892-fe42-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T02:40:01", "message_id": "7e12c90e-fe41-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T02:30:01", "message_id": "18727a8c-fe40-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T02:20:01", "message_id": "b2c41bc4-fe3e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T02:10:01", "message_id": "4d129b76-fe3d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T02:00:01", "message_id": "e768ce5e-fe3b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T01:50:01", "message_id": "81b95d9a-fe3a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T01:40:01", "message_id": "1c178652-fe39-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T01:30:01", "message_id": "b669a7d2-fe37-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T01:20:01", "message_id": "50bea51e-fe36-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T01:10:00", "message_id": "eb097f10-fe34-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T01:00:00", "message_id": "85639890-fe33-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T00:50:00", "message_id": "1fabe986-fe32-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T00:40:00", "message_id": "ba021aa2-fe30-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T00:30:00", "message_id": "544df40c-fe2f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T00:20:00", "message_id": "ee9cdeb2-fe2d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T00:10:00", "message_id": "88f4224c-fe2c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-06T00:00:00", "message_id": "234240ba-fe2b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T23:50:00", "message_id": "bd969b22-fe29-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T23:40:00", "message_id": "57eb8b44-fe28-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T23:30:00", "message_id": "f23a575e-fe26-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T23:20:00", "message_id": "8c993614-fe25-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T23:10:00", "message_id": "270d0d3a-fe24-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T23:00:00", "message_id": "c162370e-fe22-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T22:49:59", "message_id": "5b7e5a90-fe21-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T22:39:59", "message_id": "f5cdb642-fe1f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T22:29:59", "message_id": "9026eaf8-fe1e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T22:19:59", "message_id": "2a7932f2-fe1d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T22:09:59", "message_id": "c4c5dd12-fe1b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T21:59:59", "message_id": "5f18052c-fe1a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T21:49:59", "message_id": "f9663998-fe18-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T21:39:59", "message_id": "93b38b56-fe17-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T21:29:58", "message_id": "2e00432c-fe16-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T21:19:58", "message_id": "c8563884-fe14-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T21:09:58", "message_id": "62a937a8-fe13-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T20:59:58", "message_id": "fcfd1f10-fe11-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T20:49:58", "message_id": "974633ec-fe10-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T20:39:58", "message_id": "31968106-fe0f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T20:29:58", "message_id": "cbe64554-fe0d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T20:19:58", "message_id": "663de8de-fe0c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T20:09:58", "message_id": "008a5384-fe0b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T19:59:58", "message_id": "9add3138-fe09-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T19:49:58", "message_id": "3532d686-fe08-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T19:39:57", "message_id": "cf8da370-fe06-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T19:29:57", "message_id": "69da7e1e-fe05-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T19:19:57", "message_id": "042c3900-fe04-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T19:09:57", "message_id": "9e7edfc8-fe02-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T18:59:57", "message_id": "38cf0190-fe01-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T18:49:57", "message_id": "d3204ce2-fdff-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T18:39:57", "message_id": "6d77b908-fdfe-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T18:29:57", "message_id": "07cc6a78-fdfd-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T18:19:57", "message_id": "a21fb366-fdfb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T18:09:57", "message_id": "3c80346e-fdfa-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T17:59:57", "message_id": "d6c6b4f0-fdf8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T17:49:57", "message_id": "711ac778-fdf7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T17:39:57", "message_id": "0b6d8e66-fdf6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T17:29:56", "message_id": "a5c3a7e0-fdf4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T17:19:56", "message_id": "4012a88e-fdf3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T17:09:56", "message_id": "da67a9cc-fdf1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T16:59:56", "message_id": "74b8e286-fdf0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T16:49:56", "message_id": "0f09e012-fdef-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T16:39:56", "message_id": "a9635a0a-fded-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T16:29:56", "message_id": "43c297de-fdec-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T16:19:56", "message_id": "de0f90d2-fdea-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T16:09:56", "message_id": "78696150-fde9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T15:59:56", "message_id": "12bcb7e0-fde8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T15:49:56", "message_id": "ad168bec-fde6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T15:39:56", "message_id": "4768327e-fde5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T15:29:56", "message_id": "e1b784a8-fde3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T15:19:56", "message_id": "7c2dcfb2-fde2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T15:09:55", "message_id": "165737a6-fde1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T14:59:55", "message_id": "b0a6ddb8-fddf-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T14:49:55", "message_id": "4b0068e0-fdde-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T14:39:55", "message_id": "e54e5350-fddc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T14:29:55", "message_id": "7fa1667e-fddb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T14:19:55", "message_id": "19f072d0-fdda-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T14:09:55", "message_id": "b445f5be-fdd8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T13:59:55", "message_id": "4e9288aa-fdd7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T13:49:55", "message_id": "e8e78af6-fdd5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T13:39:55", "message_id": "83353fa6-fdd4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T13:29:54", "message_id": "1d83967c-fdd3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T13:19:54", "message_id": "b7d6743a-fdd1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T13:09:54", "message_id": "5228cd14-fdd0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T12:59:54", "message_id": "ec7baeb0-fdce-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T12:49:54", "message_id": "86cc1470-fdcd-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T12:39:54", "message_id": "211c1716-fdcc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T12:29:54", "message_id": "bb6aa816-fdca-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T12:19:54", "message_id": "55be638c-fdc9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T12:09:54", "message_id": "f0080b52-fdc7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T11:59:54", "message_id": "8a5ea35c-fdc6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T11:49:54", "message_id": "24b63a02-fdc5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T11:39:54", "message_id": "bf0a1c88-fdc3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T11:29:53", "message_id": "595935d2-fdc2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T11:19:53", "message_id": "f3ad3f18-fdc0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T11:09:53", "message_id": "8e009c2e-fdbf-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T10:59:53", "message_id": "2852b3f4-fdbe-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T10:49:53", "message_id": "c2a8053c-fdbc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T10:39:53", "message_id": "5cf61c98-fdbb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T10:29:53", "message_id": "f751c8fc-fdb9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T10:19:53", "message_id": "91a05ae2-fdb8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T10:09:53", "message_id": "2c019ff8-fdb7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T09:59:53", "message_id": "c65323ee-fdb5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T09:49:53", "message_id": "60aa1918-fdb4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T09:39:53", "message_id": "fafa4c1a-fdb2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T09:29:53", "message_id": "954f28a0-fdb1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T09:19:52", "message_id": "2f9f2e02-fdb0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T09:09:52", "message_id": "c9ebb964-fdae-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T08:59:52", "message_id": "643d21e4-fdad-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T08:49:52", "message_id": "fea2d226-fdab-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T08:39:52", "message_id": "98e9eb6e-fdaa-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T08:29:52", "message_id": "3338d89e-fda9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T08:19:52", "message_id": "cd861742-fda7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T08:09:52", "message_id": "67efc244-fda6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T07:59:52", "message_id": "022f1a8c-fda5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T07:49:52", "message_id": "9c7f7598-fda3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T07:39:52", "message_id": "36d6733c-fda2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T07:29:51", "message_id": "d122abb0-fda0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T07:19:51", "message_id": "6b769958-fd9f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T07:09:52", "message_id": "05ee4604-fd9e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T06:59:51", "message_id": "a0148cfe-fd9c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T06:49:51", "message_id": "3a6a9ae8-fd9b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T06:39:51", "message_id": "d4b1810e-fd99-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T06:29:51", "message_id": "6f0683c8-fd98-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T06:19:51", "message_id": "09530296-fd97-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T06:09:51", "message_id": "a3a987d6-fd95-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T05:59:51", "message_id": "3dfd4414-fd94-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T05:49:51", "message_id": "d84ef3a2-fd92-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T05:39:50", "message_id": "72a02aea-fd91-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T05:29:50", "message_id": "0cf76272-fd90-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T05:19:50", "message_id": "a746e0b6-fd8e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T05:09:50", "message_id": "4194d8f0-fd8d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T04:59:50", "message_id": "dbe8df3e-fd8b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T04:49:50", "message_id": "764aa942-fd8a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T04:39:50", "message_id": "10a45710-fd89-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T04:29:50", "message_id": "ab052afc-fd87-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T04:19:50", "message_id": "453c1fba-fd86-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T04:09:50", "message_id": "df821b1c-fd84-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T03:59:49", "message_id": "79c246c2-fd83-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T03:49:49", "message_id": "1420a53a-fd82-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T03:39:49", "message_id": "ae795f02-fd80-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T03:29:49", "message_id": "48d3df7a-fd7f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T03:19:49", "message_id": "e3319e2e-fd7d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T03:09:49", "message_id": "7d891cd8-fd7c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T02:59:49", "message_id": "17c8d1aa-fd7b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T02:49:49", "message_id": "b208434c-fd79-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T02:39:49", "message_id": "4c877d5e-fd78-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T02:29:49", "message_id": "e6ccbf16-fd76-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T02:19:49", "message_id": "812a0f3e-fd75-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T02:09:49", "message_id": "1b84ce4a-fd74-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T01:59:49", "message_id": "b5c2a682-fd72-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T01:49:49", "message_id": "5011bd1a-fd71-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T01:39:49", "message_id": "ea62a462-fd6f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T01:29:49", "message_id": "84dc1b42-fd6e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T01:19:49", "message_id": "1f3d1706-fd6d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T01:09:48", "message_id": "b97d3e60-fd6b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T00:59:48", "message_id": "53c72b18-fd6a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T00:49:48", "message_id": "ee08e9a2-fd68-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T00:39:48", "message_id": "886b1788-fd67-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T00:29:48", "message_id": "22c9653e-fd66-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T00:19:48", "message_id": "bd1c2b3c-fd64-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-05T00:09:48", "message_id": "578e11be-fd63-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-04T23:59:48", "message_id": "f1d3092a-fd61-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-04T23:49:48", "message_id": "8c18c116-fd60-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-04T23:39:06", "message_id": "0d65f09c-fd5f-11e2-b8cf-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "timestamp": "2013-08-04T23:29:06", "message_id": "a7d5f39a-fd5d-11e2-b8cf-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 4955792.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "counter_type": "gauge"}]} \ No newline at end of file diff --git a/tests/data/map_fixture_18.json b/tests/data/map_fixture_18.json new file mode 100644 index 0000000..c4a4c89 --- /dev/null +++ b/tests/data/map_fixture_18.json @@ -0,0 +1 @@ +{"http://localhost:8777/v2/meters/storage.objects?q.field=resource_id&q.value=7ec5ec9750414a4c8e767e16e1b6c9cf": [{"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-12T04:01:18", "message_id": "d76978d8-0303-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-12T03:51:18", "message_id": "71b90dba-0302-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-12T03:41:18", "message_id": "0c071cb0-0301-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-12T03:31:18", "message_id": "a66ab9a8-02ff-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-12T03:21:18", "message_id": "40b60db6-02fe-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-12T03:11:18", "message_id": "db0c5868-02fc-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-12T03:01:17", "message_id": "7551c590-02fb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-12T02:51:17", "message_id": "0fae0fc4-02fa-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-12T02:41:17", "message_id": "a9e9e970-02f8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-12T02:31:17", "message_id": "4446d26e-02f7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-12T02:21:17", "message_id": "de91cf74-02f5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-12T02:11:17", "message_id": "78e4ce5c-02f4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-12T02:01:17", "message_id": "133da49e-02f3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-12T01:51:17", "message_id": "ad935842-02f1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-12T01:41:17", "message_id": "47dee954-02f0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-12T01:31:17", "message_id": "e2328b5c-02ee-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-12T01:21:17", "message_id": "7c7cf302-02ed-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-12T01:11:16", "message_id": "16d405aa-02ec-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-12T01:01:16", "message_id": "b11152c8-02ea-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-12T00:51:16", "message_id": "4b77cce0-02e9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-12T00:41:16", "message_id": "e5bdb82a-02e7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-12T00:31:16", "message_id": "800cd07a-02e6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-12T00:21:16", "message_id": "1a8ad8e2-02e5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-12T00:11:16", "message_id": "b4adc076-02e3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-12T00:01:16", "message_id": "4f010108-02e2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T23:51:16", "message_id": "e9543272-02e0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T23:41:16", "message_id": "83ae3be4-02df-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T23:31:16", "message_id": "1e03898a-02de-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T23:21:15", "message_id": "b84a6704-02dc-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T23:11:15", "message_id": "52aafcc0-02db-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T23:01:16", "message_id": "ed345982-02d9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T22:51:15", "message_id": "874bd754-02d8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T22:41:15", "message_id": "219760b4-02d7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T22:31:15", "message_id": "bbea722a-02d5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T22:21:15", "message_id": "56362c2c-02d4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T22:11:15", "message_id": "f0865a88-02d2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T22:01:15", "message_id": "8add2884-02d1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T21:51:15", "message_id": "253569fc-02d0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T21:41:15", "message_id": "bf8678c2-02ce-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T21:31:14", "message_id": "59d28102-02cd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T21:21:14", "message_id": "f4289c0c-02cb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T21:11:14", "message_id": "8e79b900-02ca-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T21:01:14", "message_id": "28c9466c-02c9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T20:51:14", "message_id": "c31e8c42-02c7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T20:41:14", "message_id": "5d6961ca-02c6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T20:31:14", "message_id": "f7c2b9d0-02c4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T20:21:14", "message_id": "9213d61a-02c3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T20:11:14", "message_id": "2c70cdd2-02c2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T20:01:14", "message_id": "c6ba631e-02c0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T19:51:14", "message_id": "61100e5c-02bf-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T19:41:14", "message_id": "fb5e2252-02bd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T19:31:13", "message_id": "95b3afe0-02bc-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T19:21:13", "message_id": "3001e71c-02bb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T19:11:13", "message_id": "ca4f6c4c-02b9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T19:01:13", "message_id": "649a4652-02b8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T18:51:13", "message_id": "fee7db7c-02b6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T18:41:13", "message_id": "994021f4-02b5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T18:31:13", "message_id": "338d0f26-02b4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T18:21:13", "message_id": "cdddad44-02b2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T18:11:13", "message_id": "682f48b4-02b1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T18:01:13", "message_id": "027e6a82-02b0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T17:51:12", "message_id": "9cd3a266-02ae-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T17:41:12", "message_id": "3721c142-02ad-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T17:31:12", "message_id": "d1797de0-02ab-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T17:21:12", "message_id": "6bc703d8-02aa-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T17:11:12", "message_id": "0614b00e-02a9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T17:01:12", "message_id": "a074c97e-02a7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T16:51:12", "message_id": "3ac51f08-02a6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T16:41:12", "message_id": "d52528e2-02a4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T16:31:12", "message_id": "6f6d54b2-02a3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T16:21:12", "message_id": "09b5e9fa-02a2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T16:11:12", "message_id": "a40b8ebc-02a0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T16:01:12", "message_id": "3e679232-029f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T15:51:12", "message_id": "d8b63b6a-029d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T15:41:12", "message_id": "7314c9ee-029c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T15:31:11", "message_id": "0d6f6168-029b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T15:21:11", "message_id": "a7cea2f2-0299-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T15:11:11", "message_id": "421be11e-0298-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T15:01:11", "message_id": "dc6a6ae4-0296-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T14:51:11", "message_id": "76b5340a-0295-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T14:41:11", "message_id": "11075d6e-0294-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T14:31:11", "message_id": "ab56a610-0292-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T14:21:11", "message_id": "45a92654-0291-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T14:11:11", "message_id": "dff7e53a-028f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T14:01:11", "message_id": "7a526b02-028e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T13:51:11", "message_id": "14a6dd02-028d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T13:41:11", "message_id": "aef979a2-028b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T13:31:10", "message_id": "494a8d90-028a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T13:21:10", "message_id": "e3967d48-0288-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T13:11:10", "message_id": "7def44f8-0287-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T13:01:10", "message_id": "18472234-0286-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T12:51:10", "message_id": "b2916db0-0284-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T12:41:10", "message_id": "4ce6deec-0283-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T12:31:10", "message_id": "e733b292-0281-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T12:21:10", "message_id": "817fd490-0280-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T12:11:10", "message_id": "1bd287ec-027f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T12:01:10", "message_id": "b6205826-027d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T11:51:10", "message_id": "50792d50-027c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T11:41:09", "message_id": "eabec6d8-027a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T11:31:09", "message_id": "85137a1e-0279-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T11:21:09", "message_id": "1f641de6-0278-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T11:11:09", "message_id": "b9b595c0-0276-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T11:01:09", "message_id": "5405dcc2-0275-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T10:51:09", "message_id": "ee54f1e8-0273-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T10:41:09", "message_id": "88ab072a-0272-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T10:31:09", "message_id": "23009e04-0271-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T10:21:09", "message_id": "bd488f82-026f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T10:11:09", "message_id": "57ab203c-026e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T10:01:09", "message_id": "f1f7e1ae-026c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T09:51:08", "message_id": "8c479b5c-026b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T09:41:08", "message_id": "26961b5e-026a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T09:31:08", "message_id": "c0edc492-0268-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T09:21:08", "message_id": "5b3d5172-0267-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T09:11:08", "message_id": "f5956a86-0265-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T09:01:08", "message_id": "8fe5b11a-0264-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T08:51:08", "message_id": "2a42f332-0263-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T08:41:08", "message_id": "c4962f1e-0261-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T08:31:08", "message_id": "5eebbfe0-0260-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T08:21:08", "message_id": "f930144a-025e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T08:11:08", "message_id": "9384729a-025d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T08:01:08", "message_id": "2ddaa992-025c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T07:51:07", "message_id": "c824f644-025a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T07:41:07", "message_id": "62805e9c-0259-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T07:31:07", "message_id": "fccbd230-0257-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T07:21:07", "message_id": "9720d7b0-0256-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T07:11:07", "message_id": "31641e38-0255-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T07:01:07", "message_id": "cbc7dda4-0253-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T06:51:07", "message_id": "66139dfa-0252-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T06:41:07", "message_id": "0063b978-0251-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T06:31:07", "message_id": "9ab38ef6-024f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T06:21:07", "message_id": "35145eaa-024e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T06:11:07", "message_id": "cf5ce51a-024c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T06:01:07", "message_id": "69c6e300-024b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T05:51:06", "message_id": "040c27ce-024a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T05:41:06", "message_id": "9e5a2eea-0248-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T05:31:06", "message_id": "38a3adde-0247-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T05:21:06", "message_id": "d2f6582a-0245-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T05:11:06", "message_id": "6d3e67e4-0244-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T05:01:06", "message_id": "0795f3d6-0243-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T04:51:06", "message_id": "a1ee62a8-0241-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T04:41:06", "message_id": "3c3ba322-0240-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T04:31:06", "message_id": "d6904074-023e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T04:21:06", "message_id": "70f8ea3c-023d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T04:11:06", "message_id": "0b2ff46c-023c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T04:01:05", "message_id": "a5875250-023a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T03:51:05", "message_id": "3fda7924-0239-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T03:41:05", "message_id": "da42bde8-0237-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T03:31:05", "message_id": "747702fe-0236-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T03:21:05", "message_id": "0ec90b74-0235-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T03:11:05", "message_id": "a91742f6-0233-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T03:01:05", "message_id": "43670f64-0232-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T02:51:05", "message_id": "ddb45740-0230-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T02:41:05", "message_id": "77f68cb2-022f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T02:31:05", "message_id": "12550c90-022e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T02:21:04", "message_id": "aca3abdc-022c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T02:11:04", "message_id": "46f5208c-022b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T02:01:04", "message_id": "e1511e94-0229-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T01:51:04", "message_id": "7b9a358c-0228-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T01:41:04", "message_id": "15fdfcb4-0227-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T01:31:04", "message_id": "b04b9706-0225-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T01:21:04", "message_id": "4a848780-0224-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T01:11:04", "message_id": "e4d71318-0222-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T01:01:04", "message_id": "7f32d3c2-0221-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T00:51:04", "message_id": "197babc2-0220-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T00:41:04", "message_id": "b3cd6fc8-021e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T00:31:03", "message_id": "4e1cc666-021d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T00:21:03", "message_id": "e86dbd62-021b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T00:11:03", "message_id": "82bc3ed6-021a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T00:01:03", "message_id": "1d11af22-0219-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T23:51:03", "message_id": "b764d042-0217-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T23:41:03", "message_id": "51b33050-0216-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T23:31:03", "message_id": "ec0afa40-0214-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T23:21:03", "message_id": "86631110-0213-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T23:11:03", "message_id": "20a8a1b0-0212-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T23:01:03", "message_id": "bb54e0cc-0210-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T22:51:03", "message_id": "5560c0de-020f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T22:41:08", "message_id": "f2bf9d8e-020d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T22:31:03", "message_id": "8a0e3dfa-020c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T22:21:02", "message_id": "24561b28-020b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T22:11:02", "message_id": "bebbb90e-0209-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T22:01:02", "message_id": "58fbf1c0-0208-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T21:51:02", "message_id": "f36502f8-0206-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T21:41:02", "message_id": "8dacbf06-0205-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T21:31:02", "message_id": "27f77d78-0204-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T21:21:02", "message_id": "c2616af6-0202-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T21:11:02", "message_id": "5ca46e1c-0201-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T21:01:02", "message_id": "f6e2c566-01ff-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T20:51:02", "message_id": "9194c5e8-01fe-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T20:41:02", "message_id": "2b990f84-01fd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T20:31:02", "message_id": "c61a8c10-01fb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T20:21:01", "message_id": "60360b3c-01fa-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T20:11:01", "message_id": "fa799436-01f8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T20:01:01", "message_id": "94d19a3a-01f7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T19:51:01", "message_id": "2f25ffc4-01f6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T19:41:01", "message_id": "c977b3da-01f4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T19:31:01", "message_id": "63d12f44-01f3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T19:21:01", "message_id": "fe0870ba-01f1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T19:11:01", "message_id": "986a68d6-01f0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T19:01:01", "message_id": "32bb4f1a-01ef-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T18:51:00", "message_id": "ccfa3ce6-01ed-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T18:41:00", "message_id": "67609eda-01ec-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T18:31:00", "message_id": "01ac14c6-01eb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T18:21:00", "message_id": "9bfaf792-01e9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T18:11:00", "message_id": "36461e1e-01e8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T18:01:00", "message_id": "d0950e50-01e6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T17:51:00", "message_id": "6af02932-01e5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T17:41:00", "message_id": "0545acca-01e4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T17:31:00", "message_id": "9f90eb3e-01e2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T17:21:00", "message_id": "39e355f2-01e1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T17:11:00", "message_id": "d42ed4e4-01df-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T17:00:59", "message_id": "6e80a61e-01de-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T16:50:59", "message_id": "08d5d2d6-01dd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T16:40:59", "message_id": "a322a384-01db-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T16:30:59", "message_id": "3d788bd0-01da-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T16:20:59", "message_id": "d7c1959e-01d8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T16:10:59", "message_id": "721d6822-01d7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T16:00:59", "message_id": "0c736040-01d6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T15:50:59", "message_id": "a6c356ac-01d4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T15:40:59", "message_id": "412463a0-01d3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T15:30:59", "message_id": "db71869c-01d1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T15:20:59", "message_id": "75cae104-01d0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T15:10:59", "message_id": "10199d60-01cf-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T15:00:58", "message_id": "aa646be0-01cd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T14:50:58", "message_id": "44bbf62e-01cc-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T14:40:58", "message_id": "df03a486-01ca-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T14:30:58", "message_id": "794bda42-01c9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T14:20:58", "message_id": "139ca01a-01c8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T14:10:58", "message_id": "adf6d2ea-01c6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T14:00:58", "message_id": "4848d408-01c5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T13:50:58", "message_id": "e29c811e-01c3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T13:40:58", "message_id": "7ce60724-01c2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T13:30:58", "message_id": "17431228-01c1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T13:20:58", "message_id": "b18ad336-01bf-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T13:10:57", "message_id": "4bdcab3c-01be-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T13:00:57", "message_id": "e62f6f0a-01bc-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T12:50:57", "message_id": "807d865c-01bb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T12:40:57", "message_id": "1ad2b6f2-01ba-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T12:30:57", "message_id": "b52a9ac8-01b8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T12:20:57", "message_id": "4f802a72-01b7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T12:10:57", "message_id": "e9d7b286-01b5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T12:00:57", "message_id": "841fc088-01b4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T11:50:57", "message_id": "1e7605c2-01b3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T11:40:57", "message_id": "b8d12518-01b1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T11:30:57", "message_id": "531c61f2-01b0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T11:20:57", "message_id": "ed6faa18-01ae-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T11:10:57", "message_id": "87c89fa4-01ad-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T11:00:56", "message_id": "2203abc4-01ac-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T10:50:57", "message_id": "bc88661e-01aa-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T10:40:56", "message_id": "56b48c74-01a9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T10:30:56", "message_id": "f111801c-01a7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T10:20:56", "message_id": "8b575090-01a6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T10:10:56", "message_id": "25c700aa-01a5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T10:00:56", "message_id": "c0035576-01a3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T09:50:56", "message_id": "5a4865f6-01a2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T09:40:56", "message_id": "f4a558d6-01a0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T09:30:56", "message_id": "8f10f0a8-019f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T09:20:56", "message_id": "2945b6c4-019e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T09:10:55", "message_id": "c39e7884-019c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T09:00:56", "message_id": "5e07ff00-019b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T08:50:55", "message_id": "f83f1ac4-0199-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T08:40:55", "message_id": "929e9416-0198-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T08:30:55", "message_id": "2cd31414-0197-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T08:20:55", "message_id": "c7321b42-0195-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T08:10:55", "message_id": "6172bd62-0194-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T08:00:55", "message_id": "fbc713e2-0192-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T07:50:55", "message_id": "962a5748-0191-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T07:40:55", "message_id": "307f89dc-0190-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T07:30:55", "message_id": "caca774c-018e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T07:20:54", "message_id": "65208c0c-018d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T07:10:54", "message_id": "ff72385c-018b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T07:00:54", "message_id": "99bff14e-018a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T06:50:54", "message_id": "341670c6-0189-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T06:40:54", "message_id": "ce69320a-0187-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T06:30:54", "message_id": "68bcc4cc-0186-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T06:20:54", "message_id": "0311f724-0185-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T06:10:54", "message_id": "9d576d3e-0183-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T06:00:54", "message_id": "379fda18-0182-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T05:50:54", "message_id": "d20158a4-0180-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T05:40:54", "message_id": "6c4e8212-017f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T05:30:53", "message_id": "069520a8-017e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T05:20:53", "message_id": "a0ec4548-017c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T05:10:53", "message_id": "3b422d30-017b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T05:00:53", "message_id": "d59af45e-0179-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T04:50:53", "message_id": "6fe027a2-0178-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T04:40:53", "message_id": "0a2a780a-0177-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T04:30:53", "message_id": "a47f55d0-0175-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T04:20:53", "message_id": "3ecf5092-0174-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T04:10:53", "message_id": "d9222ac2-0172-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T04:00:53", "message_id": "737d6638-0171-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T03:50:53", "message_id": "0dcef500-0170-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T03:40:53", "message_id": "a822d9e8-016e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T03:30:52", "message_id": "427802b8-016d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T03:20:52", "message_id": "dcc41692-016b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T03:10:52", "message_id": "7715ec04-016a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T03:00:52", "message_id": "11684bbe-0169-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T02:50:52", "message_id": "abbc5072-0167-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T02:40:52", "message_id": "4605f3c4-0166-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T02:30:52", "message_id": "e0572ee0-0164-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T02:20:52", "message_id": "7abb1552-0163-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T02:10:52", "message_id": "150ce808-0162-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T02:00:52", "message_id": "af5746e4-0160-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T01:50:52", "message_id": "49cf7c48-015f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T01:40:52", "message_id": "e4131334-015d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T01:30:52", "message_id": "7e71ca3a-015c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T01:20:52", "message_id": "18c94bfa-015b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T01:10:51", "message_id": "b30b6c86-0159-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T01:00:51", "message_id": "4d663cb8-0158-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T00:50:51", "message_id": "e793cc9e-0156-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T00:40:51", "message_id": "81eadb40-0155-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T00:30:51", "message_id": "1c3b53d4-0154-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T00:20:51", "message_id": "b67e7716-0152-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T00:10:51", "message_id": "50dbb618-0151-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T00:00:51", "message_id": "eb29577c-014f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T23:50:50", "message_id": "857bad22-014e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T23:40:50", "message_id": "1fc74a8c-014d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T23:30:50", "message_id": "ba0e1bcc-014b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T23:20:50", "message_id": "54712d96-014a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T23:10:50", "message_id": "eeba4722-0148-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T23:00:50", "message_id": "894ae938-0147-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T22:50:50", "message_id": "235f542a-0146-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T22:40:50", "message_id": "bda8efd4-0144-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T22:30:50", "message_id": "57fe45c2-0143-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T22:20:50", "message_id": "f261dfae-0141-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T22:10:49", "message_id": "8c9d9dbc-0140-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T22:00:49", "message_id": "26fc6d4a-013f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T21:50:49", "message_id": "c1506dda-013d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T21:40:49", "message_id": "5ba913e8-013c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T21:30:49", "message_id": "f6002ece-013a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T21:20:49", "message_id": "90499c42-0139-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T21:10:49", "message_id": "2aa5b4ee-0138-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T21:00:49", "message_id": "c4fcc7dc-0136-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T20:50:49", "message_id": "5f49e470-0135-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T20:40:49", "message_id": "f9a05e84-0133-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T20:30:49", "message_id": "93e57c42-0132-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T20:20:49", "message_id": "2e58621e-0131-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T20:10:49", "message_id": "c894417e-012f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T20:00:49", "message_id": "62e4cbf6-012e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T19:50:49", "message_id": "fd41f946-012c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T19:40:48", "message_id": "97837770-012b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T19:30:48", "message_id": "31dbb4d8-012a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T19:20:48", "message_id": "cc3d8986-0128-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T19:10:48", "message_id": "66826d60-0127-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T19:00:48", "message_id": "00cd3668-0126-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T18:50:48", "message_id": "9b191856-0124-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T18:40:48", "message_id": "356e3adc-0123-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T18:30:48", "message_id": "cfb7f990-0121-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T18:20:48", "message_id": "6a064850-0120-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T18:10:47", "message_id": "04568156-011f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T18:00:47", "message_id": "9e9f046a-011d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T17:50:47", "message_id": "38f93316-011c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T17:40:47", "message_id": "d3459560-011a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T17:30:47", "message_id": "6d94750c-0119-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T17:20:47", "message_id": "07edc5b0-0118-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T17:10:47", "message_id": "a23b6aa2-0116-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T17:00:47", "message_id": "3c8e215a-0115-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T16:50:47", "message_id": "d6d95722-0113-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T16:40:47", "message_id": "7129db28-0112-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T16:30:47", "message_id": "0b8b0824-0111-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T16:20:46", "message_id": "a5d17c8a-010f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T16:10:46", "message_id": "40294ce2-010e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T16:00:46", "message_id": "da78295a-010c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T15:50:49", "message_id": "764e31a0-010b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T15:40:47", "message_id": "0f79384a-010a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T15:30:46", "message_id": "a99258f0-0108-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T15:20:46", "message_id": "43c94656-0107-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T15:10:46", "message_id": "de30bc3a-0105-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T15:00:46", "message_id": "786f3d6e-0104-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T14:50:46", "message_id": "12ca1d54-0103-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T14:40:46", "message_id": "ad15a1a0-0101-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T14:30:46", "message_id": "475fd41c-0100-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T14:20:46", "message_id": "e1bdcaf2-00fe-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T14:10:46", "message_id": "7c45255e-00fd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T14:00:45", "message_id": "164cfb1a-00fc-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T13:50:45", "message_id": "b0acd632-00fa-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T13:40:45", "message_id": "4af655ee-00f9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T13:30:45", "message_id": "e5476b8a-00f7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T13:20:46", "message_id": "7ffc9d32-00f6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T13:10:45", "message_id": "19dcab42-00f5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T13:00:45", "message_id": "b439bee8-00f3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T12:50:45", "message_id": "4e8136e0-00f2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T12:40:45", "message_id": "e8dab1b4-00f0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T12:30:44", "message_id": "8330b472-00ef-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T12:20:44", "message_id": "1d7b0174-00ee-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T12:10:44", "message_id": "b7cc4b68-00ec-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T12:00:44", "message_id": "521f5ebe-00eb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T11:50:44", "message_id": "ec788a1e-00e9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T11:40:44", "message_id": "86c18532-00e8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T11:30:44", "message_id": "211a9616-00e7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T11:20:44", "message_id": "bb69daee-00e5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T11:10:44", "message_id": "55c16938-00e4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T11:00:44", "message_id": "f0090584-00e2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T10:50:44", "message_id": "8a5ad0c4-00e1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T10:40:43", "message_id": "24aa5c32-00e0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T10:30:43", "message_id": "bf01af26-00de-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T10:20:43", "message_id": "594d6310-00dd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T10:10:43", "message_id": "f3a19dc0-00db-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T10:00:43", "message_id": "8e02eb78-00da-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T09:50:43", "message_id": "2841fdca-00d9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T09:40:43", "message_id": "c29c94fe-00d7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T09:30:43", "message_id": "5cecaf78-00d6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T09:20:43", "message_id": "f73ee020-00d4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T09:10:43", "message_id": "919908c8-00d3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T09:00:43", "message_id": "2be59966-00d2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T08:50:42", "message_id": "c62f5978-00d0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T08:40:42", "message_id": "6089e346-00cf-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T08:30:42", "message_id": "fade1694-00cd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T08:20:42", "message_id": "952ed4e2-00cc-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T08:10:42", "message_id": "2f799a52-00cb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T08:00:42", "message_id": "c9c955cc-00c9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T07:50:42", "message_id": "641a7252-00c8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T07:40:42", "message_id": "fe9649d4-00c6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T07:30:42", "message_id": "98c74faa-00c5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T07:20:42", "message_id": "330abe50-00c4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T07:10:42", "message_id": "cd5d9d4e-00c2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T07:00:41", "message_id": "67b32bc2-00c1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T06:50:41", "message_id": "01fe9128-00c0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T06:40:41", "message_id": "9c52f720-00be-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T06:30:41", "message_id": "36a5caca-00bd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T06:20:41", "message_id": "d0f1e606-00bb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T06:10:41", "message_id": "6b485908-00ba-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T06:00:41", "message_id": "05a39a3c-00b9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T05:50:41", "message_id": "9fef85da-00b7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T05:40:41", "message_id": "3a46e544-00b6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T05:30:41", "message_id": "d4931c64-00b4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T05:20:41", "message_id": "6ee46af4-00b3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T05:10:41", "message_id": "0937e52e-00b2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T05:00:40", "message_id": "a38cc6a0-00b0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T04:50:40", "message_id": "3df27cf0-00af-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T04:40:40", "message_id": "d84a4dde-00ad-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T04:30:40", "message_id": "729783ea-00ac-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T04:20:40", "message_id": "0cf7a750-00ab-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T04:10:40", "message_id": "a751477c-00a9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T04:00:40", "message_id": "41c69e30-00a8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T03:50:41", "message_id": "dc438d1c-00a6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T03:40:40", "message_id": "765696da-00a5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T03:30:40", "message_id": "10dc503e-00a4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T03:20:40", "message_id": "ab051346-00a2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T03:10:40", "message_id": "45608db4-00a1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T03:00:40", "message_id": "dfb489f8-009f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T02:50:40", "message_id": "79f822c4-009e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T02:40:40", "message_id": "148105ba-009d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T02:30:40", "message_id": "ae9eef2e-009b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T02:20:40", "message_id": "48f51334-009a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T02:10:39", "message_id": "e348e552-0098-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T02:00:39", "message_id": "7d9b2db0-0097-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T01:50:39", "message_id": "17d85b98-0096-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T01:40:39", "message_id": "b22820ea-0094-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T01:30:39", "message_id": "4c7ae6fc-0093-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T01:20:39", "message_id": "e6d75b7e-0091-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T01:10:39", "message_id": "811bfa8e-0090-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T01:00:39", "message_id": "1b7a37d2-008f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T00:50:39", "message_id": "b5c0f486-008d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T00:40:38", "message_id": "500b5fe2-008c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T00:30:38", "message_id": "ea6bb0d4-008a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T00:20:38", "message_id": "84c0de18-0089-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T00:10:38", "message_id": "1f0d58fe-0088-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T00:00:38", "message_id": "b95e1260-0086-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T23:50:38", "message_id": "53a917c2-0085-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T23:40:38", "message_id": "ee0a059e-0083-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T23:30:38", "message_id": "884ffd90-0082-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T23:20:38", "message_id": "229a0870-0081-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T23:10:38", "message_id": "bcf69e3a-007f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T23:00:38", "message_id": "577ebd90-007e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T22:50:37", "message_id": "f19129a6-007c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T22:40:37", "message_id": "8be9c546-007b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T22:30:37", "message_id": "2629c0ae-007a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T22:20:37", "message_id": "c08606c8-0078-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T22:10:37", "message_id": "5ad5b482-0077-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T22:00:37", "message_id": "f5270d8a-0075-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T21:50:37", "message_id": "8f82f594-0074-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T21:40:37", "message_id": "29cc8f90-0073-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T21:30:37", "message_id": "c421c81e-0071-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T21:20:37", "message_id": "5e82862a-0070-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T21:10:37", "message_id": "f8c68dd2-006e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T21:00:36", "message_id": "930fdc6a-006d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T20:50:36", "message_id": "2d5d63de-006c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T20:40:36", "message_id": "c7b04be2-006a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T20:30:36", "message_id": "6208e340-0069-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T20:20:36", "message_id": "fc4e0ec8-0067-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T20:10:36", "message_id": "96ab1710-0066-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T20:00:36", "message_id": "30f681da-0065-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T19:50:36", "message_id": "cb4e6bf0-0063-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T19:40:36", "message_id": "65995a82-0062-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T19:30:36", "message_id": "ffeba5b0-0060-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T19:20:36", "message_id": "9a37ba66-005f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T19:10:35", "message_id": "348c97e6-005e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T19:00:35", "message_id": "cee058e8-005c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T18:50:35", "message_id": "69300e9a-005b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T18:40:35", "message_id": "037cbec8-005a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T18:30:35", "message_id": "9ddcf8b8-0058-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T18:20:35", "message_id": "381cf9ac-0057-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T18:10:35", "message_id": "d27a2512-0055-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T18:00:35", "message_id": "6ccc08c6-0054-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T17:50:35", "message_id": "071ec79e-0053-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T17:40:35", "message_id": "a17879a4-0051-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T17:30:35", "message_id": "3bcc9258-0050-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T17:20:35", "message_id": "d619f5aa-004e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T17:10:34", "message_id": "706a4012-004d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T17:00:34", "message_id": "0ab8f23c-004c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T16:50:34", "message_id": "a50bd25c-004a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T16:40:34", "message_id": "3f66f108-0049-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T16:30:34", "message_id": "d9b90c5c-0047-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T16:20:34", "message_id": "740daecc-0046-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T16:10:34", "message_id": "0e59fe42-0045-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T16:00:34", "message_id": "a8b55e0c-0043-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T15:50:34", "message_id": "43044362-0042-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T15:40:34", "message_id": "dd514b74-0040-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T15:30:34", "message_id": "77a6662a-003f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T15:20:34", "message_id": "11fc4f16-003e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T15:10:33", "message_id": "ac4b6414-003c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T15:00:33", "message_id": "469629a2-003b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T14:50:33", "message_id": "e0ee8b4a-0039-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T14:40:33", "message_id": "7b389b66-0038-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T14:30:33", "message_id": "1592fa46-0037-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T14:20:33", "message_id": "afde73ca-0035-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T14:10:33", "message_id": "4a409508-0034-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T14:00:33", "message_id": "e4c1dbb6-0032-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T13:50:33", "message_id": "7ed3d31e-0031-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T13:40:33", "message_id": "1931daac-0030-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T13:30:33", "message_id": "b37ffe06-002e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T13:20:33", "message_id": "4ddb59a2-002d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T13:10:32", "message_id": "e827d230-002b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T13:00:32", "message_id": "8275f7ba-002a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T12:50:32", "message_id": "1cca331e-0029-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T12:40:32", "message_id": "b7102cf0-0027-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T12:30:32", "message_id": "51692966-0026-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T12:20:32", "message_id": "ebb3336a-0024-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T12:10:32", "message_id": "85fd3f44-0023-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T12:00:32", "message_id": "205a600a-0022-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T11:50:32", "message_id": "baa6490a-0020-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T11:40:32", "message_id": "550d349c-001f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T11:30:32", "message_id": "ef62f74a-001d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T11:20:31", "message_id": "89a46aa2-001c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T11:10:32", "message_id": "24154ba8-001b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T11:00:31", "message_id": "be54e8ce-0019-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T10:50:31", "message_id": "58a6d9f2-0018-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T10:40:31", "message_id": "f3032318-0016-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T10:30:31", "message_id": "8d708e38-0015-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T10:20:31", "message_id": "27ba6858-0014-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T10:10:31", "message_id": "c221427e-0012-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T10:00:31", "message_id": "5c4570ca-0011-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T09:50:31", "message_id": "f694e8ce-000f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T09:40:31", "message_id": "90de0a2a-000e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T09:30:31", "message_id": "2b40be0c-000d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T09:20:30", "message_id": "c58536c0-000b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T09:10:30", "message_id": "5fd3d4fe-000a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T09:00:30", "message_id": "fa2dcb7e-0008-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T08:50:30", "message_id": "947c84c4-0007-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T08:40:30", "message_id": "2ed57e60-0006-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T08:30:30", "message_id": "c92b3fb0-0004-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T08:20:30", "message_id": "6376ffca-0003-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T08:10:30", "message_id": "fdd69276-0001-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T08:00:30", "message_id": "981ccc4e-0000-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T07:50:30", "message_id": "326bd8dc-ffff-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T07:40:30", "message_id": "ccbca5f8-fffd-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T07:30:30", "message_id": "670b8b62-fffc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T07:20:29", "message_id": "01656734-fffb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T07:10:29", "message_id": "9bacc9c4-fff9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T07:00:29", "message_id": "35f7f06e-fff8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T06:50:29", "message_id": "d05ae56e-fff6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T06:40:29", "message_id": "6aa2c71a-fff5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T06:30:29", "message_id": "04f03ebc-fff4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T06:20:29", "message_id": "9f440b80-fff2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T06:10:29", "message_id": "3994965c-fff1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T06:00:29", "message_id": "d3ecd05e-ffef-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T05:50:29", "message_id": "6e45773e-ffee-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T05:40:29", "message_id": "089e6784-ffed-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T05:30:28", "message_id": "a2e72350-ffeb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T05:20:28", "message_id": "3d2e83ba-ffea-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T05:10:28", "message_id": "d783d9d0-ffe8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T05:00:28", "message_id": "71d8ce5c-ffe7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T04:50:28", "message_id": "0c1c966c-ffe6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T04:40:28", "message_id": "a67e04fe-ffe4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T04:30:28", "message_id": "40c1eff0-ffe3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T04:20:28", "message_id": "db1bf610-ffe1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T04:10:28", "message_id": "756cd3e4-ffe0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T04:00:28", "message_id": "0fb54d52-ffdf-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T03:50:28", "message_id": "aa0c5fc8-ffdd-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T03:40:27", "message_id": "4459c6a8-ffdc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T03:30:27", "message_id": "deab0df4-ffda-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T03:20:27", "message_id": "78fa900c-ffd9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T03:10:27", "message_id": "134f1170-ffd8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T03:00:27", "message_id": "ada17ab2-ffd6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T02:50:27", "message_id": "47ecb552-ffd5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T02:40:27", "message_id": "e23b492c-ffd3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T02:30:27", "message_id": "7c95cdd2-ffd2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T02:20:27", "message_id": "17001b9a-ffd1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T02:10:27", "message_id": "b129ebc6-ffcf-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T02:00:26", "message_id": "4b857d36-ffce-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T01:50:26", "message_id": "e5cfd6c2-ffcc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T01:40:26", "message_id": "80217d72-ffcb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T01:30:26", "message_id": "1a729d4a-ffca-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T01:20:26", "message_id": "b4ca2e14-ffc8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T01:10:26", "message_id": "4f203c80-ffc7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T01:00:26", "message_id": "e96db9fe-ffc5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T00:50:26", "message_id": "83c33d00-ffc4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T00:40:26", "message_id": "1e177666-ffc3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T00:30:26", "message_id": "b865826e-ffc1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T00:20:26", "message_id": "5310c6a4-ffc0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T00:10:25", "message_id": "ed05af88-ffbe-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T00:00:26", "message_id": "8781830e-ffbd-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T23:50:25", "message_id": "21b1e420-ffbc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T23:40:25", "message_id": "bc07c2da-ffba-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T23:30:25", "message_id": "56608d46-ffb9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T23:20:25", "message_id": "f0cc3af8-ffb7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T23:10:25", "message_id": "8b1d35dc-ffb6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T23:00:25", "message_id": "25956438-ffb5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T22:50:25", "message_id": "bf8ffa50-ffb3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T22:40:25", "message_id": "59edd56a-ffb2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T22:30:25", "message_id": "f43df750-ffb0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T22:20:24", "message_id": "8e7e448e-ffaf-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T22:10:24", "message_id": "28e3ac64-ffae-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T22:00:24", "message_id": "c329e15a-ffac-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T21:50:24", "message_id": "5d6c5088-ffab-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T21:40:24", "message_id": "f7c64596-ffa9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T21:30:24", "message_id": "921eb4f4-ffa8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T21:20:24", "message_id": "2c66ce04-ffa7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T21:10:24", "message_id": "c6aae77c-ffa5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T21:00:24", "message_id": "610549d6-ffa4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T20:50:24", "message_id": "fb557832-ffa2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T20:40:23", "message_id": "95a1769a-ffa1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T20:30:23", "message_id": "2ff76de6-ffa0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T20:20:23", "message_id": "ca49d4c6-ff9e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T20:10:23", "message_id": "648f00d0-ff9d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T20:00:23", "message_id": "fee846fc-ff9b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T19:50:23", "message_id": "9931e2a6-ff9a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T19:40:23", "message_id": "338b69be-ff99-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T19:30:23", "message_id": "cddcaa20-ff97-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T19:20:23", "message_id": "68326ed6-ff96-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T19:10:23", "message_id": "02814ee6-ff95-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T19:00:23", "message_id": "9cca5828-ff93-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T18:50:22", "message_id": "37241762-ff92-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T18:40:22", "message_id": "d1761f88-ff90-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T18:30:22", "message_id": "6bb68904-ff8f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T18:20:22", "message_id": "060625c0-ff8e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T18:10:22", "message_id": "a05b6240-ff8c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T18:00:22", "message_id": "3aaf8210-ff8b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T17:50:22", "message_id": "d4ff8e70-ff89-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T17:40:22", "message_id": "6f572afc-ff88-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T17:30:22", "message_id": "09a688ca-ff87-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T17:20:22", "message_id": "a3f2b6d0-ff85-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T17:10:22", "message_id": "3e4b64cc-ff84-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T17:00:21", "message_id": "d8905b52-ff82-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T16:50:21", "message_id": "72d8f1da-ff81-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T16:40:21", "message_id": "0d2f2ea4-ff80-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T16:30:21", "message_id": "a78c05b4-ff7e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T16:20:21", "message_id": "41cf53a8-ff7d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T16:10:21", "message_id": "dc29b40e-ff7b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T16:00:21", "message_id": "767b1fa4-ff7a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T15:50:21", "message_id": "10cf38c6-ff79-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T15:40:21", "message_id": "ab1a89be-ff77-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T15:30:21", "message_id": "4566dac4-ff76-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T15:20:20", "message_id": "dfbab9d0-ff74-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T15:10:20", "message_id": "7a07e85c-ff73-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T15:00:20", "message_id": "145807fe-ff72-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T14:50:20", "message_id": "aeab2932-ff70-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T14:40:20", "message_id": "48f9da3a-ff6f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T14:30:20", "message_id": "e3600f38-ff6d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T14:20:20", "message_id": "7dafcc60-ff6c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T14:10:20", "message_id": "17fedce0-ff6b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T14:00:20", "message_id": "b24f47b4-ff69-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T13:50:20", "message_id": "4c9cc12c-ff68-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T13:40:20", "message_id": "e704b456-ff66-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T13:30:20", "message_id": "814a2372-ff65-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T13:20:19", "message_id": "1b9c0de8-ff64-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T13:10:19", "message_id": "b5f2d5e0-ff62-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T13:00:19", "message_id": "504e08be-ff61-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T12:50:19", "message_id": "eaa3cd6a-ff5f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T12:40:19", "message_id": "84ee77c8-ff5e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T12:30:19", "message_id": "1f44aeb6-ff5d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T12:20:19", "message_id": "b999fcde-ff5b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T12:10:19", "message_id": "53df8842-ff5a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T12:00:19", "message_id": "ee2db484-ff58-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T11:50:19", "message_id": "888639b8-ff57-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T11:40:19", "message_id": "22dafb86-ff56-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T11:30:19", "message_id": "bd2b3806-ff54-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T11:20:18", "message_id": "577b17fc-ff53-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T11:10:19", "message_id": "f1e8aa5e-ff51-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T11:00:18", "message_id": "8c2f5dd0-ff50-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T10:50:18", "message_id": "2682e836-ff4f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T10:40:18", "message_id": "c0deacaa-ff4d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T10:30:18", "message_id": "5b27604c-ff4c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T10:20:18", "message_id": "f57a5caa-ff4a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T10:10:18", "message_id": "8fd84d4a-ff49-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T10:00:18", "message_id": "2a33f422-ff48-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T09:50:18", "message_id": "c472a4fe-ff46-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T09:40:18", "message_id": "5eccda30-ff45-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T09:30:18", "message_id": "f90c3692-ff43-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T09:20:18", "message_id": "93654c26-ff42-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T09:10:17", "message_id": "2db64fd4-ff41-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T09:00:17", "message_id": "c7fa7ee6-ff3f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T08:50:17", "message_id": "624d7f7c-ff3e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T08:40:17", "message_id": "fca52996-ff3c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T08:30:17", "message_id": "96f2f61a-ff3b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T08:20:17", "message_id": "31362488-ff3a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T08:10:17", "message_id": "cb86fd66-ff38-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T08:00:17", "message_id": "65d62484-ff37-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T07:50:17", "message_id": "0027218e-ff36-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T07:40:16", "message_id": "9a74547a-ff34-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T07:30:16", "message_id": "34d030b8-ff33-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T07:20:16", "message_id": "cf177f98-ff31-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T07:10:16", "message_id": "6966d096-ff30-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T07:00:16", "message_id": "03c10d98-ff2f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T06:50:16", "message_id": "9e134944-ff2d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T06:40:16", "message_id": "38636058-ff2c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T06:30:16", "message_id": "d2aa3756-ff2a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T06:20:16", "message_id": "6d0c8a26-ff29-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T06:10:16", "message_id": "0769a510-ff28-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T06:00:16", "message_id": "a1a9ba90-ff26-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T05:50:16", "message_id": "3c05e430-ff25-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T05:40:15", "message_id": "d647fbc0-ff23-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T05:30:16", "message_id": "70c12fde-ff22-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T05:20:15", "message_id": "0af52026-ff21-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T05:10:15", "message_id": "a53a0f0e-ff1f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T05:00:15", "message_id": "3fa0e5c4-ff1e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T04:50:15", "message_id": "d9e46e64-ff1c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T04:40:15", "message_id": "743d76f6-ff1b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T04:30:15", "message_id": "0e9bfabc-ff1a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T04:20:15", "message_id": "a8dce5de-ff18-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T04:10:15", "message_id": "4338fba6-ff17-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T04:00:15", "message_id": "dd862f1e-ff15-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T03:50:15", "message_id": "77ef40c4-ff14-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T03:40:14", "message_id": "123014c6-ff13-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T03:30:14", "message_id": "ac7780de-ff11-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T03:20:14", "message_id": "46ce4a16-ff10-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T03:10:14", "message_id": "e132d696-ff0e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T03:00:14", "message_id": "7b70aa32-ff0d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T02:50:14", "message_id": "15de5896-ff0c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T02:40:14", "message_id": "b0288cb6-ff0a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T02:30:14", "message_id": "4a7ac0f6-ff09-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T02:20:14", "message_id": "e4c2c502-ff07-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T02:10:14", "message_id": "7f13757c-ff06-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T02:00:14", "message_id": "1960cd52-ff05-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T01:50:14", "message_id": "b3c110fc-ff03-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T01:40:13", "message_id": "4e05a6de-ff02-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T01:30:13", "message_id": "e85dffa8-ff00-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T01:20:13", "message_id": "82afdc04-feff-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T01:10:13", "message_id": "1d08a3dc-fefe-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T01:00:13", "message_id": "b74b9b9a-fefc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T00:50:13", "message_id": "51a81fee-fefb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T00:40:13", "message_id": "ebfd706e-fef9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T00:30:13", "message_id": "863f695e-fef8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T00:20:13", "message_id": "20914d6c-fef7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T00:10:13", "message_id": "bae42a08-fef5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T00:00:12", "message_id": "552c11d6-fef4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T23:50:12", "message_id": "ef8f45ec-fef2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T23:40:12", "message_id": "89df9342-fef1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T23:30:12", "message_id": "24358ffc-fef0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T23:20:12", "message_id": "be971216-feee-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T23:10:12", "message_id": "58cf0f3e-feed-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T23:00:12", "message_id": "f36cc222-feeb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T22:50:12", "message_id": "8d78ce4e-feea-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T22:40:12", "message_id": "27cdd180-fee9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T22:30:12", "message_id": "c2201632-fee7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T22:20:12", "message_id": "5c68d00a-fee6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T22:10:12", "message_id": "f6d08630-fee4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T22:00:12", "message_id": "9139e178-fee3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T21:50:11", "message_id": "2b6960fe-fee2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T21:40:12", "message_id": "c5e0eb9a-fee0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T21:30:11", "message_id": "6017c5d2-fedf-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T21:20:11", "message_id": "fa6a9d8c-fedd-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T21:10:11", "message_id": "94b346ca-fedc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T21:00:11", "message_id": "2efa180a-fedb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T20:50:11", "message_id": "c956d25a-fed9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T20:40:11", "message_id": "63b56944-fed8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T20:30:11", "message_id": "fe014146-fed6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T20:20:11", "message_id": "987f0cbe-fed5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T20:10:11", "message_id": "329e1bc0-fed4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T20:00:11", "message_id": "cd07393c-fed2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T19:50:10", "message_id": "674f5170-fed1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T19:40:10", "message_id": "01a6b7d8-fed0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T19:30:10", "message_id": "9bf7a056-fece-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T19:20:10", "message_id": "36447140-fecd-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T19:10:10", "message_id": "d0947e72-fecb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T19:00:10", "message_id": "6ad45158-feca-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T18:50:10", "message_id": "0550d41a-fec9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T18:40:10", "message_id": "9f881964-fec7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T18:30:10", "message_id": "39d20b1c-fec6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T18:20:10", "message_id": "d4282c66-fec4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T18:10:09", "message_id": "6e749f36-fec3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T18:00:09", "message_id": "08b93eaa-fec2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T17:50:09", "message_id": "a3118086-fec0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T17:40:09", "message_id": "3d69426a-febf-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T17:30:09", "message_id": "d7b4c706-febd-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T17:20:09", "message_id": "720c5d52-febc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T17:10:09", "message_id": "0c525cba-febb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T17:00:09", "message_id": "a6a4ba80-feb9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T16:50:09", "message_id": "40f84b94-feb8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T16:40:09", "message_id": "db4138ca-feb6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T16:30:08", "message_id": "759883e4-feb5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T16:20:08", "message_id": "0fe53b88-feb4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T16:10:08", "message_id": "aa427774-feb2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T16:00:08", "message_id": "4494dc4c-feb1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T15:50:08", "message_id": "deddc8ba-feaf-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T15:40:08", "message_id": "793bcecc-feae-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T15:30:08", "message_id": "1381213c-fead-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T15:20:08", "message_id": "add69e76-feab-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T15:10:08", "message_id": "48246172-feaa-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T15:00:08", "message_id": "e2757fce-fea8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T14:50:08", "message_id": "7ccb27d8-fea7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T14:40:08", "message_id": "17299938-fea6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T14:30:08", "message_id": "b18322f8-fea4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T14:20:07", "message_id": "4bd1b812-fea3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T14:10:07", "message_id": "e61ea5c6-fea1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T14:00:07", "message_id": "808c5ccc-fea0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T13:50:07", "message_id": "1ad00e8e-fe9f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T13:40:07", "message_id": "b5129c7a-fe9d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T13:30:07", "message_id": "4f65a2f6-fe9c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T13:20:07", "message_id": "e9b5b51e-fe9a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T13:10:07", "message_id": "84044f7e-fe99-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T13:00:07", "message_id": "1e5fc5d2-fe98-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T12:50:07", "message_id": "b8b471a2-fe96-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T12:40:07", "message_id": "531929d8-fe95-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T12:30:07", "message_id": "ed586e52-fe93-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T12:20:06", "message_id": "87a3bcc0-fe92-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T12:10:06", "message_id": "22018cb8-fe91-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T12:00:06", "message_id": "bc52a998-fe8f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T11:50:06", "message_id": "56a123c8-fe8e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T11:40:06", "message_id": "f0ff2944-fe8c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T11:30:07", "message_id": "8bd0b188-fe8b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T11:20:06", "message_id": "25976dc2-fe8a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T11:10:06", "message_id": "bfe37102-fe88-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T11:00:06", "message_id": "5a3c644a-fe87-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T10:50:06", "message_id": "f49073c6-fe85-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T10:40:06", "message_id": "8ee21634-fe84-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T10:30:05", "message_id": "292fc5f8-fe83-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T10:20:05", "message_id": "c385cfe6-fe81-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T10:10:05", "message_id": "5dcc359c-fe80-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T10:00:05", "message_id": "f823742c-fe7e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T09:50:05", "message_id": "926fba7e-fe7d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T09:40:05", "message_id": "2cc64b44-fe7c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T09:30:05", "message_id": "c71b5470-fe7a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T09:20:05", "message_id": "6164c8f6-fe79-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T09:10:05", "message_id": "fbbd8200-fe77-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T09:00:05", "message_id": "960bf744-fe76-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T08:50:05", "message_id": "305d2b80-fe75-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T08:40:04", "message_id": "caafe97c-fe73-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T08:30:04", "message_id": "64fe872e-fe72-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T08:20:04", "message_id": "ff521874-fe70-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T08:10:04", "message_id": "99a7209c-fe6f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T08:00:04", "message_id": "33f918a0-fe6e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T07:50:04", "message_id": "ce49c258-fe6c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T07:40:04", "message_id": "68aae2b6-fe6b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T07:30:04", "message_id": "02fb0f14-fe6a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T07:20:04", "message_id": "9d4f1f26-fe68-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T07:10:04", "message_id": "379eb084-fe67-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T07:00:04", "message_id": "d1eecb9e-fe65-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T06:50:04", "message_id": "6c3e7a66-fe64-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T06:40:04", "message_id": "069b217e-fe63-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T06:30:03", "message_id": "a0ede9e8-fe61-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T06:20:03", "message_id": "3b3866b0-fe60-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T06:10:03", "message_id": "d5840e4c-fe5e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T06:00:03", "message_id": "6fd57afa-fe5d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T05:50:03", "message_id": "0a27c650-fe5c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T05:40:03", "message_id": "a47ee686-fe5a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T05:30:03", "message_id": "3ec68430-fe59-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T05:20:03", "message_id": "d91a7642-fe57-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T05:10:03", "message_id": "7371edee-fe56-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T05:00:03", "message_id": "0dbd83c4-fe55-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T04:50:02", "message_id": "a80fc8ee-fe53-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T04:40:02", "message_id": "42663c22-fe52-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T04:30:02", "message_id": "dcbdb0b8-fe50-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T04:20:02", "message_id": "770635e8-fe4f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T04:10:02", "message_id": "114d15b0-fe4e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T04:00:02", "message_id": "aba8e5b4-fe4c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T03:50:02", "message_id": "45f7b278-fe4b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T03:40:02", "message_id": "e04cbd3e-fe49-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T03:30:02", "message_id": "7a972a98-fe48-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T03:20:02", "message_id": "14e4b41e-fe47-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T03:10:02", "message_id": "af4140b0-fe45-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T03:00:01", "message_id": "498c62dc-fe44-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T02:50:01", "message_id": "e3dba6d8-fe42-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T02:40:01", "message_id": "7e2a13c0-fe41-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T02:30:01", "message_id": "1888d1a6-fe40-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T02:20:01", "message_id": "b2dc00f4-fe3e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T02:10:01", "message_id": "4d26db36-fe3d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T02:00:01", "message_id": "e77dead2-fe3b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T01:50:01", "message_id": "81d106c0-fe3a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T01:40:01", "message_id": "1c2ee6ee-fe39-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T01:30:01", "message_id": "b67e4c96-fe37-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T01:20:01", "message_id": "50da00a2-fe36-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T01:10:01", "message_id": "eb208930-fe34-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T01:00:01", "message_id": "8579f68a-fe33-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T00:50:00", "message_id": "1fc1003c-fe32-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T00:40:00", "message_id": "ba19a906-fe30-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T00:30:00", "message_id": "54651984-fe2f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T00:20:00", "message_id": "eeb46d0c-fe2d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T00:10:00", "message_id": "890833cc-fe2c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T00:00:00", "message_id": "235b26ac-fe2b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T23:50:00", "message_id": "bdadda80-fe29-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T23:40:00", "message_id": "5802700c-fe28-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T23:30:00", "message_id": "f2510e7c-fe26-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T23:20:00", "message_id": "8cae6f0c-fe25-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T23:10:00", "message_id": "273a8ff8-fe24-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T23:00:00", "message_id": "c18d6032-fe22-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T22:49:59", "message_id": "5b964e0c-fe21-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T22:39:59", "message_id": "f5e24238-fe1f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T22:29:59", "message_id": "903c5cee-fe1e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T22:19:59", "message_id": "2a90c6ec-fe1d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T22:09:59", "message_id": "c4dd9d12-fe1b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T21:59:59", "message_id": "5f2ddfdc-fe1a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T21:49:59", "message_id": "f97f176a-fe18-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T21:39:59", "message_id": "93cb917e-fe17-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T21:29:59", "message_id": "2e1577e2-fe16-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T21:19:58", "message_id": "c86ceb10-fe14-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T21:09:58", "message_id": "62bdeacc-fe13-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T20:59:58", "message_id": "fd124548-fe11-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T20:49:58", "message_id": "9758b792-fe10-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T20:39:58", "message_id": "31aa0370-fe0f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T20:29:58", "message_id": "cbf96ab2-fe0d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T20:19:58", "message_id": "6653ff70-fe0c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T20:09:58", "message_id": "009ddb52-fe0b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T19:59:58", "message_id": "9af3c9c0-fe09-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T19:49:58", "message_id": "35467f1a-fe08-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T19:39:58", "message_id": "cfa340e0-fe06-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T19:29:58", "message_id": "69efded0-fe05-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T19:19:57", "message_id": "04412464-fe04-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T19:09:57", "message_id": "9e975666-fe02-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T18:59:57", "message_id": "38e639c8-fe01-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T18:49:57", "message_id": "d33516e0-fdff-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T18:39:57", "message_id": "6d8e08c0-fdfe-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T18:29:57", "message_id": "07e0e62e-fdfd-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T18:19:57", "message_id": "a2364266-fdfb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T18:09:57", "message_id": "3c95ec78-fdfa-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T17:59:57", "message_id": "d6db4636-fdf8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T17:49:57", "message_id": "71313e86-fdf7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T17:39:57", "message_id": "0b8241c6-fdf6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T17:29:57", "message_id": "a5d83160-fdf4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T17:19:56", "message_id": "4027b9ea-fdf3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T17:09:56", "message_id": "da7be054-fdf1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T16:59:56", "message_id": "74ccf064-fdf0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T16:49:56", "message_id": "0f1dbb82-fdef-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T16:39:56", "message_id": "a9792452-fded-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T16:29:56", "message_id": "43f39ac8-fdec-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T16:19:56", "message_id": "de2509a8-fdea-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T16:09:56", "message_id": "78819c02-fde9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T15:59:56", "message_id": "12d18544-fde8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T15:49:56", "message_id": "ad295678-fde6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T15:39:56", "message_id": "477d5c80-fde5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T15:29:56", "message_id": "e1ce981e-fde3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T15:19:56", "message_id": "7c4ffc36-fde2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T15:09:56", "message_id": "16697790-fde1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T14:59:55", "message_id": "b0b91c58-fddf-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T14:49:55", "message_id": "4b16c720-fdde-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T14:39:55", "message_id": "e56122dc-fddc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T14:29:55", "message_id": "7fb59f68-fddb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T14:19:55", "message_id": "1a068278-fdda-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T14:09:55", "message_id": "b45cbf92-fdd8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T13:59:55", "message_id": "4ea89e38-fdd7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T13:49:55", "message_id": "e8fdc38e-fdd5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T13:39:55", "message_id": "834a0c9c-fdd4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T13:29:55", "message_id": "1d9815f2-fdd3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T13:19:55", "message_id": "b7e9a8a2-fdd1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T13:09:54", "message_id": "523e87f8-fdd0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T12:59:54", "message_id": "ec91c22c-fdce-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T12:49:54", "message_id": "86e28052-fdcd-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T12:39:54", "message_id": "21315162-fdcc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T12:29:54", "message_id": "bb81c97e-fdca-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T12:19:54", "message_id": "55d59728-fdc9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T12:09:54", "message_id": "f0201f3a-fdc7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T11:59:54", "message_id": "8a761c62-fdc6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T11:49:54", "message_id": "24cb6abc-fdc5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T11:39:54", "message_id": "bf1fbb88-fdc3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T11:29:54", "message_id": "596f704a-fdc2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T11:19:53", "message_id": "f3c58e92-fdc0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T11:09:53", "message_id": "8e169b28-fdbf-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T10:59:53", "message_id": "286a653a-fdbe-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T10:49:54", "message_id": "c2e5ebc2-fdbc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T10:39:53", "message_id": "5d0c52a6-fdbb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T10:29:53", "message_id": "f768c3ae-fdb9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T10:19:53", "message_id": "91b6910e-fdb8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T10:09:53", "message_id": "2c178c64-fdb7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T09:59:53", "message_id": "c669ed2c-fdb5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T09:49:53", "message_id": "60be4730-fdb4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T09:39:53", "message_id": "fb0f15a0-fdb2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T09:29:53", "message_id": "956417ba-fdb1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T09:19:53", "message_id": "2fb28948-fdb0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T09:09:52", "message_id": "c9ffdc50-fdae-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T08:59:52", "message_id": "64569912-fdad-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T08:49:52", "message_id": "feb76e3e-fdab-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T08:39:52", "message_id": "98fc4ce6-fdaa-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T08:29:52", "message_id": "334c7386-fda9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T08:19:52", "message_id": "cd9bc538-fda7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T08:09:52", "message_id": "680825dc-fda6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T07:59:52", "message_id": "02436eb0-fda5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T07:49:52", "message_id": "9c917054-fda3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T07:39:52", "message_id": "36e99be2-fda2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T07:29:52", "message_id": "d1383f3e-fda0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T07:19:52", "message_id": "6b8c2642-fd9f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T07:09:52", "message_id": "06049aa8-fd9e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T06:59:51", "message_id": "a028d2f4-fd9c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T06:49:51", "message_id": "3a7fa622-fd9b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T06:39:51", "message_id": "d4c6fd5e-fd99-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T06:29:51", "message_id": "6f1bb054-fd98-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T06:19:51", "message_id": "0966e1c6-fd97-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T06:09:51", "message_id": "a3bc6504-fd95-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T05:59:51", "message_id": "3e0fe22c-fd94-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T05:49:51", "message_id": "d86156be-fd92-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T05:39:51", "message_id": "72b2e1b2-fd91-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T05:29:51", "message_id": "0d0fad8c-fd90-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T05:19:50", "message_id": "a75dc8f8-fd8e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T05:09:50", "message_id": "41a8af7e-fd8d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T04:59:50", "message_id": "dc09232a-fd8b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T04:49:50", "message_id": "76668928-fd8a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T04:39:50", "message_id": "10c5754e-fd89-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T04:29:50", "message_id": "ab18c396-fd87-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T04:19:50", "message_id": "4551808a-fd86-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T04:09:50", "message_id": "dfbd584e-fd84-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T03:59:50", "message_id": "79d48b16-fd83-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T03:49:50", "message_id": "14450e98-fd82-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T03:39:50", "message_id": "ae9db01e-fd80-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T03:29:50", "message_id": "48f99102-fd7f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T03:19:50", "message_id": "e3587d32-fd7d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T03:09:50", "message_id": "7da4ba06-fd7c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T02:59:49", "message_id": "17db6950-fd7b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T02:49:49", "message_id": "b21cd82a-fd79-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T02:39:49", "message_id": "4cadcf2c-fd78-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T02:29:49", "message_id": "e6ef4144-fd76-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T02:19:49", "message_id": "814a71fc-fd75-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T02:09:49", "message_id": "1b95c02e-fd74-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T01:59:49", "message_id": "b5d492de-fd72-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T01:49:49", "message_id": "50290e0c-fd71-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T01:39:49", "message_id": "ea868c74-fd6f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T01:29:49", "message_id": "8503ac2a-fd6e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T01:19:49", "message_id": "1f64ce22-fd6d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T01:09:49", "message_id": "b9a18fe0-fd6b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T00:59:48", "message_id": "53da5cf6-fd6a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T00:49:48", "message_id": "ee1b6442-fd68-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T00:39:48", "message_id": "8882853a-fd67-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T00:29:48", "message_id": "22db5532-fd66-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T00:19:48", "message_id": "bd36c8f2-fd64-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T00:09:48", "message_id": "57a77fc8-fd63-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-04T23:59:48", "message_id": "f1fe2510-fd61-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-04T23:49:48", "message_id": "8c38bea8-fd60-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-04T23:39:05", "message_id": "0cfd1946-fd5f-11e2-b8cf-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-04T23:29:05", "message_id": "a768ed7c-fd5d-11e2-b8cf-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}], "http://localhost:8777/v2/meters/storage.objects.containers?q.field=resource_id&q.value=7ec5ec9750414a4c8e767e16e1b6c9cf": [{"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-12T04:01:18", "message_id": "d76c6d72-0303-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-12T03:51:18", "message_id": "71baf80a-0302-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-12T03:41:18", "message_id": "0c093662-0301-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-12T03:31:18", "message_id": "a66c4e44-02ff-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-12T03:21:18", "message_id": "40b7dd80-02fe-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-12T03:11:18", "message_id": "db0df574-02fc-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-12T03:01:17", "message_id": "75537822-02fb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-12T02:51:17", "message_id": "0fafd7a0-02fa-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-12T02:41:17", "message_id": "a9ec708c-02f8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-12T02:31:17", "message_id": "44482f74-02f7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-12T02:21:17", "message_id": "de93a452-02f5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-12T02:11:17", "message_id": "78e66604-02f4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-12T02:01:17", "message_id": "133f604a-02f3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-12T01:51:17", "message_id": "ad94fb48-02f1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-12T01:41:17", "message_id": "47e15518-02f0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-12T01:31:17", "message_id": "e233f0a0-02ee-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-12T01:21:17", "message_id": "7c7f25fa-02ed-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-12T01:11:16", "message_id": "16d6227c-02ec-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-12T01:01:16", "message_id": "b11351f4-02ea-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-12T00:51:16", "message_id": "4b7b13aa-02e9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-12T00:41:16", "message_id": "e5bf5568-02e7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-12T00:31:16", "message_id": "800f3694-02e6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-12T00:21:16", "message_id": "1a8dd844-02e5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-12T00:11:16", "message_id": "b4af2b50-02e3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-12T00:01:16", "message_id": "4f054060-02e2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T23:51:16", "message_id": "e9563a04-02e0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T23:41:16", "message_id": "83afcde2-02df-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T23:31:16", "message_id": "1e05af30-02de-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T23:21:15", "message_id": "b84c4696-02dc-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T23:11:15", "message_id": "52ad2a0e-02db-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T23:01:16", "message_id": "ed35fcba-02d9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T22:51:15", "message_id": "874e0ac4-02d8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T22:41:15", "message_id": "2199b706-02d7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T22:31:15", "message_id": "bbecd95c-02d5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T22:21:15", "message_id": "56380bf0-02d4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T22:11:15", "message_id": "f087e808-02d2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T22:01:15", "message_id": "8ade8800-02d1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T21:51:15", "message_id": "25375ce4-02d0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T21:41:15", "message_id": "bf886d9e-02ce-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T21:31:14", "message_id": "59d4813c-02cd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T21:21:14", "message_id": "f42acf36-02cb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T21:11:14", "message_id": "8e7bdbfe-02ca-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T21:01:14", "message_id": "28cae68e-02c9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T20:51:14", "message_id": "c320c138-02c7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T20:41:14", "message_id": "5d6b7406-02c6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T20:31:14", "message_id": "f7c4bf8c-02c4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T20:21:14", "message_id": "9215cf4c-02c3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T20:11:14", "message_id": "2c72d6fe-02c2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T20:01:14", "message_id": "c6bcf250-02c0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T19:51:14", "message_id": "611219e0-02bf-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T19:41:14", "message_id": "fb600ffe-02bd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T19:31:14", "message_id": "95b53aae-02bc-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T19:21:13", "message_id": "300450d8-02bb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T19:11:13", "message_id": "ca511e20-02b9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T19:01:13", "message_id": "649c3f98-02b8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T18:51:13", "message_id": "feea2288-02b6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T18:41:13", "message_id": "9942d048-02b5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T18:31:13", "message_id": "338eeea4-02b4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T18:21:13", "message_id": "cddff66c-02b2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T18:11:13", "message_id": "6830ca90-02b1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T18:01:13", "message_id": "0280cd2c-02b0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T17:51:13", "message_id": "9cd5d612-02ae-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T17:41:12", "message_id": "3723ab10-02ad-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T17:31:12", "message_id": "d17b451c-02ab-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T17:21:12", "message_id": "6bc9242e-02aa-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T17:11:12", "message_id": "06172456-02a9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T17:01:12", "message_id": "a0772930-02a7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T16:51:12", "message_id": "3ac7440e-02a6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T16:41:12", "message_id": "d5267a4e-02a4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T16:31:12", "message_id": "6f6f81c4-02a3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T16:21:12", "message_id": "09b78382-02a2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T16:11:12", "message_id": "a40dc63c-02a0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T16:01:12", "message_id": "3e692c78-029f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T15:51:12", "message_id": "d8b818f4-029d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T15:41:12", "message_id": "731689aa-029c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T15:31:11", "message_id": "0d70f82a-029b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T15:21:11", "message_id": "a7d02550-0299-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T15:11:11", "message_id": "421e2500-0298-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T15:01:11", "message_id": "dc6c4fda-0296-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T14:51:11", "message_id": "76b71810-0295-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T14:41:11", "message_id": "1108e5da-0294-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T14:31:11", "message_id": "ab589718-0292-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T14:21:11", "message_id": "45ab3a84-0291-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T14:11:11", "message_id": "dff93944-028f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T14:01:11", "message_id": "7a53f85a-028e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T13:51:11", "message_id": "14a87e82-028d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T13:41:11", "message_id": "aefb0da8-028b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T13:31:10", "message_id": "494cbc96-028a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T13:21:10", "message_id": "e397c162-0288-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T13:11:10", "message_id": "7df0cae4-0287-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T13:01:10", "message_id": "18491a30-0286-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T12:51:10", "message_id": "b29345b8-0284-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T12:41:10", "message_id": "4ce919c8-0283-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T12:31:10", "message_id": "e736097a-0281-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T12:21:10", "message_id": "818121ec-0280-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T12:11:10", "message_id": "1bd4a108-027f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T12:01:10", "message_id": "b62208a6-027d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T11:51:10", "message_id": "507aaaa4-027c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T11:41:09", "message_id": "eac07398-027a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T11:31:09", "message_id": "85154074-0279-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T11:21:09", "message_id": "1f65af1c-0278-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T11:11:09", "message_id": "b9b7d1d2-0276-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T11:01:09", "message_id": "5408293c-0275-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T10:51:09", "message_id": "ee567e96-0273-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T10:41:09", "message_id": "88accfec-0272-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T10:31:09", "message_id": "2303ad9c-0271-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T10:21:09", "message_id": "bd4a9192-026f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T10:11:09", "message_id": "57ad6b94-026e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T10:01:09", "message_id": "f1f95552-026c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T09:51:08", "message_id": "8c4a1076-026b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T09:41:08", "message_id": "26981490-026a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T09:31:08", "message_id": "c0ef8994-0268-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T09:21:08", "message_id": "5b3fcb5a-0267-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T09:11:08", "message_id": "f597bc6e-0265-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T09:01:08", "message_id": "8fe80794-0264-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T08:51:08", "message_id": "2a44cd10-0263-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T08:41:08", "message_id": "c497ffc4-0261-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T08:31:08", "message_id": "5eee0782-0260-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T08:21:08", "message_id": "f9327578-025e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T08:11:08", "message_id": "9386142e-025d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T08:01:08", "message_id": "2ddd40b2-025c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T07:51:07", "message_id": "c82683d8-025a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T07:41:07", "message_id": "6283055c-0259-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T07:31:07", "message_id": "fccf5d24-0257-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T07:21:07", "message_id": "97251c44-0256-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T07:11:07", "message_id": "31662a0c-0255-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T07:01:07", "message_id": "cbca98d2-0253-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T06:51:07", "message_id": "66178c9e-0252-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T06:41:07", "message_id": "0065df28-0251-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T06:31:07", "message_id": "9ab6300c-024f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T06:21:07", "message_id": "3516350e-024e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T06:11:07", "message_id": "cf5f8554-024c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T06:01:07", "message_id": "69c8b11c-024b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T05:51:07", "message_id": "040db332-024a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T05:41:06", "message_id": "9e5c7574-0248-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T05:31:06", "message_id": "38a5de92-0247-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T05:21:06", "message_id": "d2f80ee0-0245-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T05:11:06", "message_id": "6d40799e-0244-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T05:01:06", "message_id": "07988718-0243-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T04:51:06", "message_id": "a1f03056-0241-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T04:41:06", "message_id": "3c3d78a0-0240-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T04:31:06", "message_id": "d691ce62-023e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T04:21:06", "message_id": "70fb716c-023d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T04:11:06", "message_id": "0b31f906-023c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T04:01:05", "message_id": "a5894948-023a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T03:51:05", "message_id": "3fdc45e2-0239-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T03:41:05", "message_id": "da458280-0237-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T03:31:05", "message_id": "747885de-0236-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T03:21:05", "message_id": "0ecb0afa-0235-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T03:11:05", "message_id": "a919b96e-0233-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T03:01:05", "message_id": "4368a6da-0232-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T02:51:05", "message_id": "ddb71fde-0230-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T02:41:05", "message_id": "77f7c4f6-022f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T02:31:05", "message_id": "1256aae6-022e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T02:21:04", "message_id": "aca643e2-022c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T02:11:04", "message_id": "46f6f3a8-022b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T02:01:04", "message_id": "e153b03c-0229-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T01:51:04", "message_id": "7b9b8342-0228-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T01:41:04", "message_id": "16002b06-0227-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T01:31:04", "message_id": "b04e502c-0225-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T01:21:04", "message_id": "4a86ad4e-0224-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T01:11:04", "message_id": "e4d89828-0222-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T01:01:04", "message_id": "7f34c81c-0221-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T00:51:04", "message_id": "197d90d6-0220-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T00:41:04", "message_id": "b3cf167a-021e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T00:31:03", "message_id": "4e1e740c-021d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T00:21:03", "message_id": "e86f3750-021b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T00:11:03", "message_id": "82bdc1fc-021a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T00:01:03", "message_id": "1d149f34-0219-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T23:51:03", "message_id": "b7668766-0217-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T23:41:03", "message_id": "51b586a2-0216-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T23:31:03", "message_id": "ec0ca610-0214-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T23:21:03", "message_id": "86648658-0213-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T23:11:03", "message_id": "20aa58fc-0212-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T23:01:03", "message_id": "bb56dda0-0210-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T22:51:03", "message_id": "5562dea0-020f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T22:41:08", "message_id": "f2c28c7e-020d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T22:31:03", "message_id": "8a1003f6-020c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T22:21:02", "message_id": "2457e1e2-020b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T22:11:02", "message_id": "bebdb966-0209-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T22:01:02", "message_id": "58fde264-0208-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T21:51:02", "message_id": "f36717a0-0206-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T21:41:02", "message_id": "8daea51e-0205-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T21:31:02", "message_id": "27f948c4-0204-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T21:21:02", "message_id": "c26cd814-0202-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T21:11:02", "message_id": "5ca60d3a-0201-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T21:01:02", "message_id": "f6e49954-01ff-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T20:51:02", "message_id": "91980a6e-01fe-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T20:41:02", "message_id": "2b9aeff2-01fd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T20:31:02", "message_id": "c61cccfa-01fb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T20:21:01", "message_id": "60384190-01fa-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T20:11:01", "message_id": "fa800668-01f8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T20:01:01", "message_id": "94d32df0-01f7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T19:51:01", "message_id": "2f27cf98-01f6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T19:41:01", "message_id": "c97ab2c4-01f4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T19:31:01", "message_id": "63d2bf76-01f3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T19:21:01", "message_id": "fe0a390e-01f1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T19:11:01", "message_id": "986c3efe-01f0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T19:01:01", "message_id": "32bcfe50-01ef-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T18:51:00", "message_id": "ccfc28a8-01ed-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T18:41:00", "message_id": "6762a4aa-01ec-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T18:31:00", "message_id": "01ae83be-01eb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T18:21:00", "message_id": "9bfcc900-01e9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T18:11:00", "message_id": "3647bb34-01e8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T18:01:00", "message_id": "d09821d0-01e6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T17:51:00", "message_id": "6af2dad8-01e5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T17:41:00", "message_id": "05475bf6-01e4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T17:31:00", "message_id": "9f92b1d0-01e2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T17:21:00", "message_id": "39e5d4e4-01e1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T17:11:00", "message_id": "d4306692-01df-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T17:00:59", "message_id": "6e8253e2-01de-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T16:50:59", "message_id": "08d75c1e-01dd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T16:40:59", "message_id": "a32487f8-01db-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T16:30:59", "message_id": "3d7a2e04-01da-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T16:20:59", "message_id": "d7c3447a-01d8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T16:10:59", "message_id": "721ea886-01d7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T16:00:59", "message_id": "0c75b020-01d6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T15:50:59", "message_id": "a6c5680c-01d4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T15:40:59", "message_id": "412666b4-01d3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T15:30:59", "message_id": "db73e55e-01d1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T15:20:59", "message_id": "75ccb9de-01d0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T15:10:59", "message_id": "101b7b6c-01cf-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T15:00:58", "message_id": "aa65df70-01cd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T14:50:58", "message_id": "44be4794-01cc-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T14:40:58", "message_id": "df056348-01ca-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T14:30:58", "message_id": "794d4bfc-01c9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T14:20:58", "message_id": "139ed402-01c8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T14:10:58", "message_id": "adf8b254-01c6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T14:00:58", "message_id": "484a5792-01c5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T13:50:58", "message_id": "e29e67c2-01c3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T13:40:58", "message_id": "7ce7dd88-01c2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T13:30:58", "message_id": "174644ca-01c1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T13:20:58", "message_id": "b18cad00-01bf-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T13:10:57", "message_id": "4bde6e90-01be-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T13:00:57", "message_id": "e6312a48-01bc-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T12:50:57", "message_id": "807ffe5a-01bb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T12:40:57", "message_id": "1ad4abc4-01ba-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T12:30:57", "message_id": "b52caac0-01b8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T12:20:57", "message_id": "4f82d128-01b7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T12:10:57", "message_id": "e9d9e858-01b5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T12:00:57", "message_id": "84212ab8-01b4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T11:50:57", "message_id": "1e787398-01b3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T11:40:57", "message_id": "b8d2af78-01b1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T11:30:57", "message_id": "531f1f5a-01b0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T11:20:57", "message_id": "ed72ed5e-01ae-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T11:10:57", "message_id": "87ca66e0-01ad-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T11:00:56", "message_id": "22060acc-01ac-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T10:50:57", "message_id": "bc8a6676-01aa-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T10:40:56", "message_id": "56b68088-01a9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T10:30:56", "message_id": "f114a882-01a7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T10:20:56", "message_id": "8b591e48-01a6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T10:10:56", "message_id": "25c9018e-01a5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T10:00:56", "message_id": "c0057c5c-01a3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T09:50:56", "message_id": "5a4a31ec-01a2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T09:40:56", "message_id": "f4a70712-01a0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T09:30:56", "message_id": "8f12bc62-019f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T09:20:56", "message_id": "29479868-019e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T09:10:55", "message_id": "c39ffd6c-019c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T09:00:56", "message_id": "5e09fed6-019b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T08:50:55", "message_id": "f8419588-0199-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T08:40:55", "message_id": "92a09d9c-0198-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T08:30:55", "message_id": "2cd49500-0197-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T08:20:55", "message_id": "c7340b0a-0195-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T08:10:55", "message_id": "6174e77c-0194-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T08:00:55", "message_id": "fbc9a670-0192-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T07:50:55", "message_id": "962c5494-0191-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T07:40:55", "message_id": "308140ba-0190-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T07:30:55", "message_id": "cacc0b66-018e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T07:20:54", "message_id": "6521ebe2-018d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T07:10:54", "message_id": "ff749a0c-018b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T07:00:54", "message_id": "99c23558-018a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T06:50:54", "message_id": "34181c50-0189-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T06:40:54", "message_id": "ce6ae168-0187-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T06:30:54", "message_id": "68be103e-0186-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T06:20:54", "message_id": "031361f4-0185-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T06:10:54", "message_id": "9d5949a6-0183-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T06:00:54", "message_id": "37a175e4-0182-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T05:50:54", "message_id": "d2041de6-0180-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T05:40:54", "message_id": "6c5076ee-017f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T05:30:53", "message_id": "0696d52e-017e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T05:20:53", "message_id": "a0ee37c2-017c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T05:10:53", "message_id": "3b4561da-017b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T05:00:53", "message_id": "d59cb4c4-0179-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T04:50:53", "message_id": "6fe27778-0178-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T04:40:53", "message_id": "0a2c0b70-0177-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T04:30:53", "message_id": "a4818aa8-0175-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T04:20:53", "message_id": "3ed15cd4-0174-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T04:10:53", "message_id": "d9240554-0172-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T04:00:53", "message_id": "737f27d4-0171-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T03:50:53", "message_id": "0dd15962-0170-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T03:40:53", "message_id": "a82498b4-016e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T03:30:52", "message_id": "4279c42c-016d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T03:20:52", "message_id": "dcc5735c-016b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T03:10:52", "message_id": "7717a72e-016a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T03:00:52", "message_id": "1169c660-0169-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T02:50:52", "message_id": "abbe5b92-0167-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T02:40:52", "message_id": "46079062-0166-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T02:30:52", "message_id": "e058aebe-0164-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T02:20:52", "message_id": "7abce468-0163-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T02:10:52", "message_id": "150ec718-0162-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T02:00:52", "message_id": "af58f0b6-0160-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T01:50:52", "message_id": "49d1affe-015f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T01:40:52", "message_id": "e415c020-015d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T01:30:52", "message_id": "7e7822ea-015c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T01:20:52", "message_id": "18cb747a-015b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T01:10:51", "message_id": "b30ce0e8-0159-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T01:00:51", "message_id": "4d6884dc-0158-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T00:50:51", "message_id": "e7968574-0156-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T00:40:51", "message_id": "81ecddc8-0155-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T00:30:51", "message_id": "1c3dc006-0154-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T00:20:51", "message_id": "b6804eec-0152-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T00:10:51", "message_id": "50dd3b28-0151-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T00:00:51", "message_id": "eb2b98f2-014f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T23:50:50", "message_id": "857eb292-014e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T23:40:50", "message_id": "1fc90660-014d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T23:30:50", "message_id": "ba0fd688-014b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T23:20:50", "message_id": "5472d51a-014a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T23:10:50", "message_id": "eebc0878-0148-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T23:00:50", "message_id": "894d3a08-0147-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T22:50:50", "message_id": "23617ffc-0146-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T22:40:50", "message_id": "bdab1f8e-0144-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T22:30:50", "message_id": "57ffc55a-0143-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T22:20:50", "message_id": "f2640892-0141-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T22:10:50", "message_id": "8c9f8fbe-0140-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T22:00:50", "message_id": "26fe920a-013f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T21:50:49", "message_id": "c1522576-013d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T21:40:49", "message_id": "5bab0694-013c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T21:30:49", "message_id": "f6020794-013a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T21:20:49", "message_id": "904bbc70-0139-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T21:10:49", "message_id": "2aa73bca-0138-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T21:00:49", "message_id": "c4fe8ea0-0136-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T20:50:49", "message_id": "5f4c9c38-0135-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T20:40:49", "message_id": "f9a232a4-0133-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T20:30:49", "message_id": "93e77484-0132-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T20:20:49", "message_id": "2e5b2da0-0131-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T20:10:49", "message_id": "c895a4e2-012f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T20:00:49", "message_id": "62e6e30a-012e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T19:50:49", "message_id": "fd43c5b4-012c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T19:40:48", "message_id": "97857066-012b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T19:30:48", "message_id": "31dd5b58-012a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T19:20:48", "message_id": "cc3f7c5a-0128-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T19:10:48", "message_id": "668460de-0127-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T19:00:48", "message_id": "00d0d106-0126-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T18:50:48", "message_id": "9b1b5b02-0124-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T18:40:48", "message_id": "35701938-0123-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T18:30:48", "message_id": "cfb98bb6-0121-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T18:20:48", "message_id": "6a0b18d0-0120-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T18:10:47", "message_id": "0458781c-011f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T18:00:47", "message_id": "9ea070c0-011d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T17:50:47", "message_id": "38faaaac-011c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T17:40:47", "message_id": "d3475c4c-011a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T17:30:47", "message_id": "6d95fd5a-0119-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T17:20:47", "message_id": "07efb096-0118-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T17:10:47", "message_id": "a23d06c8-0116-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T17:00:47", "message_id": "3c90f600-0115-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T16:50:47", "message_id": "d6dc0a12-0113-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T16:40:47", "message_id": "712baf98-0112-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T16:30:47", "message_id": "0b8cad00-0111-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T16:20:46", "message_id": "a5d31176-010f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T16:10:46", "message_id": "402b71d4-010e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T16:00:46", "message_id": "da7a780e-010c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T15:50:49", "message_id": "765175cc-010b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T15:40:47", "message_id": "0f7b0526-010a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T15:30:46", "message_id": "a9957fa8-0108-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T15:20:46", "message_id": "43cae15a-0107-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T15:10:46", "message_id": "de329f0a-0105-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T15:00:46", "message_id": "7871366e-0104-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T14:50:46", "message_id": "12ccf1d2-0103-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T14:40:46", "message_id": "ad1892fc-0101-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T14:30:46", "message_id": "47619216-0100-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T14:20:46", "message_id": "e1bf7ed8-00fe-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T14:10:46", "message_id": "7c46d00c-00fd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T14:00:45", "message_id": "164ea56e-00fc-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T13:50:45", "message_id": "b0af23ba-00fa-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T13:40:45", "message_id": "4af8ec78-00f9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T13:30:45", "message_id": "e5498a0a-00f7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T13:20:46", "message_id": "7ffead02-00f6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T13:10:45", "message_id": "19de9362-00f5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T13:00:45", "message_id": "b43bf50a-00f3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T12:50:45", "message_id": "4e82daa4-00f2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T12:40:45", "message_id": "e8dc876e-00f0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T12:30:44", "message_id": "83331fdc-00ef-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T12:20:44", "message_id": "1d7ccc84-00ee-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T12:10:44", "message_id": "b7cdfc74-00ec-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T12:00:44", "message_id": "52212820-00eb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T11:50:44", "message_id": "ec7a42c8-00e9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T11:40:44", "message_id": "86c30d26-00e8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T11:30:44", "message_id": "211c5af0-00e7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T11:20:44", "message_id": "bb6b8b5a-00e5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T11:10:44", "message_id": "55c32d4a-00e4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T11:00:44", "message_id": "f00b3b42-00e2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T10:50:44", "message_id": "8a5cec4c-00e1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T10:40:43", "message_id": "24acb608-00e0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T10:30:43", "message_id": "bf033260-00de-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T10:20:43", "message_id": "594fef0e-00dd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T10:10:43", "message_id": "f3a3a836-00db-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T10:00:43", "message_id": "8e059b66-00da-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T09:50:43", "message_id": "28438f78-00d9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T09:40:43", "message_id": "c29e68ba-00d7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T09:30:43", "message_id": "5cee83b6-00d6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T09:20:43", "message_id": "f74178bc-00d4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T09:10:43", "message_id": "919addd8-00d3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T09:00:43", "message_id": "2be70ce2-00d2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T08:50:42", "message_id": "c630f472-00d0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T08:40:42", "message_id": "608c38ee-00cf-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T08:30:42", "message_id": "fadfac66-00cd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T08:20:42", "message_id": "9530808a-00cc-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T08:10:42", "message_id": "2f7bb8d2-00cb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T08:00:42", "message_id": "c9cb3cca-00c9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T07:50:42", "message_id": "641c80ec-00c8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T07:40:42", "message_id": "fe98ee64-00c6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T07:30:42", "message_id": "98c9fde0-00c5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T07:20:42", "message_id": "330c1a84-00c4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T07:10:42", "message_id": "cd5f8b5e-00c2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T07:00:41", "message_id": "67b4f4d4-00c1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T06:50:41", "message_id": "01fffdec-00c0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T06:40:41", "message_id": "9c5525b8-00be-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T06:30:41", "message_id": "36a818f2-00bd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T06:20:41", "message_id": "d0f3b648-00bb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T06:10:41", "message_id": "6b4a1c84-00ba-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T06:00:41", "message_id": "05a50fc0-00b9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T05:50:41", "message_id": "9ff11698-00b7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T05:40:41", "message_id": "3a49ae82-00b6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T05:30:41", "message_id": "d49563b6-00b4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T05:20:41", "message_id": "6ee64fcc-00b3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T05:10:41", "message_id": "093a2550-00b2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T05:00:40", "message_id": "a38e9bf6-00b0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T04:50:40", "message_id": "3df49e5e-00af-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T04:40:40", "message_id": "d84ba54e-00ad-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T04:30:40", "message_id": "729952b0-00ac-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T04:20:40", "message_id": "0cfab738-00ab-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T04:10:40", "message_id": "a75431f8-00a9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T04:00:40", "message_id": "41c98d2a-00a8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T03:50:41", "message_id": "dc45558e-00a6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T03:40:40", "message_id": "76586b90-00a5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T03:30:40", "message_id": "10dde9ee-00a4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T03:20:40", "message_id": "ab06edba-00a2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T03:10:40", "message_id": "456261b6-00a1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T03:00:40", "message_id": "dfb62ec0-009f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T02:50:40", "message_id": "79fa503a-009e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T02:40:40", "message_id": "1483874a-009d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T02:30:40", "message_id": "aea10b74-009b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T02:20:40", "message_id": "48f6736e-009a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T02:10:39", "message_id": "e34a8ace-0098-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T02:00:39", "message_id": "7d9d5270-0097-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T01:50:39", "message_id": "17da3df0-0096-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T01:40:39", "message_id": "b22abf30-0094-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T01:30:39", "message_id": "4c7d025c-0093-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T01:20:39", "message_id": "e6d9a578-0091-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T01:10:39", "message_id": "811d7e36-0090-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T01:00:39", "message_id": "1b7c027e-008f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T00:50:39", "message_id": "b5c2e2d2-008d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T00:40:38", "message_id": "500d8f24-008c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T00:30:38", "message_id": "ea6e55aa-008a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T00:20:38", "message_id": "84c259f0-0089-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T00:10:38", "message_id": "1f0f9740-0088-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T00:00:38", "message_id": "b9604d96-0086-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T23:50:38", "message_id": "53aaed0e-0085-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T23:40:38", "message_id": "ee0bb006-0083-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T23:30:38", "message_id": "8851da84-0082-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T23:20:38", "message_id": "229b88c6-0081-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T23:10:38", "message_id": "bcf87bce-007f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T23:00:38", "message_id": "57806d34-007e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T22:50:38", "message_id": "f192fd3a-007c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T22:40:37", "message_id": "8bec4456-007b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T22:30:37", "message_id": "262b2b24-007a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T22:20:37", "message_id": "c087ea92-0078-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T22:10:37", "message_id": "5ad86a6a-0077-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T22:00:37", "message_id": "f52865cc-0075-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T21:50:37", "message_id": "8f863060-0074-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T21:40:37", "message_id": "29ce4b00-0073-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T21:30:37", "message_id": "c4243f7c-0071-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T21:20:37", "message_id": "5e84b0c6-0070-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T21:10:37", "message_id": "f8c9f7a6-006e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T21:00:37", "message_id": "931282c6-006d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T20:50:36", "message_id": "2d5fa252-006c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T20:40:36", "message_id": "c7b1eee8-006a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T20:30:36", "message_id": "620ae82a-0069-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T20:20:36", "message_id": "fc4f8a1e-0067-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T20:10:36", "message_id": "96ace73e-0066-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T20:00:36", "message_id": "30f86ebe-0065-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T19:50:36", "message_id": "cb503304-0063-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T19:40:36", "message_id": "659b1ea8-0062-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T19:30:36", "message_id": "ffee2cae-0060-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T19:20:36", "message_id": "9a3a091a-005f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T19:10:35", "message_id": "348ec2d2-005e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T19:00:35", "message_id": "cee296da-005c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T18:50:35", "message_id": "6932d774-005b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T18:40:35", "message_id": "037e7de4-005a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T18:30:35", "message_id": "9ddecc56-0058-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T18:20:35", "message_id": "381e6b8e-0057-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T18:10:35", "message_id": "d27caeea-0055-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T18:00:35", "message_id": "6cce4172-0054-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T17:50:35", "message_id": "0720710c-0053-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T17:40:35", "message_id": "a17a40f4-0051-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T17:30:35", "message_id": "3bce5714-0050-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T17:20:35", "message_id": "d61d146a-004e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T17:10:34", "message_id": "706cf168-004d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T17:00:34", "message_id": "0abace72-004c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T16:50:34", "message_id": "a50ee2b2-004a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T16:40:34", "message_id": "3f6854a8-0049-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T16:30:34", "message_id": "d9bba34a-0047-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T16:20:34", "message_id": "74103192-0046-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T16:10:34", "message_id": "0e5c2492-0045-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T16:00:34", "message_id": "a8b7bc92-0043-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T15:50:34", "message_id": "4305e000-0042-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T15:40:34", "message_id": "dd52b7e8-0040-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T15:30:34", "message_id": "77a83b3a-003f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T15:20:34", "message_id": "11fde498-003e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T15:10:34", "message_id": "ac4dc934-003c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T15:00:33", "message_id": "4697f728-003b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T14:50:33", "message_id": "e0f0b91a-0039-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T14:40:33", "message_id": "7b3a4bb4-0038-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T14:30:33", "message_id": "1594ba16-0037-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T14:20:33", "message_id": "afe06fe0-0035-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T14:10:33", "message_id": "4a428430-0034-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T14:00:33", "message_id": "e4c39e74-0032-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T13:50:33", "message_id": "7ed5a810-0031-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T13:40:33", "message_id": "1933e68a-0030-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T13:30:33", "message_id": "b3818316-002e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T13:20:33", "message_id": "4dddbbb6-002d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T13:10:32", "message_id": "e829b5e6-002b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T13:00:32", "message_id": "8277925a-002a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T12:50:32", "message_id": "1ccbbcb6-0029-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T12:40:32", "message_id": "b711ce52-0027-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T12:30:32", "message_id": "516b6a6e-0026-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T12:20:32", "message_id": "ebb503d4-0024-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T12:10:32", "message_id": "85ff5e5a-0023-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T12:00:32", "message_id": "205bd94e-0022-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T11:50:32", "message_id": "baa7f732-0020-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T11:40:32", "message_id": "550fa02e-001f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T11:30:32", "message_id": "ef64c782-001d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T11:20:31", "message_id": "89a7d9da-001c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T11:10:32", "message_id": "2418bc2a-001b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T11:00:31", "message_id": "be56c93c-0019-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T10:50:31", "message_id": "58a922e8-0018-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T10:40:31", "message_id": "f304f508-0016-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T10:30:31", "message_id": "8d72b5aa-0015-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T10:20:31", "message_id": "27bd6ac6-0014-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T10:10:31", "message_id": "c2234646-0012-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T10:00:31", "message_id": "5c46ea2c-0011-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T09:50:31", "message_id": "f696ca40-000f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T09:40:31", "message_id": "90dfd4e0-000e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T09:30:31", "message_id": "2b432b10-000d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T09:20:30", "message_id": "c5866ef0-000b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T09:10:30", "message_id": "5fd551e4-000a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T09:00:30", "message_id": "fa302a86-0008-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T08:50:30", "message_id": "947e21bc-0007-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T08:40:30", "message_id": "2ed6cf36-0006-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T08:30:30", "message_id": "c92c9e14-0004-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T08:20:30", "message_id": "63799d2a-0003-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T08:10:30", "message_id": "fdd8d054-0001-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T08:00:30", "message_id": "981e457e-0000-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T07:50:30", "message_id": "326dd650-ffff-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T07:40:30", "message_id": "ccbe06f0-fffd-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T07:30:30", "message_id": "670d3b42-fffc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T07:20:29", "message_id": "0167d9d8-fffb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T07:10:29", "message_id": "9baeade8-fff9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T07:00:29", "message_id": "35f9e68a-fff8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T06:50:29", "message_id": "d05d25ea-fff6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T06:40:29", "message_id": "6aa43762-fff5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T06:30:29", "message_id": "04f1e028-fff4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T06:20:29", "message_id": "9f45d5d2-fff2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T06:10:29", "message_id": "3995e282-fff1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T06:00:29", "message_id": "d3ee6694-ffef-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T05:50:29", "message_id": "6e47df7e-ffee-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T05:40:29", "message_id": "08a047de-ffed-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T05:30:29", "message_id": "a2e8b9cc-ffeb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T05:20:28", "message_id": "3d304e02-ffea-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T05:10:28", "message_id": "d785e63a-ffe8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T05:00:28", "message_id": "71da7888-ffe7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T04:50:28", "message_id": "0c1e103c-ffe6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T04:40:28", "message_id": "a6806d16-ffe4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T04:30:28", "message_id": "40c42a90-ffe3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T04:20:28", "message_id": "db1da384-ffe1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T04:10:28", "message_id": "756f513c-ffe0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T04:00:28", "message_id": "0fb76aa6-ffdf-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T03:50:28", "message_id": "aa0df55e-ffdd-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T03:40:27", "message_id": "445b235e-ffdc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T03:30:27", "message_id": "deac9fde-ffda-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T03:20:27", "message_id": "78fca72a-ffd9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T03:10:27", "message_id": "1351e8c8-ffd8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T03:00:27", "message_id": "ada37722-ffd6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T02:50:27", "message_id": "47ee966a-ffd5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T02:40:27", "message_id": "e23d33b8-ffd3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T02:30:27", "message_id": "7c978b9a-ffd2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T02:20:27", "message_id": "17023114-ffd1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T02:10:27", "message_id": "b12c54a6-ffcf-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T02:00:27", "message_id": "4b871af6-ffce-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T01:50:26", "message_id": "e5d183dc-ffcc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T01:40:26", "message_id": "8022eefa-ffcb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T01:30:26", "message_id": "1a753a28-ffca-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T01:20:26", "message_id": "b4cc3c5e-ffc8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T01:10:26", "message_id": "4f223bde-ffc7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T01:00:26", "message_id": "e96f99b8-ffc5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T00:50:26", "message_id": "83c5a69e-ffc4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T00:40:26", "message_id": "1e190a9e-ffc3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T00:30:26", "message_id": "b867cb6e-ffc1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T00:20:26", "message_id": "53136666-ffc0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T00:10:26", "message_id": "ed079190-ffbe-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T00:00:26", "message_id": "87836778-ffbd-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T23:50:25", "message_id": "21b3c966-ffbc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T23:40:25", "message_id": "bc095d02-ffba-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T23:30:25", "message_id": "5662cec6-ffb9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T23:20:25", "message_id": "f0cf268c-ffb7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T23:10:25", "message_id": "8b1fdb20-ffb6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T23:00:25", "message_id": "259802ec-ffb5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T22:50:25", "message_id": "bf926aba-ffb3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T22:40:25", "message_id": "59f05b0a-ffb2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T22:30:25", "message_id": "f440734a-ffb0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T22:20:24", "message_id": "8e801296-ffaf-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T22:10:25", "message_id": "28e5380e-ffae-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T22:00:24", "message_id": "c32b4b3a-ffac-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T21:50:24", "message_id": "5d6e0824-ffab-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T21:40:24", "message_id": "f7c82708-ffa9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T21:30:24", "message_id": "9220e59e-ffa8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T21:20:24", "message_id": "2c6894f0-ffa7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T21:10:24", "message_id": "c6ac4b80-ffa5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T21:00:24", "message_id": "6106d15c-ffa4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T20:50:24", "message_id": "fb581fec-ffa2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T20:40:23", "message_id": "95a3d124-ffa1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T20:30:23", "message_id": "2ff9963e-ffa0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T20:20:23", "message_id": "ca4ba184-ff9e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T20:10:23", "message_id": "6490c06e-ff9d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T20:00:23", "message_id": "fee9a95c-ff9b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T19:50:23", "message_id": "993338cc-ff9a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T19:40:23", "message_id": "338d2bb4-ff99-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T19:30:23", "message_id": "cdde4510-ff97-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T19:20:23", "message_id": "683433f6-ff96-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T19:10:23", "message_id": "0282cbb8-ff95-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T19:00:23", "message_id": "9ccd2d46-ff93-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T18:50:23", "message_id": "3725850c-ff92-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T18:40:22", "message_id": "d178a0f0-ff90-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T18:30:22", "message_id": "6bb7f3f2-ff8f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T18:20:22", "message_id": "06082f28-ff8e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T18:10:22", "message_id": "a05d60b8-ff8c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T18:00:22", "message_id": "3ab19ece-ff8b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T17:50:22", "message_id": "d5016c04-ff89-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T17:40:22", "message_id": "6f59b8a8-ff88-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T17:30:22", "message_id": "09a8b37a-ff87-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T17:20:22", "message_id": "a3f4f5e4-ff85-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T17:10:22", "message_id": "3e4d13bc-ff84-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T17:00:21", "message_id": "d8921690-ff82-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T16:50:21", "message_id": "72da8a04-ff81-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T16:40:21", "message_id": "0d311ab6-ff80-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T16:30:21", "message_id": "a78dc7fa-ff7e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T16:20:21", "message_id": "41d1f018-ff7d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T16:10:21", "message_id": "dc2b6a6a-ff7b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T16:00:21", "message_id": "767ceca8-ff7a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T15:50:21", "message_id": "10d0ca2e-ff79-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T15:40:21", "message_id": "ab1ca316-ff77-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T15:30:21", "message_id": "4568c69a-ff76-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T15:20:20", "message_id": "dfbdea6a-ff74-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T15:10:20", "message_id": "7a0a2a9a-ff73-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T15:00:20", "message_id": "145a400a-ff72-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T14:50:20", "message_id": "aeac9bfa-ff70-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T14:40:20", "message_id": "48fb7890-ff6f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T14:30:20", "message_id": "e3621f6c-ff6d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T14:20:20", "message_id": "7db123c6-ff6c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T14:10:20", "message_id": "1800d112-ff6b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T14:00:20", "message_id": "b2511cba-ff69-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T13:50:20", "message_id": "4c9e8b38-ff68-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T13:40:20", "message_id": "e7063560-ff66-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T13:30:20", "message_id": "814c7a32-ff65-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T13:20:19", "message_id": "1b9dbd5a-ff64-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T13:10:19", "message_id": "b5f503ec-ff62-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T13:00:19", "message_id": "504fa19c-ff61-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T12:50:19", "message_id": "eaa637f8-ff5f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T12:40:19", "message_id": "84efd1e0-ff5e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T12:30:19", "message_id": "1f464d7a-ff5d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T12:20:19", "message_id": "b99bba10-ff5b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T12:10:19", "message_id": "53e15938-ff5a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T12:00:19", "message_id": "ee2f39d0-ff58-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T11:50:19", "message_id": "8887e63c-ff57-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T11:40:19", "message_id": "22dd5732-ff56-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T11:30:19", "message_id": "bd2d61d0-ff54-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T11:20:18", "message_id": "577c982a-ff53-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T11:10:19", "message_id": "f1ea5066-ff51-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T11:00:18", "message_id": "8c33d7a2-ff50-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T10:50:18", "message_id": "2684fab8-ff4f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T10:40:18", "message_id": "c0e0b950-ff4d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T10:30:18", "message_id": "5b29ac94-ff4c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T10:20:18", "message_id": "f57c071c-ff4a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T10:10:18", "message_id": "8fda0af4-ff49-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T10:00:18", "message_id": "2a355998-ff48-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T09:50:18", "message_id": "c474fe8e-ff46-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T09:40:18", "message_id": "5ece82c2-ff45-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T09:30:18", "message_id": "f90daeaa-ff43-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T09:20:18", "message_id": "93674472-ff42-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T09:10:17", "message_id": "2db85504-ff41-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T09:00:17", "message_id": "c7fbfca8-ff3f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T08:50:17", "message_id": "62505b20-ff3e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T08:40:17", "message_id": "fca69880-ff3c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T08:30:17", "message_id": "96f4c008-ff3b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T08:20:17", "message_id": "3137d7b0-ff3a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T08:10:17", "message_id": "cb88850a-ff38-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T08:00:17", "message_id": "65d7b7d6-ff37-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T07:50:17", "message_id": "00292d3a-ff36-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T07:40:16", "message_id": "9a764f50-ff34-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T07:30:16", "message_id": "34d28bf6-ff33-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T07:20:16", "message_id": "cf193c52-ff31-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T07:10:16", "message_id": "69684f20-ff30-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T07:00:16", "message_id": "03c2f1bc-ff2f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T06:50:16", "message_id": "9e15403c-ff2d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T06:40:16", "message_id": "38654b2a-ff2c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T06:30:16", "message_id": "d2ac3d3a-ff2a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T06:20:16", "message_id": "6d0e5018-ff29-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T06:10:16", "message_id": "076b978a-ff28-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T06:00:16", "message_id": "a1ab445a-ff26-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T05:50:16", "message_id": "3c0823da-ff25-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T05:40:15", "message_id": "d649772a-ff23-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T05:30:16", "message_id": "70c328c0-ff22-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T05:20:15", "message_id": "0af6a7f2-ff21-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T05:10:15", "message_id": "a53c97d8-ff1f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T05:00:15", "message_id": "3fa395bc-ff1e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T04:50:15", "message_id": "d9e65e90-ff1c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T04:40:15", "message_id": "743f3ea0-ff1b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T04:30:15", "message_id": "0e9e5992-ff1a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T04:20:15", "message_id": "a8de4c8a-ff18-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T04:10:15", "message_id": "433acb84-ff17-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T04:00:15", "message_id": "dd89f50e-ff15-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T03:50:15", "message_id": "77f2ac28-ff14-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T03:40:14", "message_id": "12321ad2-ff13-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T03:30:14", "message_id": "ac79734e-ff11-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T03:20:14", "message_id": "46d0158a-ff10-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T03:10:14", "message_id": "e13534f4-ff0e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T03:00:14", "message_id": "7b73b678-ff0d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T02:50:14", "message_id": "15dfe1b6-ff0c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T02:40:14", "message_id": "b02a6ad6-ff0a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T02:30:14", "message_id": "4a7df8d4-ff09-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T02:20:14", "message_id": "e4c49512-ff07-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T02:10:14", "message_id": "7f14d106-ff06-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T02:00:14", "message_id": "1962a5f0-ff05-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T01:50:14", "message_id": "b3c33b70-ff03-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T01:40:13", "message_id": "4e075150-ff02-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T01:30:13", "message_id": "e8606a54-ff00-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T01:20:13", "message_id": "82b26316-feff-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T01:10:13", "message_id": "1d0a57fe-fefe-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T01:00:13", "message_id": "b74ddc20-fefc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T00:50:13", "message_id": "51aa5340-fefb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T00:40:13", "message_id": "ec003e20-fef9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T00:30:13", "message_id": "86413e28-fef8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T00:20:13", "message_id": "20930792-fef7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T00:10:13", "message_id": "bae5e398-fef5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T00:00:12", "message_id": "552df186-fef4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T23:50:12", "message_id": "ef914c3e-fef2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T23:40:12", "message_id": "89e1a0d8-fef1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T23:30:12", "message_id": "24377baa-fef0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T23:20:12", "message_id": "be9a107e-feee-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T23:10:12", "message_id": "58d0bf8c-feed-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T23:00:12", "message_id": "f36ed9b8-feeb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T22:50:12", "message_id": "8d7aa2be-feea-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T22:40:12", "message_id": "27cf1af4-fee9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T22:30:12", "message_id": "c221a510-fee7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T22:20:12", "message_id": "5c6b7dd2-fee6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T22:10:12", "message_id": "f6d3839e-fee4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T22:00:12", "message_id": "913c8bf8-fee3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T21:50:11", "message_id": "2b6b1944-fee2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T21:40:12", "message_id": "c5e4c7ba-fee0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T21:30:11", "message_id": "6019d53e-fedf-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T21:20:11", "message_id": "fa6cb40a-fedd-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T21:10:11", "message_id": "94b5b0a4-fedc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T21:00:11", "message_id": "2efc13e4-fedb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T20:50:11", "message_id": "c9588618-fed9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T20:40:11", "message_id": "63b7e3f4-fed8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T20:30:11", "message_id": "fe031570-fed6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T20:20:11", "message_id": "988139e4-fed5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T20:10:11", "message_id": "32a00bce-fed4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T20:00:11", "message_id": "cd08ca0e-fed2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T19:50:10", "message_id": "675134cc-fed1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T19:40:10", "message_id": "01a843fa-fed0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T19:30:10", "message_id": "9bf90a2c-fece-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T19:20:10", "message_id": "36469a38-fecd-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T19:10:10", "message_id": "d096286c-fecb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T19:00:10", "message_id": "6ad6fc00-feca-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T18:50:10", "message_id": "0552fa2e-fec9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T18:40:10", "message_id": "9f8b0cd2-fec7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T18:30:10", "message_id": "39d3a5ee-fec6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T18:20:10", "message_id": "d429e894-fec4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T18:10:09", "message_id": "6e76cca2-fec3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T18:00:09", "message_id": "08bb1536-fec2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T17:50:09", "message_id": "a3131acc-fec0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T17:40:09", "message_id": "3d6b9204-febf-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T17:30:09", "message_id": "d7b6a86e-febd-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T17:20:09", "message_id": "720e39e2-febc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T17:10:09", "message_id": "0c53dae0-febb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T17:00:09", "message_id": "a6a710fa-feb9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T16:50:09", "message_id": "40fa5eb6-feb8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T16:40:09", "message_id": "db432022-feb6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T16:30:09", "message_id": "759a6182-feb5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T16:20:08", "message_id": "0fe7710a-feb4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T16:10:08", "message_id": "aa44464e-feb2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T16:00:08", "message_id": "449667d8-feb1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T15:50:08", "message_id": "dedfd876-feaf-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T15:40:08", "message_id": "793d6e76-feae-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T15:30:08", "message_id": "13838710-fead-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T15:20:08", "message_id": "add825de-feab-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T15:10:08", "message_id": "48261bd4-feaa-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T15:00:08", "message_id": "e276f7be-fea8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T14:50:08", "message_id": "7ccd41e4-fea7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T14:40:08", "message_id": "172b6a92-fea6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T14:30:08", "message_id": "b184cf04-fea4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T14:20:07", "message_id": "4bd39e84-fea3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T14:10:07", "message_id": "e620aa6a-fea1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T14:00:07", "message_id": "808ef41e-fea0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T13:50:07", "message_id": "1ad193b2-fe9f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T13:40:07", "message_id": "b515acf8-fe9d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T13:30:07", "message_id": "4f672324-fe9c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T13:20:07", "message_id": "e9b7bcba-fe9a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T13:10:07", "message_id": "840601a2-fe99-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T13:00:07", "message_id": "1e6179a4-fe98-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T12:50:07", "message_id": "b8b6b5ac-fe96-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T12:40:07", "message_id": "531b850c-fe95-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T12:30:07", "message_id": "ed5a4024-fe93-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T12:20:06", "message_id": "87a55134-fe92-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T12:10:06", "message_id": "2202db22-fe91-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T12:00:06", "message_id": "bc545ff4-fe8f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T11:50:06", "message_id": "56a2acca-fe8e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T11:40:06", "message_id": "f10218b6-fe8c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T11:30:07", "message_id": "8bdff49a-fe8b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T11:20:06", "message_id": "259910e6-fe8a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T11:10:06", "message_id": "bfe501b6-fe88-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T11:00:06", "message_id": "5a3ea5f2-fe87-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T10:50:06", "message_id": "f491ebb6-fe85-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T10:40:06", "message_id": "8ee40f70-fe84-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T10:30:05", "message_id": "293143ba-fe83-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T10:20:05", "message_id": "c3874894-fe81-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T10:10:05", "message_id": "5dcddd98-fe80-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T10:00:05", "message_id": "f824faf4-fe7e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T09:50:05", "message_id": "92718020-fe7d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T09:40:05", "message_id": "2cc958e8-fe7c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T09:30:05", "message_id": "c71e321c-fe7a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T09:20:05", "message_id": "616728ee-fe79-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T09:10:05", "message_id": "fbbfe518-fe77-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T09:00:05", "message_id": "960f5f6a-fe76-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T08:50:05", "message_id": "305f593c-fe75-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T08:40:04", "message_id": "cab1e8a8-fe73-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T08:30:04", "message_id": "650088e4-fe72-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T08:20:04", "message_id": "ff53b274-fe70-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T08:10:04", "message_id": "99a8bae2-fe6f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T08:00:04", "message_id": "33fadf96-fe6e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T07:50:04", "message_id": "ce4b9b00-fe6c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T07:40:04", "message_id": "68ad5d5c-fe6b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T07:30:04", "message_id": "02fca46e-fe6a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T07:20:04", "message_id": "9d50fd00-fe68-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T07:10:04", "message_id": "37a068d4-fe67-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T07:00:04", "message_id": "d1f0cc28-fe65-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T06:50:04", "message_id": "6c3fe1f8-fe64-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T06:40:04", "message_id": "069e0e0c-fe63-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T06:30:03", "message_id": "a0ef85c8-fe61-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T06:20:03", "message_id": "3b3a79d2-fe60-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T06:10:03", "message_id": "d58675c4-fe5e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T06:00:03", "message_id": "6fd6ee1c-fe5d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T05:50:03", "message_id": "0a2974aa-fe5c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T05:40:03", "message_id": "a4810902-fe5a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T05:30:03", "message_id": "3ec87092-fe59-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T05:20:03", "message_id": "d91caaac-fe57-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T05:10:03", "message_id": "7373c5d8-fe56-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T05:00:03", "message_id": "0dc074b2-fe55-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T04:50:02", "message_id": "a8118f80-fe53-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T04:40:02", "message_id": "426b03f6-fe52-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T04:30:02", "message_id": "dcbf6944-fe50-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T04:20:02", "message_id": "770821aa-fe4f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T04:10:02", "message_id": "114ec3ce-fe4e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T04:00:02", "message_id": "abaaeddc-fe4c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T03:50:02", "message_id": "45fa2ac6-fe4b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T03:40:02", "message_id": "e04f4400-fe49-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T03:30:02", "message_id": "7a992d7a-fe48-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T03:20:02", "message_id": "14e63118-fe47-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T03:10:02", "message_id": "af42b81e-fe45-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T03:00:01", "message_id": "498e55ec-fe44-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T02:50:01", "message_id": "e3dd217a-fe42-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T02:40:01", "message_id": "7e2c9fb4-fe41-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T02:30:01", "message_id": "188adc12-fe40-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T02:20:01", "message_id": "b2df7f36-fe3e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T02:10:01", "message_id": "4d28538a-fe3d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T02:00:01", "message_id": "e77f94b8-fe3b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T01:50:01", "message_id": "81d375cc-fe3a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T01:40:01", "message_id": "1c30a9ca-fe39-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T01:30:01", "message_id": "b680b80a-fe37-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T01:20:01", "message_id": "50dbbac8-fe36-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T01:10:01", "message_id": "eb2314de-fe34-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T01:00:01", "message_id": "857b4e9a-fe33-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T00:50:00", "message_id": "1fc3a148-fe32-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T00:40:00", "message_id": "ba1b51ca-fe30-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T00:30:00", "message_id": "5466ea84-fe2f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T00:20:00", "message_id": "eeb68010-fe2d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T00:10:00", "message_id": "890ae7fc-fe2c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T00:00:00", "message_id": "235c9550-fe2b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T23:50:00", "message_id": "bdaf8830-fe29-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T23:40:00", "message_id": "5804672c-fe28-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T23:30:00", "message_id": "f2543a3e-fe26-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T23:20:00", "message_id": "8cb19d12-fe25-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T23:10:00", "message_id": "273c9528-fe24-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T23:00:00", "message_id": "c18fdf24-fe22-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T22:49:59", "message_id": "5b992488-fe21-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T22:39:59", "message_id": "f5e4da0c-fe1f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T22:29:59", "message_id": "903dfcf2-fe1e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T22:19:59", "message_id": "2a92c898-fe1d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T22:09:59", "message_id": "c4e06222-fe1b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T21:59:59", "message_id": "5f30529e-fe1a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T21:49:59", "message_id": "f9809388-fe18-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T21:39:59", "message_id": "93cdd54c-fe17-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T21:29:59", "message_id": "2e16ded4-fe16-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T21:19:59", "message_id": "c86f06ac-fe14-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T21:09:58", "message_id": "62c0380e-fe13-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T20:59:58", "message_id": "fd143a56-fe11-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T20:49:58", "message_id": "975a5d68-fe10-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T20:39:58", "message_id": "31ab93fc-fe0f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T20:29:58", "message_id": "cbfaafee-fe0d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T20:19:58", "message_id": "6655c1de-fe0c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T20:09:58", "message_id": "00a0cae2-fe0b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T19:59:58", "message_id": "9af5f40c-fe09-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T19:49:58", "message_id": "3547d342-fe08-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T19:39:58", "message_id": "cfa4d838-fe06-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T19:29:58", "message_id": "69f1d01e-fe05-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T19:19:57", "message_id": "0442b2e8-fe04-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T19:09:57", "message_id": "9e99ff74-fe02-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T18:59:57", "message_id": "38e7ae2a-fe01-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T18:49:57", "message_id": "d336c602-fdff-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T18:39:57", "message_id": "6d8fb558-fdfe-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T18:29:57", "message_id": "07e28e3e-fdfd-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T18:19:57", "message_id": "a2379512-fdfb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T18:09:57", "message_id": "3c97d678-fdfa-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T17:59:57", "message_id": "d6dce0fe-fdf8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T17:49:57", "message_id": "7132bac2-fdf7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T17:39:57", "message_id": "0b855e60-fdf6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T17:29:57", "message_id": "a5d9d538-fdf4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T17:19:56", "message_id": "40295232-fdf3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T17:09:56", "message_id": "da7d3f9e-fdf1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T16:59:56", "message_id": "74cf1790-fdf0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T16:49:56", "message_id": "0f1ff1fe-fdef-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T16:39:56", "message_id": "a97badf8-fded-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T16:29:56", "message_id": "43f59968-fdec-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T16:19:56", "message_id": "de2647fa-fdea-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T16:09:56", "message_id": "7883beba-fde9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T15:59:56", "message_id": "12d2b9aa-fde8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T15:49:56", "message_id": "ad2abe46-fde6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T15:39:56", "message_id": "477ec642-fde5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T15:29:56", "message_id": "e1d015a4-fde3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T15:19:56", "message_id": "7c51c70a-fde2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T15:09:56", "message_id": "166b2b08-fde1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T14:59:55", "message_id": "b0baabcc-fddf-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T14:49:55", "message_id": "4b190076-fdde-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T14:39:55", "message_id": "e562a7f6-fddc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T14:29:55", "message_id": "7fb72ca2-fddb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T14:19:55", "message_id": "1a080f58-fdda-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T14:09:55", "message_id": "b45ea49c-fdd8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T13:59:55", "message_id": "4eaa4d46-fdd7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T13:49:55", "message_id": "e8ff146e-fdd5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T13:39:55", "message_id": "834b6d94-fdd4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T13:29:55", "message_id": "1d99adc2-fdd3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T13:19:55", "message_id": "b7eb3140-fdd1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T13:09:54", "message_id": "5240b5aa-fdd0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T12:59:54", "message_id": "ec93a790-fdce-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T12:49:54", "message_id": "86e5a1ec-fdcd-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T12:39:54", "message_id": "2132d2d0-fdcc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T12:29:54", "message_id": "bb832d64-fdca-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T12:19:54", "message_id": "55d73ea2-fdc9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T12:09:54", "message_id": "f021d6cc-fdc7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T11:59:54", "message_id": "8a77fb9a-fdc6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T11:49:54", "message_id": "24cd109c-fdc5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T11:39:54", "message_id": "bf2217d4-fdc3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T11:29:54", "message_id": "5971c732-fdc2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T11:19:54", "message_id": "f3c7c590-fdc0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T11:09:53", "message_id": "8e189766-fdbf-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T10:59:53", "message_id": "286bf846-fdbe-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T10:49:54", "message_id": "c2e7b4ca-fdbc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T10:39:53", "message_id": "5d0e4e62-fdbb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T10:29:53", "message_id": "f76ab98e-fdb9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T10:19:53", "message_id": "91b84c6a-fdb8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T10:09:53", "message_id": "2c18f39c-fdb7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T09:59:53", "message_id": "c66bc0a2-fdb5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T09:49:53", "message_id": "60bf9de2-fdb4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T09:39:53", "message_id": "fb110da6-fdb2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T09:29:53", "message_id": "956573f8-fdb1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T09:19:53", "message_id": "2fb48694-fdb0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T09:09:52", "message_id": "ca0126e6-fdae-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T08:59:52", "message_id": "645a9c74-fdad-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T08:49:52", "message_id": "feb8e106-fdab-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T08:39:52", "message_id": "98fdbe64-fdaa-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T08:29:52", "message_id": "334ef6f6-fda9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T08:19:52", "message_id": "cd9da920-fda7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T08:09:52", "message_id": "680969ba-fda6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T07:59:52", "message_id": "02457f66-fda5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T07:49:52", "message_id": "9c941c8c-fda3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T07:39:52", "message_id": "36ec03d2-fda2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T07:29:52", "message_id": "d139f63a-fda0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T07:19:52", "message_id": "6b8e4648-fd9f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T07:09:52", "message_id": "060620a8-fd9e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T06:59:51", "message_id": "a02a8ed2-fd9c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T06:49:51", "message_id": "3a81150c-fd9b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T06:39:51", "message_id": "d4c88de0-fd99-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T06:29:51", "message_id": "6f1d1606-fd98-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T06:19:51", "message_id": "0968a16e-fd97-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T06:09:51", "message_id": "a3be0756-fd95-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T05:59:51", "message_id": "3e11558a-fd94-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T05:49:51", "message_id": "d863b6fc-fd92-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T05:39:51", "message_id": "72b446ec-fd91-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T05:29:51", "message_id": "0d120a96-fd90-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T05:19:50", "message_id": "a7608da4-fd8e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T05:09:50", "message_id": "41ab0648-fd8d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T04:59:50", "message_id": "dc0a8882-fd8b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T04:49:50", "message_id": "7667f54c-fd8a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T04:39:50", "message_id": "10c857b4-fd89-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T04:29:50", "message_id": "ab1a9f72-fd87-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T04:19:50", "message_id": "4552c76a-fd86-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T04:09:50", "message_id": "dfbfac0c-fd84-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T03:59:50", "message_id": "79d6046e-fd83-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T03:49:50", "message_id": "1446bed2-fd82-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T03:39:50", "message_id": "ae9fd574-fd80-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T03:29:50", "message_id": "48fc0626-fd7f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T03:19:50", "message_id": "e35a506c-fd7d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T03:09:50", "message_id": "7da5ec8c-fd7c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T02:59:49", "message_id": "17dca63a-fd7b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T02:49:49", "message_id": "b21ebc80-fd79-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T02:39:49", "message_id": "4cb1564c-fd78-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T02:29:49", "message_id": "e6f1ecbe-fd76-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T02:19:49", "message_id": "814c95b8-fd75-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T02:09:49", "message_id": "1b970e84-fd74-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T01:59:49", "message_id": "b5d64534-fd72-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T01:49:49", "message_id": "502ef934-fd71-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T01:39:49", "message_id": "ea883506-fd6f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T01:29:49", "message_id": "850694f8-fd6e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T01:19:49", "message_id": "1f670c46-fd6d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T01:09:49", "message_id": "b9a47804-fd6b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T00:59:48", "message_id": "53dbf07a-fd6a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T00:49:48", "message_id": "ee1cfc94-fd68-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T00:39:48", "message_id": "88842098-fd67-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T00:29:48", "message_id": "22dcf1b2-fd66-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T00:19:48", "message_id": "bd3869fa-fd64-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T00:09:48", "message_id": "57a9580c-fd63-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-04T23:59:48", "message_id": "f1ffd2d4-fd61-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-04T23:49:48", "message_id": "8c3a82ce-fd60-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-04T23:39:05", "message_id": "0cff6f34-fd5f-11e2-b8cf-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-04T23:29:05", "message_id": "a76b6c50-fd5d-11e2-b8cf-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}], "http://localhost:8777/v2/meters/storage.objects.size?q.field=resource_id&q.value=7ec5ec9750414a4c8e767e16e1b6c9cf": [{"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-12T04:01:18", "message_id": "d76a8b10-0303-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-12T03:51:18", "message_id": "71ba0f30-0302-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-12T03:41:18", "message_id": "0c082164-0301-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-12T03:31:18", "message_id": "a66b8414-02ff-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-12T03:21:18", "message_id": "40b71864-02fe-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-12T03:11:18", "message_id": "db0cfc78-02fc-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-12T03:01:17", "message_id": "7552bd38-02fb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-12T02:51:17", "message_id": "0faeda94-02fa-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-12T02:41:17", "message_id": "a9eaf360-02f8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-12T02:31:17", "message_id": "44477962-02f7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-12T02:21:17", "message_id": "de92878e-02f5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-12T02:11:17", "message_id": "78e5a624-02f4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-12T02:01:17", "message_id": "133e89cc-02f3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-12T01:51:17", "message_id": "ad941eee-02f1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-12T01:41:17", "message_id": "47e017c0-02f0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-12T01:31:17", "message_id": "e233479a-02ee-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-12T01:21:17", "message_id": "7c7e0fe4-02ed-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-12T01:11:16", "message_id": "16d54758-02ec-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-12T01:01:16", "message_id": "b112911a-02ea-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-12T00:51:16", "message_id": "4b78be20-02e9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-12T00:41:16", "message_id": "e5be765c-02e7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-12T00:31:16", "message_id": "800df8f6-02e6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-12T00:21:16", "message_id": "1a8ca410-02e5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-12T00:11:16", "message_id": "b4ae6986-02e3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-12T00:01:16", "message_id": "4f0233b6-02e2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T23:51:16", "message_id": "e9551c14-02e0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T23:41:16", "message_id": "83aeff02-02df-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T23:31:16", "message_id": "1e04c976-02de-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T23:21:15", "message_id": "b84b5c36-02dc-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T23:11:15", "message_id": "52ac27a8-02db-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T23:01:16", "message_id": "ed3539ec-02d9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T22:51:15", "message_id": "874c94b4-02d8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T22:41:15", "message_id": "21989f1a-02d7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T22:31:15", "message_id": "bbebbe3c-02d5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T22:21:15", "message_id": "563715c4-02d4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T22:11:15", "message_id": "f0873872-02d2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T22:01:15", "message_id": "8adde42c-02d1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T21:51:15", "message_id": "25367f22-02d0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T21:41:15", "message_id": "bf874a68-02ce-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T21:31:14", "message_id": "59d3573a-02cd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T21:21:14", "message_id": "f429e4e0-02cb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T21:11:14", "message_id": "8e7acce6-02ca-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T21:01:14", "message_id": "28ca0bf6-02c9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T20:51:14", "message_id": "c31fbdec-02c7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T20:41:14", "message_id": "5d6a7088-02c6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T20:31:14", "message_id": "f7c3d180-02c4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T20:21:14", "message_id": "9214d380-02c3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T20:11:14", "message_id": "2c71db1e-02c2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T20:01:14", "message_id": "c6bbf31e-02c0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T19:51:14", "message_id": "611106d6-02bf-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T19:41:14", "message_id": "fb5f042e-02bd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T19:31:13", "message_id": "95b47c22-02bc-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T19:21:13", "message_id": "30032276-02bb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T19:11:13", "message_id": "ca501f20-02b9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T19:01:13", "message_id": "649b0c4a-02b8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T18:51:13", "message_id": "fee8d7e8-02b6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T18:41:13", "message_id": "994155e2-02b5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T18:31:13", "message_id": "338e1fe2-02b4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T18:21:13", "message_id": "cddf2a84-02b2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T18:11:13", "message_id": "68300cfe-02b1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T18:01:13", "message_id": "027f196e-02b0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T17:51:12", "message_id": "9cd4e536-02ae-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T17:41:12", "message_id": "37229482-02ad-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T17:31:12", "message_id": "d17a8500-02ab-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T17:21:12", "message_id": "6bc84dba-02aa-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T17:11:12", "message_id": "0615a9aa-02a9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T17:01:12", "message_id": "a0758a1c-02a7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T16:51:12", "message_id": "3ac655c6-02a6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T16:41:12", "message_id": "d525d652-02a4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T16:31:12", "message_id": "6f6eb12c-02a3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T16:21:12", "message_id": "09b6be98-02a2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T16:11:12", "message_id": "a40c7dc2-02a0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T16:01:12", "message_id": "3e68457e-029f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T15:51:12", "message_id": "d8b75860-029d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T15:41:12", "message_id": "7315dc12-029c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T15:31:11", "message_id": "0d703db8-029b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T15:21:11", "message_id": "a7cf6340-0299-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T15:11:11", "message_id": "421cbc88-0298-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T15:01:11", "message_id": "dc6b4eb4-0296-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T14:51:11", "message_id": "76b62c16-0295-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T14:41:11", "message_id": "11080ac0-0294-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T14:31:11", "message_id": "ab57e7dc-0292-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T14:21:11", "message_id": "45aa56aa-0291-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T14:11:11", "message_id": "dff885a8-028f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T14:01:11", "message_id": "7a531ec6-028e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T13:51:11", "message_id": "14a7bcc2-028d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T13:41:11", "message_id": "aefa3306-028b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T13:31:10", "message_id": "494b9f32-028a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T13:21:10", "message_id": "e39723c4-0288-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T13:11:10", "message_id": "7df013d8-0287-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T13:01:10", "message_id": "1847fd58-0286-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T12:51:10", "message_id": "b292539c-0284-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T12:41:10", "message_id": "4ce82356-0283-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T12:31:10", "message_id": "e7348208-0281-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T12:21:10", "message_id": "81806f68-0280-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T12:11:10", "message_id": "1bd38dea-027f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T12:01:10", "message_id": "b621236e-027d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T11:51:10", "message_id": "5079dd90-027c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T11:41:09", "message_id": "eabf9c2a-027a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T11:31:09", "message_id": "85144d86-0279-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T11:21:09", "message_id": "1f64cf02-0278-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T11:11:09", "message_id": "b9b6db60-0276-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T11:01:09", "message_id": "5407681c-0275-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T10:51:09", "message_id": "ee55a0ca-0273-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T10:41:09", "message_id": "88abd790-0272-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T10:31:09", "message_id": "2301a7a4-0271-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T10:21:09", "message_id": "bd49ab56-026f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T10:11:09", "message_id": "57ac711c-026e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T10:01:09", "message_id": "f1f8b0f2-026c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T09:51:08", "message_id": "8c48dbe8-026b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T09:41:08", "message_id": "26974c86-026a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T09:31:08", "message_id": "c0eedfe4-0268-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T09:21:08", "message_id": "5b3eb698-0267-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T09:11:08", "message_id": "f59669cc-0265-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T09:01:08", "message_id": "8fe6e882-0264-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T08:51:08", "message_id": "2a43e2d8-0263-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T08:41:08", "message_id": "c49701a0-0261-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T08:31:08", "message_id": "5eed2b8c-0260-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T08:21:08", "message_id": "f9314ee6-025e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T08:11:08", "message_id": "938546d4-025d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T08:01:08", "message_id": "2ddc6584-025c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T07:51:07", "message_id": "c825c894-025a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T07:41:07", "message_id": "62816a30-0259-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T07:31:07", "message_id": "fccdd148-0257-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T07:21:07", "message_id": "9722b15c-0256-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T07:11:07", "message_id": "3165143c-0255-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T07:01:07", "message_id": "cbc9b174-0253-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T06:51:07", "message_id": "661574d6-0252-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T06:41:07", "message_id": "0064d858-0251-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T06:31:07", "message_id": "9ab4e6fc-024f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T06:21:07", "message_id": "35154b62-024e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T06:11:07", "message_id": "cf5d9cc6-024c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T06:01:07", "message_id": "69c7bcd0-024b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T05:51:07", "message_id": "040cf870-024a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T05:41:06", "message_id": "9e5b958c-0248-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T05:31:06", "message_id": "38a4e67c-0247-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T05:21:06", "message_id": "d2f70eb4-0245-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T05:11:06", "message_id": "6d3f85c0-0244-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T05:01:06", "message_id": "07976072-0243-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T04:51:06", "message_id": "a1ef5ac8-0241-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T04:41:06", "message_id": "3c3c86fc-0240-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T04:31:06", "message_id": "d69102d4-023e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T04:21:06", "message_id": "70f9e702-023d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T04:11:06", "message_id": "0b30c78e-023c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T04:01:05", "message_id": "a5882a0e-023a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T03:51:05", "message_id": "3fdb363e-0239-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T03:41:05", "message_id": "da441832-0237-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T03:31:05", "message_id": "7477bdca-0236-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T03:21:05", "message_id": "0eca2860-0235-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T03:11:05", "message_id": "a917fdb8-0233-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T03:01:05", "message_id": "4367ca80-0232-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T02:51:05", "message_id": "ddb5b7ca-0230-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T02:41:05", "message_id": "77f73360-022f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T02:31:05", "message_id": "1255d5da-022e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T02:21:04", "message_id": "aca4736e-022c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T02:11:04", "message_id": "46f601be-022b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T02:01:04", "message_id": "e152acbe-0229-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T01:51:04", "message_id": "7b9ae644-0228-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T01:41:04", "message_id": "15ff0e60-0227-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T01:31:04", "message_id": "b04c8116-0225-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T01:21:04", "message_id": "4a854b48-0224-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T01:11:04", "message_id": "e4d7c52e-0222-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T01:01:04", "message_id": "7f33f2e8-0221-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T00:51:04", "message_id": "197cb788-0220-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T00:41:04", "message_id": "b3ce461e-021e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T00:31:03", "message_id": "4e1da608-021d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T00:21:03", "message_id": "e86e6578-021b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T00:11:03", "message_id": "82bcf664-021a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-11T00:01:03", "message_id": "1d134030-0219-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T23:51:03", "message_id": "b765abe8-0217-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T23:41:03", "message_id": "51b41efc-0216-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T23:31:03", "message_id": "ec0bd7d0-0214-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T23:21:03", "message_id": "8663cb50-0213-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T23:11:03", "message_id": "20a977b6-0212-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T23:01:03", "message_id": "bb55d568-0210-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T22:51:03", "message_id": "5561e1da-020f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T22:41:08", "message_id": "f2c10354-020d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T22:31:03", "message_id": "8a0f1068-020c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T22:21:02", "message_id": "24571820-020b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T22:11:02", "message_id": "bebcb91c-0209-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T22:01:02", "message_id": "58fcfeee-0208-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T21:51:02", "message_id": "f365ea92-0206-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T21:41:02", "message_id": "8dadb974-0205-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T21:31:02", "message_id": "27f85586-0204-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T21:21:02", "message_id": "c26bf52a-0202-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T21:11:02", "message_id": "5ca53cd4-0201-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T21:01:02", "message_id": "f6e3a8f0-01ff-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T20:51:02", "message_id": "91961e20-01fe-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T20:41:02", "message_id": "2b99e9c2-01fd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T20:31:02", "message_id": "c61b9da8-01fb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T20:21:01", "message_id": "603734da-01fa-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T20:11:01", "message_id": "fa7a4728-01f8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T20:01:01", "message_id": "94d25aba-01f7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T19:51:01", "message_id": "2f26de58-01f6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T19:41:01", "message_id": "c979119e-01f4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T19:31:01", "message_id": "63d1f67c-01f3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T19:21:01", "message_id": "fe096c0e-01f1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T19:11:01", "message_id": "986b39f0-01f0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T19:01:01", "message_id": "32bc1896-01ef-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T18:51:00", "message_id": "ccfb13c8-01ed-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T18:41:00", "message_id": "6761846c-01ec-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T18:31:00", "message_id": "01ad52dc-01eb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T18:21:00", "message_id": "9bfc0fc4-01e9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T18:11:00", "message_id": "3646fa5a-01e8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T18:01:00", "message_id": "d0974954-01e6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T17:51:00", "message_id": "6af18728-01e5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T17:41:00", "message_id": "0546b106-01e4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T17:31:00", "message_id": "9f91e782-01e2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T17:21:00", "message_id": "39e4f2c2-01e1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T17:11:00", "message_id": "d42f95e6-01df-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T17:00:59", "message_id": "6e8179ea-01de-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T16:50:59", "message_id": "08d69a54-01dd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T16:40:59", "message_id": "a32396cc-01db-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T16:30:59", "message_id": "3d795f10-01da-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T16:20:59", "message_id": "d7c26172-01d8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T16:10:59", "message_id": "721e0e80-01d7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T16:00:59", "message_id": "0c747b6a-01d6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T15:50:59", "message_id": "a6c445bc-01d4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T15:40:59", "message_id": "41259dec-01d3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T15:30:59", "message_id": "db72b4fe-01d1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T15:20:59", "message_id": "75cbb458-01d0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T15:10:59", "message_id": "101a6376-01cf-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T15:00:58", "message_id": "aa652634-01cd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T14:50:58", "message_id": "44bcb56e-01cc-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T14:40:58", "message_id": "df04684e-01ca-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T14:30:58", "message_id": "794c8cb2-01c9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T14:20:58", "message_id": "139da2a8-01c8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T14:10:58", "message_id": "adf7d320-01c6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T14:00:58", "message_id": "48497ebc-01c5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T13:50:58", "message_id": "e29d96b2-01c3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T13:40:58", "message_id": "7ce708fe-01c2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T13:30:58", "message_id": "174499c2-01c1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T13:20:58", "message_id": "b18baebe-01bf-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T13:10:57", "message_id": "4bdd7f44-01be-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T13:00:57", "message_id": "e630389a-01bc-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T12:50:57", "message_id": "807ea0a0-01bb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T12:40:57", "message_id": "1ad3ce7a-01ba-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T12:30:57", "message_id": "b52ba29c-01b8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T12:20:57", "message_id": "4f81d39a-01b7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T12:10:57", "message_id": "e9d8a24a-01b5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T12:00:57", "message_id": "842081ee-01b4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T11:50:57", "message_id": "1e776ade-01b3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T11:40:57", "message_id": "b8d1f65a-01b1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T11:30:57", "message_id": "531db4da-01b0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T11:20:57", "message_id": "ed711240-01ae-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T11:10:57", "message_id": "87c96a6a-01ad-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T11:00:56", "message_id": "22047b4e-01ac-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T10:50:57", "message_id": "bc897f18-01aa-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T10:40:56", "message_id": "56b58c6e-01a9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T10:30:56", "message_id": "f1126f4a-01a7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T10:20:56", "message_id": "8b582bf0-01a6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T10:10:56", "message_id": "25c8129c-01a5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T10:00:56", "message_id": "c0042e9c-01a3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T09:50:56", "message_id": "5a49331e-01a2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T09:40:56", "message_id": "f4a61da2-01a0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T09:30:56", "message_id": "8f11a52a-019f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T09:20:56", "message_id": "2946c352-019e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T09:10:55", "message_id": "c39f2a68-019c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T09:00:56", "message_id": "5e08ea96-019b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T08:50:55", "message_id": "f8401a14-0199-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T08:40:55", "message_id": "929f89de-0198-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T08:30:55", "message_id": "2cd3e0f6-0197-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T08:20:55", "message_id": "c73340f8-0195-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T08:10:55", "message_id": "6173b01e-0194-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T08:00:55", "message_id": "fbc877e6-0192-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T07:50:55", "message_id": "962b1b42-0191-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T07:40:55", "message_id": "30804598-0190-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T07:30:55", "message_id": "cacb3308-018e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T07:20:54", "message_id": "65213f8a-018d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T07:10:54", "message_id": "ff7356ba-018b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T07:00:54", "message_id": "99c08f32-018a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T06:50:54", "message_id": "341741cc-0189-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T06:40:54", "message_id": "ce6a1d3c-0187-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T06:30:54", "message_id": "68bd75f2-0186-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T06:20:54", "message_id": "0312a5fc-0185-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T06:10:54", "message_id": "9d58280a-0183-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T06:00:54", "message_id": "37a09214-0182-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T05:50:54", "message_id": "d202bc4e-0180-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T05:40:54", "message_id": "6c4f43aa-017f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T05:30:53", "message_id": "0695ef2e-017e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T05:20:53", "message_id": "a0ecf3da-017c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T05:10:53", "message_id": "3b43c348-017b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T05:00:53", "message_id": "d59bdbf8-0179-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T04:50:53", "message_id": "6fe13ea8-0178-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T04:40:53", "message_id": "0a2b3fb0-0177-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T04:30:53", "message_id": "a4807e42-0175-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T04:20:53", "message_id": "3ed09a2e-0174-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T04:10:53", "message_id": "d9230c08-0172-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T04:00:53", "message_id": "737e4346-0171-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T03:50:53", "message_id": "0dd01390-0170-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T03:40:53", "message_id": "a82392ca-016e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T03:30:52", "message_id": "4278dc38-016d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T03:20:52", "message_id": "dcc4cce0-016b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T03:10:52", "message_id": "7716c61a-016a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T03:00:52", "message_id": "116900b8-0169-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T02:50:52", "message_id": "abbd5f62-0167-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T02:40:52", "message_id": "4606bea8-0166-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T02:30:52", "message_id": "e057f776-0164-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T02:20:52", "message_id": "7abc0016-0163-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T02:10:52", "message_id": "150de5b4-0162-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T02:00:52", "message_id": "af58447c-0160-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T01:50:52", "message_id": "49d0ce7c-015f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T01:40:52", "message_id": "e4144c22-015d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T01:30:52", "message_id": "7e7746ae-015c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T01:20:52", "message_id": "18ca46ea-015b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T01:10:51", "message_id": "b30c1762-0159-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T01:00:51", "message_id": "4d6769da-0158-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T00:50:51", "message_id": "e794cc02-0156-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T00:40:51", "message_id": "81ec1a14-0155-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T00:30:51", "message_id": "1c3cbb52-0154-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T00:20:51", "message_id": "b67f5aaa-0152-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T00:10:51", "message_id": "50dc805c-0151-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-10T00:00:51", "message_id": "eb2ac83c-014f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T23:50:50", "message_id": "857c9de0-014e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T23:40:50", "message_id": "1fc84662-014d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T23:30:50", "message_id": "ba0ef2a4-014b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T23:20:50", "message_id": "5471ea06-014a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T23:10:50", "message_id": "eebb195e-0148-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T23:00:50", "message_id": "894c2190-0147-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T22:50:50", "message_id": "23607a8a-0146-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T22:40:50", "message_id": "bda9f582-0144-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T22:30:50", "message_id": "57ff1362-0143-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T22:20:50", "message_id": "f2632972-0141-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T22:10:49", "message_id": "8c9e8c2c-0140-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T22:00:49", "message_id": "26fd9346-013f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T21:50:49", "message_id": "c151303a-013d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T21:40:49", "message_id": "5baa2148-013c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T21:30:49", "message_id": "f600fff2-013a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T21:20:49", "message_id": "904ad1ca-0139-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T21:10:49", "message_id": "2aa68e28-0138-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T21:00:49", "message_id": "c4fd9b08-0136-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T20:50:49", "message_id": "5f4b220e-0135-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T20:40:49", "message_id": "f9a1767a-0133-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T20:30:49", "message_id": "93e67408-0132-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T20:20:49", "message_id": "2e5956b0-0131-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T20:10:49", "message_id": "c894eba6-012f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T20:00:49", "message_id": "62e5d4e2-012e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T19:50:49", "message_id": "fd429d60-012c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T19:40:48", "message_id": "9784844e-012b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T19:30:48", "message_id": "31dc7ddc-012a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T19:20:48", "message_id": "cc3e560e-0128-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T19:10:48", "message_id": "6683539c-0127-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T19:00:48", "message_id": "00ceabf6-0126-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T18:50:48", "message_id": "9b1a04c8-0124-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T18:40:48", "message_id": "356f0e12-0123-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T18:30:48", "message_id": "cfb8d87e-0121-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T18:20:48", "message_id": "6a07e0c0-0120-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T18:10:47", "message_id": "04577c64-011f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T18:00:47", "message_id": "9e9faafa-011d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T17:50:47", "message_id": "38f9ff9e-011c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T17:40:47", "message_id": "d3467084-011a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T17:30:47", "message_id": "6d95503a-0119-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T17:20:47", "message_id": "07ee97ba-0118-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T17:10:47", "message_id": "a23c36da-0116-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T17:00:47", "message_id": "3c8fac96-0115-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T16:50:47", "message_id": "d6dafde8-0113-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T16:40:47", "message_id": "712aa67a-0112-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T16:30:47", "message_id": "0b8bf554-0111-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T16:20:46", "message_id": "a5d237ec-010f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T16:10:46", "message_id": "402a8472-010e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T16:00:46", "message_id": "da79325a-010c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T15:50:49", "message_id": "764fb516-010b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T15:40:47", "message_id": "0f7a0766-010a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T15:30:46", "message_id": "a9940038-0108-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T15:20:46", "message_id": "43ca2e86-0107-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T15:10:46", "message_id": "de31b0b8-0105-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T15:00:46", "message_id": "787037a0-0104-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T14:50:46", "message_id": "12cb1d8a-0103-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T14:40:46", "message_id": "ad170112-0101-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T14:30:46", "message_id": "4760dc7c-0100-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T14:20:46", "message_id": "e1be9eb4-00fe-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T14:10:46", "message_id": "7c45f8b2-00fd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T14:00:45", "message_id": "164da9de-00fc-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T13:50:45", "message_id": "b0ae2352-00fa-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T13:40:45", "message_id": "4af78888-00f9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T13:30:45", "message_id": "e5488d9e-00f7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T13:20:46", "message_id": "7ffd7450-00f6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T13:10:45", "message_id": "19dd97fa-00f5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T13:00:45", "message_id": "b43b236e-00f3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T12:50:45", "message_id": "4e8215d8-00f2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T12:40:45", "message_id": "e8dbac2c-00f0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T12:30:44", "message_id": "83322dfc-00ef-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T12:20:44", "message_id": "1d7bee72-00ee-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T12:10:44", "message_id": "b7cd00a8-00ec-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T12:00:44", "message_id": "522036c2-00eb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T11:50:44", "message_id": "ec798ba8-00e9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T11:40:44", "message_id": "86c261dc-00e8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T11:30:44", "message_id": "211b9be2-00e7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T11:20:44", "message_id": "bb6a90d8-00e5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T11:10:44", "message_id": "55c239e4-00e4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T11:00:44", "message_id": "f009e864-00e2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T10:50:44", "message_id": "8a5bb08e-00e1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T10:40:43", "message_id": "24ab65b4-00e0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T10:30:43", "message_id": "bf0271f4-00de-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T10:20:43", "message_id": "594e8f42-00dd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T10:10:43", "message_id": "f3a29e6e-00db-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T10:00:43", "message_id": "8e044004-00da-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T09:50:43", "message_id": "28429e92-00d9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T09:40:43", "message_id": "c29db2a8-00d7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T09:30:43", "message_id": "5cedb6c0-00d6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T09:20:43", "message_id": "f7403aec-00d4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T09:10:43", "message_id": "9199ec5c-00d3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T09:00:43", "message_id": "2be63c7c-00d2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T08:50:42", "message_id": "c6304bda-00d0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T08:40:42", "message_id": "608acc70-00cf-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T08:30:42", "message_id": "faded80e-00cd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T08:20:42", "message_id": "952fd392-00cc-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T08:10:42", "message_id": "2f7a76c0-00cb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T08:00:42", "message_id": "c9ca18cc-00c9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T07:50:42", "message_id": "641b5ffa-00c8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T07:40:42", "message_id": "fe979636-00c6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T07:30:42", "message_id": "98c83bf4-00c5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T07:20:42", "message_id": "330b6bfc-00c4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T07:10:42", "message_id": "cd5e688c-00c2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T07:00:41", "message_id": "67b3fa5c-00c1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T06:50:41", "message_id": "01ff53f6-00c0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T06:40:41", "message_id": "9c5428de-00be-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T06:30:41", "message_id": "36a711be-00bd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T06:20:41", "message_id": "d0f2da2a-00bb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T06:10:41", "message_id": "6b494002-00ba-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T06:00:41", "message_id": "05a44716-00b9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T05:50:41", "message_id": "9ff04916-00b7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T05:40:41", "message_id": "3a48b504-00b6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T05:30:41", "message_id": "d4941a7e-00b4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T05:20:41", "message_id": "6ee55ca2-00b3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T05:10:41", "message_id": "0938ec1c-00b2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T05:00:40", "message_id": "a38dad22-00b0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T04:50:40", "message_id": "3df38cd0-00af-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T04:40:40", "message_id": "d84af75c-00ad-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T04:30:40", "message_id": "72985d38-00ac-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T04:20:40", "message_id": "0cf9cdc8-00ab-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T04:10:40", "message_id": "a752bbb6-00a9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T04:00:40", "message_id": "41c7ca12-00a8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T03:50:41", "message_id": "dc44542c-00a6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T03:40:40", "message_id": "765768da-00a5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T03:30:40", "message_id": "10dd0ba0-00a4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T03:20:40", "message_id": "ab060efe-00a2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T03:10:40", "message_id": "4561988a-00a1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T03:00:40", "message_id": "dfb55680-009f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T02:50:40", "message_id": "79f94e74-009e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T02:40:40", "message_id": "148242ea-009d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T02:30:40", "message_id": "ae9fdf74-009b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T02:20:40", "message_id": "48f5ce96-009a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T02:10:39", "message_id": "e349b1f8-0098-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T02:00:39", "message_id": "7d9be48a-0097-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T01:50:39", "message_id": "17d97f32-0096-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T01:40:39", "message_id": "b2293a16-0094-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T01:30:39", "message_id": "4c7be50c-0093-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T01:20:39", "message_id": "e6d8c414-0091-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T01:10:39", "message_id": "811cbde8-0090-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T01:00:39", "message_id": "1b7b2354-008f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T00:50:39", "message_id": "b5c1b1a0-008d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T00:40:38", "message_id": "500cd84a-008c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T00:30:38", "message_id": "ea6d0d12-008a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T00:20:38", "message_id": "84c19128-0089-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T00:10:38", "message_id": "1f0e7e5a-0088-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-09T00:00:38", "message_id": "b95f3924-0086-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T23:50:38", "message_id": "53aa12b2-0085-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T23:40:38", "message_id": "ee0ac128-0083-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T23:30:38", "message_id": "8850ef34-0082-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T23:20:38", "message_id": "229ac08a-0081-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T23:10:38", "message_id": "bcf786ce-007f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T23:00:38", "message_id": "577fc532-007e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T22:50:38", "message_id": "f1922892-007c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T22:40:37", "message_id": "8beb0dc0-007b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T22:30:37", "message_id": "262a849e-007a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T22:20:37", "message_id": "c0870974-0078-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T22:10:37", "message_id": "5ad70486-0077-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T22:00:37", "message_id": "f527b76c-0075-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T21:50:37", "message_id": "8f847630-0074-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T21:40:37", "message_id": "29cd498a-0073-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T21:30:37", "message_id": "c422e550-0071-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T21:20:37", "message_id": "5e83a104-0070-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T21:10:37", "message_id": "f8c7966e-006e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T21:00:37", "message_id": "9310b6d0-006d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T20:50:36", "message_id": "2d5e4812-006c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T20:40:36", "message_id": "c7b10c30-006a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T20:30:36", "message_id": "6209f9d8-0069-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T20:20:36", "message_id": "fc4ec2fa-0067-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T20:10:36", "message_id": "96ac2eb6-0066-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T20:00:36", "message_id": "30f75e8e-0065-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T19:50:36", "message_id": "cb4f6794-0063-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T19:40:36", "message_id": "659a3bbe-0062-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T19:30:36", "message_id": "ffed0ca2-0060-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T19:20:36", "message_id": "9a38bace-005f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T19:10:35", "message_id": "348d9e66-005e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T19:00:35", "message_id": "cee175a2-005c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T18:50:35", "message_id": "6930fe7c-005b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T18:40:35", "message_id": "037d9bd6-005a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T18:30:35", "message_id": "9dddf2fe-0058-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T18:20:35", "message_id": "381dbdb0-0057-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T18:10:35", "message_id": "d27b4bcc-0055-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T18:00:35", "message_id": "6cccfb00-0054-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T17:50:35", "message_id": "071f8e2c-0053-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T17:40:35", "message_id": "a1797c0a-0051-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T17:30:35", "message_id": "3bcd5cce-0050-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T17:20:35", "message_id": "d61ae9ce-004e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T17:10:34", "message_id": "706b4be2-004d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T17:00:34", "message_id": "0ab9eea8-004c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T16:50:34", "message_id": "a50c9200-004a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T16:40:34", "message_id": "3f67a738-0049-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T16:30:34", "message_id": "d9ba8de8-0047-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T16:20:34", "message_id": "740eff52-0046-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T16:10:34", "message_id": "0e5b213c-0045-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T16:00:34", "message_id": "a8b683b8-0043-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T15:50:34", "message_id": "43051378-0042-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T15:40:34", "message_id": "dd520712-0040-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T15:30:34", "message_id": "77a74842-003f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T15:20:34", "message_id": "11fd1388-003e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T15:10:33", "message_id": "ac4caba8-003c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T15:00:33", "message_id": "4696fef4-003b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T14:50:33", "message_id": "e0efab92-0039-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T14:40:33", "message_id": "7b39a3e4-0038-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T14:30:33", "message_id": "1593e064-0037-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T14:20:33", "message_id": "afdf8bb6-0035-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T14:10:33", "message_id": "4a419e08-0034-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T14:00:33", "message_id": "e4c2f488-0032-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T13:50:33", "message_id": "7ed4a762-0031-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T13:40:33", "message_id": "1932c1c4-0030-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T13:30:33", "message_id": "b380c5ac-002e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T13:20:33", "message_id": "4ddc910a-002d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T13:10:32", "message_id": "e828adf4-002b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T13:00:32", "message_id": "8276b466-002a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T12:50:32", "message_id": "1ccae0d4-0029-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T12:40:32", "message_id": "b710fe64-0027-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T12:30:32", "message_id": "516aa1f6-0026-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T12:20:32", "message_id": "ebb423d8-0024-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T12:10:32", "message_id": "85fe5f96-0023-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T12:00:32", "message_id": "205b169e-0022-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T11:50:32", "message_id": "baa71786-0020-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T11:40:32", "message_id": "550eed50-001f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T11:30:32", "message_id": "ef640090-001d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T11:20:31", "message_id": "89a5458a-001c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T11:10:32", "message_id": "2416d7ac-001b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T11:00:31", "message_id": "be55d810-0019-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T10:50:31", "message_id": "58a80138-0018-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T10:40:31", "message_id": "f3041930-0016-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T10:30:31", "message_id": "8d7190ee-0015-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T10:20:31", "message_id": "27bb6fe6-0014-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T10:10:31", "message_id": "c2224c14-0012-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T10:00:31", "message_id": "5c4612f0-0011-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T09:50:31", "message_id": "f695e468-000f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T09:40:31", "message_id": "90deebc0-000e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T09:30:31", "message_id": "2b429a42-000d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T09:20:30", "message_id": "c585de04-000b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T09:10:30", "message_id": "5fd484d0-000a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T09:00:30", "message_id": "fa2edec4-0008-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T08:50:30", "message_id": "947d88ba-0007-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T08:40:30", "message_id": "2ed62b76-0006-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T08:30:30", "message_id": "c92be2bc-0004-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T08:20:30", "message_id": "63788e80-0003-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T08:10:30", "message_id": "fdd7c2fe-0001-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T08:00:30", "message_id": "981d94e4-0000-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T07:50:30", "message_id": "326cca26-ffff-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T07:40:30", "message_id": "ccbd4e40-fffd-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T07:30:30", "message_id": "670c4ec6-fffc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T07:20:29", "message_id": "0166b94a-fffb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T07:10:29", "message_id": "9badd01c-fff9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T07:00:29", "message_id": "35f8d9fc-fff8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T06:50:29", "message_id": "d05bc664-fff6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T06:40:29", "message_id": "6aa384c0-fff5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T06:30:29", "message_id": "04f0f5fa-fff4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T06:20:29", "message_id": "9f44d858-fff2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T06:10:29", "message_id": "39953d50-fff1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T06:00:29", "message_id": "d3ed8710-ffef-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T05:50:29", "message_id": "6e46e0e2-ffee-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T05:40:29", "message_id": "089f6ca6-ffed-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T05:30:29", "message_id": "a2e7d818-ffeb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T05:20:28", "message_id": "3d2f4f34-ffea-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T05:10:28", "message_id": "d784b5ee-ffe8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T05:00:28", "message_id": "71d9b2cc-ffe7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T04:50:28", "message_id": "0c1d48f0-ffe6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T04:40:28", "message_id": "a67eb6ec-ffe4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T04:30:28", "message_id": "40c31286-ffe3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T04:20:28", "message_id": "db1cd058-ffe1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T04:10:28", "message_id": "756e299c-ffe0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T04:00:28", "message_id": "0fb65526-ffdf-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T03:50:28", "message_id": "aa0d235e-ffdd-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T03:40:27", "message_id": "445a6ffe-ffdc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T03:30:27", "message_id": "deabcd66-ffda-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T03:20:27", "message_id": "78fb6d10-ffd9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T03:10:27", "message_id": "135086c2-ffd8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T03:00:27", "message_id": "ada2982a-ffd6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T02:50:27", "message_id": "47edb9c0-ffd5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T02:40:27", "message_id": "e23c2fa4-ffd3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T02:30:27", "message_id": "7c9698d4-ffd2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T02:20:27", "message_id": "1701387c-ffd1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T02:10:27", "message_id": "b12b04a2-ffcf-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T02:00:26", "message_id": "4b86392e-ffce-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T01:50:26", "message_id": "e5d0ace6-ffcc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T01:40:26", "message_id": "802238de-ffcb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T01:30:26", "message_id": "1a737ddc-ffca-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T01:20:26", "message_id": "b4cb58a2-ffc8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T01:10:26", "message_id": "4f215cc8-ffc7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T01:00:26", "message_id": "e96e8ee2-ffc5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T00:50:26", "message_id": "83c485fc-ffc4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T00:40:26", "message_id": "1e1841ea-ffc3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T00:30:26", "message_id": "b8667552-ffc1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T00:20:26", "message_id": "53119926-ffc0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T00:10:26", "message_id": "ed067580-ffbe-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-08T00:00:26", "message_id": "878259fa-ffbd-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T23:50:25", "message_id": "21b2d01a-ffbc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T23:40:25", "message_id": "bc08798c-ffba-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T23:30:25", "message_id": "5661afdc-ffb9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T23:20:25", "message_id": "f0cdb270-ffb7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T23:10:25", "message_id": "8b1e74ec-ffb6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T23:00:25", "message_id": "2596582a-ffb5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T22:50:25", "message_id": "bf91680e-ffb3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T22:40:25", "message_id": "59ef47ce-ffb2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T22:30:25", "message_id": "f43f127a-ffb0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T22:20:24", "message_id": "8e7f6670-ffaf-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T22:10:24", "message_id": "28e46730-ffae-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T22:00:24", "message_id": "c32aa3d8-ffac-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T21:50:24", "message_id": "5d6cf9f2-ffab-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T21:40:24", "message_id": "f7c74cf2-ffa9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T21:30:24", "message_id": "921fbe3a-ffa8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T21:20:24", "message_id": "2c67b8d2-ffa7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T21:10:24", "message_id": "c6ab965e-ffa5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T21:00:24", "message_id": "61061a0a-ffa4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T20:50:24", "message_id": "fb56dc04-ffa2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T20:40:23", "message_id": "95a2a0c4-ffa1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T20:30:23", "message_id": "2ff81c64-ffa0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T20:20:23", "message_id": "ca4aa946-ff9e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T20:10:23", "message_id": "648fc8e4-ff9d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T20:00:23", "message_id": "fee9016e-ff9b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T19:50:23", "message_id": "99328ab2-ff9a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T19:40:23", "message_id": "338c5090-ff99-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T19:30:23", "message_id": "cddd731a-ff97-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T19:20:23", "message_id": "6833431a-ff96-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T19:10:23", "message_id": "0282172c-ff95-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T19:00:23", "message_id": "9ccbc5b4-ff93-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T18:50:22", "message_id": "3724e1b0-ff92-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T18:40:22", "message_id": "d1776a78-ff90-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T18:30:22", "message_id": "6bb73336-ff8f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T18:20:22", "message_id": "0606fe46-ff8e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T18:10:22", "message_id": "a05c50ba-ff8c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T18:00:22", "message_id": "3ab0c8f0-ff8b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T17:50:22", "message_id": "d50072fe-ff89-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T17:40:22", "message_id": "6f589c16-ff88-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T17:30:22", "message_id": "09a7dedc-ff87-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T17:20:22", "message_id": "a3f42ff6-ff85-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T17:10:22", "message_id": "3e4c4f40-ff84-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T17:00:21", "message_id": "d89126ea-ff82-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T16:50:21", "message_id": "72d9b2d2-ff81-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T16:40:21", "message_id": "0d300fe0-ff80-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T16:30:21", "message_id": "a78cf014-ff7e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T16:20:21", "message_id": "41d06d74-ff7d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T16:10:21", "message_id": "dc2a8ce4-ff7b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T16:00:21", "message_id": "767c019e-ff7a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T15:50:21", "message_id": "10cfe53c-ff79-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T15:40:21", "message_id": "ab1bd79c-ff77-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T15:30:21", "message_id": "4567c218-ff76-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T15:20:20", "message_id": "dfbb99e0-ff74-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T15:10:20", "message_id": "7a0956c4-ff73-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T15:00:20", "message_id": "14591f40-ff72-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T14:50:20", "message_id": "aeabf402-ff70-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T14:40:20", "message_id": "48faa834-ff6f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T14:30:20", "message_id": "e360ef0c-ff6d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T14:20:20", "message_id": "7db08790-ff6c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T14:10:20", "message_id": "17fff210-ff6b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T14:00:20", "message_id": "b25046d2-ff69-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T13:50:20", "message_id": "4c9dd2c4-ff68-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T13:40:20", "message_id": "e7056c8e-ff66-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T13:30:20", "message_id": "814b0b0c-ff65-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T13:20:19", "message_id": "1b9cefd8-ff64-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T13:10:19", "message_id": "b5f3e57a-ff62-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T13:00:19", "message_id": "504ede4c-ff61-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T12:50:19", "message_id": "eaa4cdaa-ff5f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T12:40:19", "message_id": "84ef27ae-ff5e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T12:30:19", "message_id": "1f4572c4-ff5d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T12:20:19", "message_id": "b99b104c-ff5b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T12:10:19", "message_id": "53e07d60-ff5a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T12:00:19", "message_id": "ee2e5c36-ff58-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T11:50:19", "message_id": "8886f8a8-ff57-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T11:40:19", "message_id": "22dc4fe0-ff56-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T11:30:19", "message_id": "bd2c0e98-ff54-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T11:20:18", "message_id": "577bbf04-ff53-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T11:10:19", "message_id": "f1e95116-ff51-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T11:00:18", "message_id": "8c310978-ff50-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T10:50:18", "message_id": "26841a4e-ff4f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T10:40:18", "message_id": "c0df8292-ff4d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T10:30:18", "message_id": "5b28d774-ff4c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T10:20:18", "message_id": "f57b2f18-ff4a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T10:10:18", "message_id": "8fd95a6e-ff49-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T10:00:18", "message_id": "2a34a5b6-ff48-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T09:50:18", "message_id": "c47425b8-ff46-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T09:40:18", "message_id": "5ecdd048-ff45-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T09:30:18", "message_id": "f90cfabe-ff43-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T09:20:18", "message_id": "93666cd2-ff42-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T09:10:17", "message_id": "2db76496-ff41-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T09:00:17", "message_id": "c7fb2242-ff3f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T08:50:17", "message_id": "624e307a-ff3e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T08:40:17", "message_id": "fca5d634-ff3c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T08:30:17", "message_id": "96f3c586-ff3b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T08:20:17", "message_id": "313719f6-ff3a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T08:10:17", "message_id": "cb87c2fa-ff38-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T08:00:17", "message_id": "65d6f49a-ff37-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T07:50:17", "message_id": "00283dd0-ff36-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T07:40:16", "message_id": "9a752c74-ff34-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T07:30:16", "message_id": "34d0e4ae-ff33-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T07:20:16", "message_id": "cf184d4c-ff31-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T07:10:16", "message_id": "6967769a-ff30-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T07:00:16", "message_id": "03c20798-ff2f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T06:50:16", "message_id": "9e145c80-ff2d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T06:40:16", "message_id": "386471c8-ff2c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T06:30:16", "message_id": "d2ab213e-ff2a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T06:20:16", "message_id": "6d0d5a1e-ff29-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T06:10:16", "message_id": "076ac012-ff28-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T06:00:16", "message_id": "a1aa8420-ff26-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T05:50:16", "message_id": "3c06c846-ff25-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T05:40:15", "message_id": "d648c500-ff23-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T05:30:16", "message_id": "70c24e32-ff22-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T05:20:15", "message_id": "0af5f672-ff21-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T05:10:15", "message_id": "a53ac2e6-ff1f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T05:00:15", "message_id": "3fa1ef50-ff1e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T04:50:15", "message_id": "d9e547c6-ff1c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T04:40:15", "message_id": "743e62f0-ff1b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T04:30:15", "message_id": "0e9d0010-ff1a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T04:20:15", "message_id": "a8ddafbe-ff18-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T04:10:15", "message_id": "4339f3bc-ff17-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T04:00:15", "message_id": "dd8821d4-ff15-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T03:50:15", "message_id": "77f0644a-ff14-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T03:40:14", "message_id": "12314576-ff13-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T03:30:14", "message_id": "ac787bd8-ff11-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T03:20:14", "message_id": "46cf3020-ff10-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T03:10:14", "message_id": "e1342924-ff0e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T03:00:14", "message_id": "7b71bc92-ff0d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T02:50:14", "message_id": "15df2cf8-ff0c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T02:40:14", "message_id": "b029533a-ff0a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T02:30:14", "message_id": "4a7ca556-ff09-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T02:20:14", "message_id": "e4c3c92a-ff07-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T02:10:14", "message_id": "7f141f04-ff06-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T02:00:14", "message_id": "19619fca-ff05-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T01:50:14", "message_id": "b3c1e23e-ff03-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T01:40:13", "message_id": "4e067f0a-ff02-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T01:30:13", "message_id": "e85f489a-ff00-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T01:20:13", "message_id": "82b12c44-feff-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T01:10:13", "message_id": "1d095b38-fefe-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T01:00:13", "message_id": "b74cbeda-fefc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T00:50:13", "message_id": "51a9482e-fefb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T00:40:13", "message_id": "ebfe83a0-fef9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T00:30:13", "message_id": "864047ac-fef8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T00:20:13", "message_id": "2092366e-fef7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T00:10:13", "message_id": "bae507fc-fef5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-07T00:00:12", "message_id": "552d41be-fef4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T23:50:12", "message_id": "ef904d34-fef2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T23:40:12", "message_id": "89e066be-fef1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T23:30:12", "message_id": "24366e86-fef0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T23:20:12", "message_id": "be982fd4-feee-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T23:10:12", "message_id": "58cfea62-feed-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T23:00:12", "message_id": "f36db006-feeb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T22:50:12", "message_id": "8d79aecc-feea-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T22:40:12", "message_id": "27ce763a-fee9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T22:30:12", "message_id": "c220e1ca-fee7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T22:20:12", "message_id": "5c69e9ae-fee6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T22:10:12", "message_id": "f6d259e2-fee4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T22:00:12", "message_id": "913aa0d6-fee3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T21:50:11", "message_id": "2b6a25fc-fee2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T21:40:12", "message_id": "c5e26830-fee0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T21:30:11", "message_id": "6018c180-fedf-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T21:20:11", "message_id": "fa6be05c-fedd-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T21:10:11", "message_id": "94b49b2e-fedc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T21:00:11", "message_id": "2efac57a-fedb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T20:50:11", "message_id": "c957a608-fed9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T20:40:11", "message_id": "63b67352-fed8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T20:30:11", "message_id": "fe022c50-fed6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T20:20:11", "message_id": "98800826-fed5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T20:10:11", "message_id": "329ef874-fed4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T20:00:11", "message_id": "cd07fb2e-fed2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T19:50:10", "message_id": "67502ab4-fed1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T19:40:10", "message_id": "01a77b46-fed0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T19:30:10", "message_id": "9bf83ed0-fece-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T19:20:10", "message_id": "36452900-fecd-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T19:10:10", "message_id": "d09527aa-fecb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T19:00:10", "message_id": "6ad57808-feca-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T18:50:10", "message_id": "0551f7dc-fec9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T18:40:10", "message_id": "9f89de66-fec7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T18:30:10", "message_id": "39d2e6fe-fec6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T18:20:10", "message_id": "d4290564-fec4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T18:10:09", "message_id": "6e758e50-fec3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T18:00:09", "message_id": "08ba1514-fec2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T17:50:09", "message_id": "a3123ff8-fec0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T17:40:09", "message_id": "3d6a5bfa-febf-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T17:30:09", "message_id": "d7b5af7c-febd-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T17:20:09", "message_id": "720d2ba6-febc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T17:10:09", "message_id": "0c532afa-febb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T17:00:09", "message_id": "a6a5fbe8-feb9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T16:50:09", "message_id": "40f98482-feb8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T16:40:09", "message_id": "db422dd4-feb6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T16:30:09", "message_id": "759962b4-feb5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T16:20:08", "message_id": "0fe688ee-feb4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T16:10:08", "message_id": "aa4344e2-feb2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T16:00:08", "message_id": "44958fe8-feb1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T15:50:08", "message_id": "dedeef2e-feaf-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T15:40:08", "message_id": "793c991a-feae-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T15:30:08", "message_id": "13823946-fead-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T15:20:08", "message_id": "add75afa-feab-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T15:10:08", "message_id": "48254074-feaa-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T15:00:08", "message_id": "e2764f4e-fea8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T14:50:08", "message_id": "7ccc42ee-fea7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T14:40:08", "message_id": "172a7b14-fea6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T14:30:08", "message_id": "b1841cee-fea4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T14:20:07", "message_id": "4bd2d800-fea3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T14:10:07", "message_id": "e61f77da-fea1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T14:00:07", "message_id": "808d7896-fea0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T13:50:07", "message_id": "1ad0ccb6-fe9f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T13:40:07", "message_id": "b513d96e-fe9d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T13:30:07", "message_id": "4f6644f4-fe9c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T13:20:07", "message_id": "e9b6a49c-fe9a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T13:10:07", "message_id": "84054154-fe99-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T13:00:07", "message_id": "1e60da4e-fe98-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T12:50:07", "message_id": "b8b56530-fe96-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T12:40:07", "message_id": "531a966a-fe95-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T12:30:07", "message_id": "ed59538a-fe93-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T12:20:06", "message_id": "87a48b46-fe92-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T12:10:06", "message_id": "22023e7e-fe91-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T12:00:06", "message_id": "bc536cde-fe8f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T11:50:06", "message_id": "56a1f082-fe8e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T11:40:06", "message_id": "f100a7a6-fe8c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T11:30:07", "message_id": "8bdea220-fe8b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T11:20:06", "message_id": "25984f8a-fe8a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T11:10:06", "message_id": "bfe444ce-fe88-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T11:00:06", "message_id": "5a3d7cfe-fe87-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T10:50:06", "message_id": "f4914328-fe85-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T10:40:06", "message_id": "8ee2f2ac-fe84-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T10:30:05", "message_id": "2930892a-fe83-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T10:20:05", "message_id": "c386955c-fe81-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T10:10:05", "message_id": "5dcd173c-fe80-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T10:00:05", "message_id": "f824249e-fe7e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T09:50:05", "message_id": "9270ae16-fe7d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T09:40:05", "message_id": "2cc80d4e-fe7c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T09:30:05", "message_id": "c71cd048-fe7a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T09:20:05", "message_id": "6165d07a-fe79-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T09:10:05", "message_id": "fbbe7ab6-fe77-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T09:00:05", "message_id": "960cc4c6-fe76-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T08:50:05", "message_id": "305e6158-fe75-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T08:40:04", "message_id": "cab1047e-fe73-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T08:30:04", "message_id": "64ff62c0-fe72-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T08:20:04", "message_id": "ff52d746-fe70-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T08:10:04", "message_id": "99a7f670-fe6f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T08:00:04", "message_id": "33fa2308-fe6e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T07:50:04", "message_id": "ce4ab87a-fe6c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T07:40:04", "message_id": "68ac0ca4-fe6b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T07:30:04", "message_id": "02fbdf52-fe6a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T07:20:04", "message_id": "9d5015f2-fe68-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T07:10:04", "message_id": "379f550c-fe67-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T07:00:04", "message_id": "d1efd372-fe65-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T06:50:04", "message_id": "6c3f3460-fe64-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T06:40:04", "message_id": "069cb52a-fe63-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T06:30:03", "message_id": "a0eebefe-fe61-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T06:20:03", "message_id": "3b3983a6-fe60-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T06:10:03", "message_id": "d58525f2-fe5e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T06:00:03", "message_id": "6fd63d1e-fe5d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T05:50:03", "message_id": "0a28c028-fe5c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T05:40:03", "message_id": "a47fe4dc-fe5a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T05:30:03", "message_id": "3ec79604-fe59-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T05:20:03", "message_id": "d91b9310-fe57-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T05:10:03", "message_id": "7372d9de-fe56-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T05:00:03", "message_id": "0dbef2fe-fe55-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T04:50:02", "message_id": "a8109c56-fe53-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T04:40:02", "message_id": "426a2b7a-fe52-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T04:30:02", "message_id": "dcbeae6e-fe50-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T04:20:02", "message_id": "7706ef74-fe4f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T04:10:02", "message_id": "114df82c-fe4e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T04:00:02", "message_id": "abaa05de-fe4c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T03:50:02", "message_id": "45f92d92-fe4b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T03:40:02", "message_id": "e04df000-fe49-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T03:30:02", "message_id": "7a9851ac-fe48-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T03:20:02", "message_id": "14e579ee-fe47-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T03:10:02", "message_id": "af41e8da-fe45-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T03:00:01", "message_id": "498d57be-fe44-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T02:50:01", "message_id": "e3dc5c4a-fe42-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T02:40:01", "message_id": "7e2b3674-fe41-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T02:30:01", "message_id": "1889cc64-fe40-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T02:20:01", "message_id": "b2de8888-fe3e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T02:10:01", "message_id": "4d27846e-fe3d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T02:00:01", "message_id": "e77ea77e-fe3b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T01:50:01", "message_id": "81d2002a-fe3a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T01:40:01", "message_id": "1c2fc820-fe39-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T01:30:01", "message_id": "b67fbbe4-fe37-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T01:20:01", "message_id": "50dad55e-fe36-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T01:10:01", "message_id": "eb21cc8c-fe34-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T01:00:01", "message_id": "857aafbc-fe33-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T00:50:00", "message_id": "1fc245c8-fe32-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T00:40:00", "message_id": "ba1a6bf2-fe30-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T00:30:00", "message_id": "5466114a-fe2f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T00:20:00", "message_id": "eeb589e4-fe2d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T00:10:00", "message_id": "89098420-fe2c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-06T00:00:00", "message_id": "235bcd78-fe2b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T23:50:00", "message_id": "bdae9da8-fe29-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T23:40:00", "message_id": "5803635e-fe28-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T23:30:00", "message_id": "f252492c-fe26-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T23:20:00", "message_id": "8caf6916-fe25-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T23:10:00", "message_id": "273b6626-fe24-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T23:00:00", "message_id": "c18ec4c2-fe22-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T22:49:59", "message_id": "5b97bb20-fe21-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T22:39:59", "message_id": "f5e3644c-fe1f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T22:29:59", "message_id": "903d37cc-fe1e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T22:19:59", "message_id": "2a91eba8-fe1d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T22:09:59", "message_id": "c4df9982-fe1b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T21:59:59", "message_id": "5f2f76ee-fe1a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T21:49:59", "message_id": "f97fdc36-fe18-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T21:39:59", "message_id": "93ccf08c-fe17-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T21:29:59", "message_id": "2e16278c-fe16-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T21:19:58", "message_id": "c86df3e8-fe14-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T21:09:58", "message_id": "62bf383c-fe13-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T20:59:58", "message_id": "fd135d8e-fe11-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T20:49:58", "message_id": "97596a02-fe10-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T20:39:58", "message_id": "31aac90e-fe0f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T20:29:58", "message_id": "cbfa0ec2-fe0d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T20:19:58", "message_id": "665503e8-fe0c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T20:09:58", "message_id": "009f56a8-fe0b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T19:59:58", "message_id": "9af4c1f4-fe09-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T19:49:58", "message_id": "35472c8a-fe08-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T19:39:58", "message_id": "cfa40a2a-fe06-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T19:29:58", "message_id": "69f1114c-fe05-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T19:19:57", "message_id": "0441fb0a-fe04-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T19:09:57", "message_id": "9e98ccf8-fe02-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T18:59:57", "message_id": "38e707a4-fe01-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T18:49:57", "message_id": "d335eb56-fdff-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T18:39:57", "message_id": "6d8eda3e-fdfe-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T18:29:57", "message_id": "07e1cb52-fdfd-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T18:19:57", "message_id": "a236fe0e-fdfb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T18:09:57", "message_id": "3c970fcc-fdfa-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T17:59:57", "message_id": "d6dc13ea-fdf8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T17:49:57", "message_id": "71320f96-fdf7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T17:39:57", "message_id": "0b833f36-fdf6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T17:29:57", "message_id": "a5d8f532-fdf4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T17:19:56", "message_id": "40288f96-fdf3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T17:09:56", "message_id": "da7c91a2-fdf1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T16:59:56", "message_id": "74cdfbbc-fdf0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T16:49:56", "message_id": "0f1e7658-fdef-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T16:39:56", "message_id": "a979f2a6-fded-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T16:29:56", "message_id": "43f4b58e-fdec-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T16:19:56", "message_id": "de25b876-fdea-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T16:09:56", "message_id": "78825084-fde9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T15:59:56", "message_id": "12d2263e-fde8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T15:49:56", "message_id": "ad29f736-fde6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T15:39:56", "message_id": "477e00a4-fde5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T15:29:56", "message_id": "e1cf575e-fde3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T15:19:56", "message_id": "7c50c74c-fde2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T15:09:56", "message_id": "166a573c-fde1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T14:59:55", "message_id": "b0b9dc42-fddf-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T14:49:55", "message_id": "4b17e196-fdde-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T14:39:55", "message_id": "e561f392-fddc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T14:29:55", "message_id": "7fb67898-fddb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T14:19:55", "message_id": "1a074f1e-fdda-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T14:09:55", "message_id": "b45da1dc-fdd8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T13:59:55", "message_id": "4ea98b2c-fdd7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T13:49:55", "message_id": "e8fe6fd2-fdd5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T13:39:55", "message_id": "834aca10-fdd4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T13:29:55", "message_id": "1d98de4c-fdd3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T13:19:55", "message_id": "b7ea54fa-fdd1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T13:09:54", "message_id": "523fab9c-fdd0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T12:59:54", "message_id": "ec92be20-fdce-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T12:49:54", "message_id": "86e3a414-fdcd-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T12:39:54", "message_id": "213225d8-fdcc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T12:29:54", "message_id": "bb827ed2-fdca-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T12:19:54", "message_id": "55d6636a-fdc9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T12:09:54", "message_id": "f020fca2-fdc7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T11:59:54", "message_id": "8a7714d2-fdc6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T11:49:54", "message_id": "24cc5576-fdc5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T11:39:54", "message_id": "bf21225c-fdc3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T11:29:54", "message_id": "5970fef6-fdc2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T11:19:53", "message_id": "f3c6baec-fdc0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T11:09:53", "message_id": "8e17c50c-fdbf-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T10:59:53", "message_id": "286b4b4e-fdbe-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T10:49:54", "message_id": "c2e6ec7a-fdbc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T10:39:53", "message_id": "5d0d52f0-fdbb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T10:29:53", "message_id": "f769b386-fdb9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T10:19:53", "message_id": "91b784ce-fdb8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T10:09:53", "message_id": "2c184744-fdb7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T09:59:53", "message_id": "c66ae5b0-fdb5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T09:49:53", "message_id": "60beed84-fdb4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T09:39:53", "message_id": "fb101572-fdb2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T09:29:53", "message_id": "9564c282-fdb1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T09:19:53", "message_id": "2fb36f2a-fdb0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T09:09:52", "message_id": "ca0080ba-fdae-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T08:59:52", "message_id": "645807fc-fdad-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T08:49:52", "message_id": "feb824fa-fdab-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T08:39:52", "message_id": "98fd1392-fdaa-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T08:29:52", "message_id": "334e256e-fda9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T08:19:52", "message_id": "cd9d0330-fda7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T08:09:52", "message_id": "6808cabe-fda6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T07:59:52", "message_id": "0244401a-fda5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T07:49:52", "message_id": "9c92816a-fda3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T07:39:52", "message_id": "36eb2b74-fda2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T07:29:52", "message_id": "d13916d4-fda0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T07:19:52", "message_id": "6b8d1ff2-fd9f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T07:09:52", "message_id": "060548cc-fd9e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T06:59:51", "message_id": "a029fa4e-fd9c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T06:49:51", "message_id": "3a8066a2-fd9b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T06:39:51", "message_id": "d4c7c810-fd99-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T06:29:51", "message_id": "6f1c5126-fd98-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T06:19:51", "message_id": "0967e030-fd97-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T06:09:51", "message_id": "a3bd4366-fd95-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T05:59:51", "message_id": "3e109514-fd94-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T05:49:51", "message_id": "d862abd6-fd92-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T05:39:51", "message_id": "72b39968-fd91-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T05:29:51", "message_id": "0d10912a-fd90-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T05:19:50", "message_id": "a75f9eee-fd8e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T05:09:50", "message_id": "41a9d994-fd8d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T04:59:50", "message_id": "dc09d450-fd8b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T04:49:50", "message_id": "766768ca-fd8a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T04:39:50", "message_id": "10c74c7a-fd89-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T04:29:50", "message_id": "ab19d3a8-fd87-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T04:19:50", "message_id": "45522792-fd86-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T04:09:50", "message_id": "dfbe8d40-fd84-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T03:59:50", "message_id": "79d54a60-fd83-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T03:49:50", "message_id": "1445fd8a-fd82-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T03:39:50", "message_id": "ae9eee02-fd80-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T03:29:50", "message_id": "48fb3f0c-fd7f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T03:19:50", "message_id": "e3596d0a-fd7d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T03:09:50", "message_id": "7da5448a-fd7c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T02:59:49", "message_id": "17dc0176-fd7b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T02:49:49", "message_id": "b21dcd70-fd79-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T02:39:49", "message_id": "4cafa7fc-fd78-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T02:29:49", "message_id": "e6f1281a-fd76-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T02:19:49", "message_id": "814b89d4-fd75-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T02:09:49", "message_id": "1b966056-fd74-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T01:59:49", "message_id": "b5d56fec-fd72-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T01:49:49", "message_id": "502befdc-fd71-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T01:39:49", "message_id": "ea878d86-fd6f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T01:29:49", "message_id": "850562a4-fd6e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T01:19:49", "message_id": "1f6603d2-fd6d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T01:09:49", "message_id": "b9a3b7ac-fd6b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T00:59:48", "message_id": "53db479c-fd6a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T00:49:48", "message_id": "ee1c3a5c-fd68-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T00:39:48", "message_id": "88834ca4-fd67-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T00:29:48", "message_id": "22dc2d9a-fd66-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T00:19:48", "message_id": "bd37ab82-fd64-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-05T00:09:48", "message_id": "57a861a4-fd63-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-04T23:59:48", "message_id": "f1ff2b68-fd61-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-04T23:49:48", "message_id": "8c39b95c-fd60-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-04T23:39:06", "message_id": "0d67f19e-fd5f-11e2-b8cf-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "timestamp": "2013-08-04T23:29:06", "message_id": "a7d6ba64-fd5d-11e2-b8cf-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "resource_metadata": {}, "counter_type": "gauge"}]} \ No newline at end of file diff --git a/tests/data/map_fixture_19.json b/tests/data/map_fixture_19.json new file mode 100644 index 0000000..e13172f --- /dev/null +++ b/tests/data/map_fixture_19.json @@ -0,0 +1 @@ +{"http://localhost:8777/v2/meters/storage.objects.size?q.field=resource_id&q.value=931dc699f9934021bb4a2b1088ba4d3b": [{"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-12T04:01:18", "message_id": "d76a943e-0303-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-12T03:51:18", "message_id": "71ba13fe-0302-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-12T03:41:18", "message_id": "0c0828bc-0301-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-12T03:31:18", "message_id": "a66b8c66-02ff-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-12T03:21:18", "message_id": "40b71d1e-02fe-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-12T03:11:18", "message_id": "db0d0132-02fc-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-12T03:01:17", "message_id": "7552c8b4-02fb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-12T02:51:17", "message_id": "0faedf30-02fa-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-12T02:41:17", "message_id": "a9eaf824-02f8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-12T02:31:17", "message_id": "44477e12-02f7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-12T02:21:17", "message_id": "de928c3e-02f5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-12T02:11:17", "message_id": "78e5aac0-02f4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-12T02:01:17", "message_id": "133e955c-02f3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-12T01:51:17", "message_id": "ad942376-02f1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-12T01:41:17", "message_id": "47e01ed2-02f0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-12T01:31:17", "message_id": "e2335244-02ee-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-12T01:21:17", "message_id": "7c7e1bb0-02ed-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-12T01:11:16", "message_id": "16d54d0c-02ec-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-12T01:01:16", "message_id": "b1129502-02ea-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-12T00:51:16", "message_id": "4b78c5be-02e9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-12T00:41:16", "message_id": "e5be7b02-02e7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-12T00:31:16", "message_id": "800e0170-02e6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-12T00:21:16", "message_id": "1a8ca8d4-02e5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-12T00:11:16", "message_id": "b4ae7232-02e3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-12T00:01:16", "message_id": "4f023b2c-02e2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T23:51:16", "message_id": "e95520ce-02e0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T23:41:16", "message_id": "83af066e-02df-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T23:31:16", "message_id": "1e04ce26-02de-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T23:21:15", "message_id": "b84b623a-02dc-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T23:11:15", "message_id": "52ac2d16-02db-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T23:01:16", "message_id": "ed353eba-02d9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T22:51:15", "message_id": "874c99be-02d8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T22:41:15", "message_id": "2198a71c-02d7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T22:31:15", "message_id": "bbebc436-02d5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T22:21:15", "message_id": "56371efc-02d4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T22:11:15", "message_id": "f0873bc4-02d2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T22:01:15", "message_id": "8addeac6-02d1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T21:51:15", "message_id": "253685e4-02d0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T21:41:15", "message_id": "bf87530a-02ce-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T21:31:14", "message_id": "59d36018-02cd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T21:21:14", "message_id": "f429ebd4-02cb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T21:11:14", "message_id": "8e7adb50-02ca-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T21:01:14", "message_id": "28ca10a6-02c9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T20:51:14", "message_id": "c31fc4cc-02c7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T20:41:14", "message_id": "5d6a790c-02c6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T20:31:14", "message_id": "f7c3d7a2-02c4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T20:21:14", "message_id": "9214d812-02c3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T20:11:14", "message_id": "2c71e474-02c2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T20:01:14", "message_id": "c6bbfc74-02c0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T19:51:14", "message_id": "61110cb2-02bf-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T19:41:14", "message_id": "fb5f0c58-02bd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T19:31:13", "message_id": "95b4817c-02bc-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T19:21:13", "message_id": "30032b90-02bb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T19:11:13", "message_id": "ca50369a-02b9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T19:01:13", "message_id": "649b1104-02b8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T18:51:13", "message_id": "fee8f4e4-02b6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T18:41:13", "message_id": "99416604-02b5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T18:31:13", "message_id": "338e2adc-02b4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T18:21:13", "message_id": "cddf3272-02b2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T18:11:13", "message_id": "683012c6-02b1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T18:01:13", "message_id": "027f1f36-02b0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T17:51:12", "message_id": "9cd4e98c-02ae-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T17:41:12", "message_id": "37229a4a-02ad-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T17:31:12", "message_id": "d17a894c-02ab-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T17:21:12", "message_id": "6bc8521a-02aa-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T17:11:12", "message_id": "0615b24c-02a9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T17:01:12", "message_id": "a0758f6c-02a7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T16:51:12", "message_id": "3ac65e36-02a6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T16:41:12", "message_id": "d525db20-02a4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T16:31:12", "message_id": "6f6eb5f0-02a3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T16:21:12", "message_id": "09b6c4b0-02a2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T16:11:12", "message_id": "a40c8538-02a0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T16:01:12", "message_id": "3e684dd0-029f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T15:51:12", "message_id": "d8b75d4c-029d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T15:41:12", "message_id": "7315e0e0-029c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T15:31:11", "message_id": "0d704330-029b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T15:21:11", "message_id": "a7cf6b60-0299-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T15:11:11", "message_id": "421cc278-0298-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T15:01:11", "message_id": "dc6b536e-0296-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T14:51:11", "message_id": "76b6306c-0295-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T14:41:11", "message_id": "11080fa2-0294-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T14:31:11", "message_id": "ab57ec3c-0292-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T14:21:11", "message_id": "45aa605a-0291-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T14:11:11", "message_id": "dff88a4e-028f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T14:01:11", "message_id": "7a5324ca-028e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T13:51:11", "message_id": "14a7c0be-028d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T13:41:11", "message_id": "aefa3806-028b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T13:31:10", "message_id": "494ba78e-028a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T13:21:10", "message_id": "e3972874-0288-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T13:11:10", "message_id": "7df01900-0287-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T13:01:10", "message_id": "184804f6-0286-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T12:51:10", "message_id": "b292587e-0284-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T12:41:10", "message_id": "4ce82856-0283-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T12:31:10", "message_id": "e734896a-0281-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T12:21:10", "message_id": "818073aa-0280-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T12:11:10", "message_id": "1bd39222-027f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T12:01:10", "message_id": "b6212ed6-027d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T11:51:10", "message_id": "5079e3b2-027c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T11:41:09", "message_id": "eabfa09e-027a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T11:31:09", "message_id": "85145286-0279-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T11:21:09", "message_id": "1f64d33a-0278-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T11:11:09", "message_id": "b9b6e3bc-0276-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T11:01:09", "message_id": "54076cfe-0275-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T10:51:09", "message_id": "ee55ae8a-0273-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T10:41:09", "message_id": "88abdc2c-0272-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T10:31:09", "message_id": "2301aefc-0271-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T10:21:09", "message_id": "bd49afca-026f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T10:11:09", "message_id": "57ac77d4-026e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T10:01:09", "message_id": "f1f8b548-026c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T09:51:08", "message_id": "8c48e34a-026b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T09:41:08", "message_id": "269750aa-026a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T09:31:08", "message_id": "c0eee3d6-0268-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T09:21:08", "message_id": "5b3ec21e-0267-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T09:11:08", "message_id": "f59670fc-0265-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T09:01:08", "message_id": "8fe6f5f2-0264-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T08:51:08", "message_id": "2a43eb20-0263-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T08:41:08", "message_id": "c49707e0-0261-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T08:31:08", "message_id": "5eed35fa-0260-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T08:21:08", "message_id": "f9315a1c-025e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T08:11:08", "message_id": "93854ee0-025d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T08:01:08", "message_id": "2ddc88c0-025c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T07:51:07", "message_id": "c825cd30-025a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T07:41:07", "message_id": "628171c4-0259-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T07:31:07", "message_id": "fccdd63e-0257-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T07:21:07", "message_id": "9722b6d4-0256-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T07:11:07", "message_id": "31651ff4-0255-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T07:01:07", "message_id": "cbc9b64c-0253-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T06:51:07", "message_id": "661588d6-0252-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T06:41:07", "message_id": "0064dcf4-0251-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T06:31:07", "message_id": "9ab4eb7a-024f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T06:21:07", "message_id": "351554e0-024e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T06:11:07", "message_id": "cf5da162-024c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T06:01:07", "message_id": "69c7c4a0-024b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T05:51:07", "message_id": "040d081a-024a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T05:41:06", "message_id": "9e5b9a8c-0248-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T05:31:06", "message_id": "38a4ec8a-0247-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T05:21:06", "message_id": "d2f716b6-0245-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T05:11:06", "message_id": "6d3f9042-0244-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T05:01:06", "message_id": "07976dba-0243-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T04:51:06", "message_id": "a1ef62de-0241-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T04:41:06", "message_id": "3c3c8cb0-0240-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T04:31:06", "message_id": "d69107b6-023e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T04:21:06", "message_id": "70f9ec8e-023d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T04:11:06", "message_id": "0b30cc48-023c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T04:01:05", "message_id": "a588380a-023a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T03:51:05", "message_id": "3fdb3a94-0239-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T03:41:05", "message_id": "da4420c0-0237-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T03:31:05", "message_id": "7477c220-0236-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T03:21:05", "message_id": "0eca3b20-0235-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T03:11:05", "message_id": "a918029a-0233-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T03:01:05", "message_id": "4367d188-0232-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T02:51:05", "message_id": "ddb5c314-0230-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T02:41:05", "message_id": "77f737f2-022f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T02:31:05", "message_id": "1255dc2e-022e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T02:21:04", "message_id": "aca478c8-022c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T02:11:04", "message_id": "46f60786-022b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T02:01:04", "message_id": "e152b15a-0229-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T01:51:04", "message_id": "7b9aebda-0228-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T01:41:04", "message_id": "15ff19d2-0227-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T01:31:04", "message_id": "b04c89a4-0225-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T01:21:04", "message_id": "4a854fd0-0224-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T01:11:04", "message_id": "e4d7ca1a-0222-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T01:01:04", "message_id": "7f33f900-0221-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T00:51:04", "message_id": "197cbc38-0220-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T00:41:04", "message_id": "b3ce4af6-021e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T00:31:03", "message_id": "4e1db01c-021d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T00:21:03", "message_id": "e86e6ae6-021b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T00:11:03", "message_id": "82bcfa92-021a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T00:01:03", "message_id": "1d134c88-0219-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T23:51:03", "message_id": "b765b106-0217-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T23:41:03", "message_id": "51b426cc-0216-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T23:31:03", "message_id": "ec0be09a-0214-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T23:21:03", "message_id": "8663cf06-0213-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T23:11:03", "message_id": "20a97ca2-0212-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T23:01:03", "message_id": "bb55dc2a-0210-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T22:51:03", "message_id": "5561e89c-020f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T22:41:08", "message_id": "f2c109da-020d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T22:31:03", "message_id": "8a0f1504-020c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T22:21:02", "message_id": "245720c2-020b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T22:11:02", "message_id": "bebcbeb2-0209-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T22:01:02", "message_id": "58fd0380-0208-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T21:51:02", "message_id": "f365f924-0206-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T21:41:02", "message_id": "8dadbe2e-0205-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T21:31:02", "message_id": "27f85a4a-0204-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T21:21:02", "message_id": "c26bfc1e-0202-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T21:11:02", "message_id": "5ca5436e-0201-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T21:01:02", "message_id": "f6e3afb2-01ff-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T20:51:02", "message_id": "9196230c-01fe-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T20:41:02", "message_id": "2b99ee68-01fd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T20:31:02", "message_id": "c61ba2a8-01fb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T20:21:01", "message_id": "60373bba-01fa-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T20:11:01", "message_id": "fa7a4bf6-01f8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T20:01:01", "message_id": "94d2601e-01f7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T19:51:01", "message_id": "2f26e31c-01f6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T19:41:01", "message_id": "c9791b08-01f4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T19:31:01", "message_id": "63d1fdb6-01f3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T19:21:01", "message_id": "fe0976ae-01f1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T19:11:01", "message_id": "986b3fc2-01f0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T19:01:01", "message_id": "32bc1f6c-01ef-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T18:51:00", "message_id": "ccfb1cba-01ed-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T18:41:00", "message_id": "676190a6-01ec-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T18:31:00", "message_id": "01ad5f84-01eb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T18:21:00", "message_id": "9bfc149c-01e9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T18:11:00", "message_id": "3646fee2-01e8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T18:01:00", "message_id": "d0975250-01e6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T17:51:00", "message_id": "6af18f02-01e5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T17:41:00", "message_id": "0546b6f6-01e4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T17:31:00", "message_id": "9f91efca-01e2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T17:21:00", "message_id": "39e4f934-01e1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T17:11:00", "message_id": "d42f9d34-01df-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T17:00:59", "message_id": "6e817e7c-01de-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T16:50:59", "message_id": "08d69edc-01dd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T16:40:59", "message_id": "a3239da2-01db-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T16:30:59", "message_id": "3d796384-01da-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T16:20:59", "message_id": "d7c26abe-01d8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T16:10:59", "message_id": "721e15ec-01d7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T16:00:59", "message_id": "0c7483b2-01d6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T15:50:59", "message_id": "a6c44c06-01d4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T15:40:59", "message_id": "4125a2f6-01d3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T15:30:59", "message_id": "db72ba12-01d1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T15:20:59", "message_id": "75cbb9b2-01d0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T15:10:59", "message_id": "101a6844-01cf-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T15:00:58", "message_id": "aa652aa8-01cd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T14:50:58", "message_id": "44bcbde8-01cc-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T14:40:58", "message_id": "df0475aa-01ca-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T14:30:58", "message_id": "794c9180-01c9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T14:20:58", "message_id": "139dab7c-01c8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T14:10:58", "message_id": "adf7dbf4-01c6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T14:00:58", "message_id": "48498326-01c5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T13:50:58", "message_id": "e29d9bbc-01c3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T13:40:58", "message_id": "7ce70dc2-01c2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T13:30:58", "message_id": "17449ee0-01c1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T13:20:58", "message_id": "b18bb6ca-01bf-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T13:10:57", "message_id": "4bdd83ea-01be-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T13:00:57", "message_id": "e6303cdc-01bc-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T12:50:57", "message_id": "807eaa96-01bb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T12:40:57", "message_id": "1ad3d78a-01ba-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T12:30:57", "message_id": "b52ba94a-01b8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T12:20:57", "message_id": "4f81dd36-01b7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T12:10:57", "message_id": "e9d8a9b6-01b5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T12:00:57", "message_id": "842086b2-01b4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T11:50:57", "message_id": "1e77739e-01b3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T11:40:57", "message_id": "b8d1fba0-01b1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T11:30:57", "message_id": "531db994-01b0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T11:20:57", "message_id": "ed7119b6-01ae-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T11:10:57", "message_id": "87c97014-01ad-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T11:00:56", "message_id": "22048d6e-01ac-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T10:50:57", "message_id": "bc89840e-01aa-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T10:40:56", "message_id": "56b59448-01a9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T10:30:56", "message_id": "f1127814-01a7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T10:20:56", "message_id": "8b58305a-01a6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T10:10:56", "message_id": "25c81760-01a5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T10:00:56", "message_id": "c004369e-01a3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T09:50:56", "message_id": "5a49377e-01a2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T09:40:56", "message_id": "f4a62248-01a0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T09:30:56", "message_id": "8f11aa0c-019f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T09:20:56", "message_id": "2946c94c-019e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T09:10:55", "message_id": "c39f2ebe-019c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T09:00:56", "message_id": "5e08efa0-019b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T08:50:55", "message_id": "f840237e-0199-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T08:40:55", "message_id": "929f8f24-0198-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T08:30:55", "message_id": "2cd3e592-0197-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T08:20:55", "message_id": "c733488c-0195-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T08:10:55", "message_id": "6173be24-0194-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T08:00:55", "message_id": "fbc87f16-0192-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T07:50:55", "message_id": "962b204c-0191-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T07:40:55", "message_id": "30804b38-0190-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T07:30:55", "message_id": "cacb3858-018e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T07:20:54", "message_id": "65214610-018d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T07:10:54", "message_id": "ff736542-018b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T07:00:54", "message_id": "99c09432-018a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T06:50:54", "message_id": "34174758-0189-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T06:40:54", "message_id": "ce6a22b4-0187-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T06:30:54", "message_id": "68bd7ab6-0186-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T06:20:54", "message_id": "0312abba-0185-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T06:10:54", "message_id": "9d582d46-0183-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T06:00:54", "message_id": "37a09750-0182-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T05:50:54", "message_id": "d202c43c-0180-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T05:40:54", "message_id": "6c4f4878-017f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T05:30:53", "message_id": "0695f4c4-017e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T05:20:53", "message_id": "a0ed146e-017c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T05:10:53", "message_id": "3b43cb04-017b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T05:00:53", "message_id": "d59be102-0179-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T04:50:53", "message_id": "6fe15352-0178-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T04:40:53", "message_id": "0a2b45be-0177-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T04:30:53", "message_id": "a48082f2-0175-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T04:20:53", "message_id": "3ed09fc4-0174-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T04:10:53", "message_id": "d92315e0-0172-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T04:00:53", "message_id": "737e4792-0171-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T03:50:53", "message_id": "0dd01bf6-0170-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T03:40:53", "message_id": "a82397a2-016e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T03:30:52", "message_id": "4278e516-016d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T03:20:52", "message_id": "dcc4d154-016b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T03:10:52", "message_id": "7716cb42-016a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T03:00:52", "message_id": "1169046e-0169-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T02:50:52", "message_id": "abbd666a-0167-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T02:40:52", "message_id": "4606c34e-0166-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T02:30:52", "message_id": "e057fbf4-0164-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T02:20:52", "message_id": "7abc0912-0163-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T02:10:52", "message_id": "150dea00-0162-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T02:00:52", "message_id": "af584936-0160-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T01:50:52", "message_id": "49d0d322-015f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T01:40:52", "message_id": "e41457da-015d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T01:30:52", "message_id": "7e774b72-015c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T01:20:52", "message_id": "18ca4dc0-015b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T01:10:51", "message_id": "b30c1ca8-0159-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T01:00:51", "message_id": "4d676ec6-0158-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T00:50:51", "message_id": "e794d058-0156-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T00:40:51", "message_id": "81ec223e-0155-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T00:30:51", "message_id": "1c3cc494-0154-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T00:20:51", "message_id": "b67f5fe6-0152-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T00:10:51", "message_id": "50dc853e-0151-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T00:00:51", "message_id": "eb2ad066-014f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T23:50:50", "message_id": "857ca650-014e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T23:40:50", "message_id": "1fc84d9c-014d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T23:30:50", "message_id": "ba0efd58-014b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T23:20:50", "message_id": "5471eeca-014a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T23:10:50", "message_id": "eebb20f2-0148-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T23:00:50", "message_id": "894c29a6-0147-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T22:50:50", "message_id": "23607f8a-0146-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T22:40:50", "message_id": "bdaa0324-0144-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T22:30:50", "message_id": "57ff17f4-0143-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T22:20:50", "message_id": "f2632e72-0141-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T22:10:49", "message_id": "8c9e98b6-0140-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T22:00:49", "message_id": "26fd97a6-013f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T21:50:49", "message_id": "c1513602-013d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T21:40:49", "message_id": "5baa263e-013c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T21:30:49", "message_id": "f6010970-013a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T21:20:49", "message_id": "904ad7f6-0139-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T21:10:49", "message_id": "2aa69274-0138-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T21:00:49", "message_id": "c4fda422-0136-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T20:50:49", "message_id": "5f4b2704-0135-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T20:40:49", "message_id": "f9a17b5c-0133-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T20:30:49", "message_id": "93e67b42-0132-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T20:20:49", "message_id": "2e596e48-0131-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T20:10:49", "message_id": "c894f056-012f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T20:00:49", "message_id": "62e5d938-012e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T19:50:49", "message_id": "fd42a1c0-012c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T19:40:48", "message_id": "97848908-012b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T19:30:48", "message_id": "31dc828c-012a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T19:20:48", "message_id": "cc3e5ac8-0128-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T19:10:48", "message_id": "6683586a-0127-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T19:00:48", "message_id": "00ceb56a-0126-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T18:50:48", "message_id": "9b1a0d7e-0124-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T18:40:48", "message_id": "356f12ea-0123-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T18:30:48", "message_id": "cfb8dedc-0121-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T18:20:48", "message_id": "6a07e598-0120-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T18:10:47", "message_id": "04578b46-011f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T18:00:47", "message_id": "9e9fafdc-011d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T17:50:47", "message_id": "38fa044e-011c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T17:40:47", "message_id": "d3467494-011a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T17:30:47", "message_id": "6d95554e-0119-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T17:20:47", "message_id": "07ee9ca6-0118-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T17:10:47", "message_id": "a23c422e-0116-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T17:00:47", "message_id": "3c8fb506-0115-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T16:50:47", "message_id": "d6db0694-0113-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T16:40:47", "message_id": "712aadf0-0112-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T16:30:47", "message_id": "0b8bf9dc-0111-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T16:20:46", "message_id": "a5d23c56-010f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T16:10:46", "message_id": "402a8dbe-010e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T16:00:46", "message_id": "da793b4c-010c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T15:50:49", "message_id": "764fb9ee-010b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T15:40:47", "message_id": "0f7a0f4a-010a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T15:30:46", "message_id": "a994084e-0108-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T15:20:46", "message_id": "43ca3340-0107-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T15:10:46", "message_id": "de31b798-0105-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T15:00:46", "message_id": "78703fe8-0104-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T14:50:46", "message_id": "12cb2618-0103-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T14:40:46", "message_id": "ad170b12-0101-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T14:30:46", "message_id": "4760e1f4-0100-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T14:20:46", "message_id": "e1bea45e-00fe-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T14:10:46", "message_id": "7c45fd80-00fd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T14:00:45", "message_id": "164db0b4-00fc-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T13:50:45", "message_id": "b0ae285c-00fa-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T13:40:45", "message_id": "4af78ffe-00f9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T13:30:45", "message_id": "e54895dc-00f7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T13:20:46", "message_id": "7ffd7cac-00f6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T13:10:45", "message_id": "19dd9eb2-00f5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T13:00:45", "message_id": "b43b2a4e-00f3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T12:50:45", "message_id": "4e821b82-00f2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T12:40:45", "message_id": "e8dbb2bc-00f0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T12:30:44", "message_id": "83323522-00ef-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T12:20:44", "message_id": "1d7bf7f0-00ee-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T12:10:44", "message_id": "b7cd05a8-00ec-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T12:00:44", "message_id": "52203bf4-00eb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T11:50:44", "message_id": "ec799256-00e9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T11:40:44", "message_id": "86c266f0-00e8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T11:30:44", "message_id": "211ba04c-00e7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T11:20:44", "message_id": "bb6a95ce-00e5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T11:10:44", "message_id": "55c23ebc-00e4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T11:00:44", "message_id": "f009edfa-00e2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T10:50:44", "message_id": "8a5bba02-00e1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T10:40:43", "message_id": "24ab6af0-00e0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T10:30:43", "message_id": "bf0279b0-00de-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T10:20:43", "message_id": "594e9a8c-00dd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T10:10:43", "message_id": "f3a2a29c-00db-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T10:00:43", "message_id": "8e044b08-00da-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T09:50:43", "message_id": "2842a360-00d9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T09:40:43", "message_id": "c29db730-00d7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T09:30:43", "message_id": "5cedc23c-00d6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T09:20:43", "message_id": "f7404bb8-00d4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T09:10:43", "message_id": "9199fcc4-00d3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T09:00:43", "message_id": "2be640e6-00d2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T08:50:42", "message_id": "c6305026-00d0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T08:40:42", "message_id": "608ad080-00cf-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T08:30:42", "message_id": "fadedd22-00cd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T08:20:42", "message_id": "952fd8a6-00cc-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T08:10:42", "message_id": "2f7a7b8e-00cb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T08:00:42", "message_id": "c9ca1d5e-00c9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T07:50:42", "message_id": "641b678e-00c8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T07:40:42", "message_id": "fe979bf4-00c6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T07:30:42", "message_id": "98c846bc-00c5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T07:20:42", "message_id": "330b7200-00c4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T07:10:42", "message_id": "cd5e6d64-00c2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T07:00:41", "message_id": "67b4040c-00c1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T06:50:41", "message_id": "01ff58a6-00c0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T06:40:41", "message_id": "9c542e74-00be-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T06:30:41", "message_id": "36a71696-00bd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T06:20:41", "message_id": "d0f2df66-00bb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T06:10:41", "message_id": "6b4944e4-00ba-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T06:00:41", "message_id": "05a44bd0-00b9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T05:50:41", "message_id": "9ff04e16-00b7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T05:40:41", "message_id": "3a48c3b4-00b6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T05:30:41", "message_id": "d49422bc-00b4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T05:20:41", "message_id": "6ee561ca-00b3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T05:10:41", "message_id": "0938f41e-00b2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T05:00:40", "message_id": "a38db1e6-00b0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T04:50:40", "message_id": "3df39446-00af-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T04:40:40", "message_id": "d84afbe4-00ad-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T04:30:40", "message_id": "729869c2-00ac-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T04:20:40", "message_id": "0cf9d2dc-00ab-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T04:10:40", "message_id": "a752c372-00a9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T04:00:40", "message_id": "41c7d156-00a8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T03:50:41", "message_id": "dc44585a-00a6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T03:40:40", "message_id": "765770c8-00a5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T03:30:40", "message_id": "10dd105a-00a4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T03:20:40", "message_id": "ab061ad4-00a2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T03:10:40", "message_id": "45619d12-00a1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T03:00:40", "message_id": "dfb55b1c-009f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T02:50:40", "message_id": "79f95644-009e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T02:40:40", "message_id": "148247f4-009d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T02:30:40", "message_id": "ae9fe69a-009b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T02:20:40", "message_id": "48f5d36e-009a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T02:10:39", "message_id": "e349b73e-0098-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T02:00:39", "message_id": "7d9bfda8-0097-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T01:50:39", "message_id": "17d9843c-0096-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T01:40:39", "message_id": "b2293ffc-0094-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T01:30:39", "message_id": "4c7beb6a-0093-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T01:20:39", "message_id": "e6d8ccfc-0091-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T01:10:39", "message_id": "811cc2ac-0090-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T01:00:39", "message_id": "1b7b2ae8-008f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T00:50:39", "message_id": "b5c1d59a-008d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T00:40:38", "message_id": "500cdd0e-008c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T00:30:38", "message_id": "ea6d171c-008a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T00:20:38", "message_id": "84c195b0-0089-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T00:10:38", "message_id": "1f0e8350-0088-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T00:00:38", "message_id": "b95f4540-0086-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T23:50:38", "message_id": "53aa1866-0085-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T23:40:38", "message_id": "ee0acb0a-0083-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T23:30:38", "message_id": "8850f3e4-0082-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T23:20:38", "message_id": "229ac562-0081-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T23:10:38", "message_id": "bcf78c8c-007f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T23:00:38", "message_id": "577fcadc-007e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T22:50:38", "message_id": "f1922e8c-007c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T22:40:37", "message_id": "8beb14b4-007b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T22:30:37", "message_id": "262a898a-007a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T22:20:37", "message_id": "c0870fbe-0078-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T22:10:37", "message_id": "5ad70a26-0077-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T22:00:37", "message_id": "f527bb90-0075-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T21:50:37", "message_id": "8f847a7c-0074-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T21:40:37", "message_id": "29cd4e26-0073-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T21:30:37", "message_id": "c422edb6-0071-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T21:20:37", "message_id": "5e83a55a-0070-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T21:10:37", "message_id": "f8c79e48-006e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T21:00:37", "message_id": "9310bed2-006d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T20:50:36", "message_id": "2d5e4cc2-006c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T20:40:36", "message_id": "c7b1104a-006a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T20:30:36", "message_id": "620a1648-0069-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T20:20:36", "message_id": "fc4ec804-0067-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T20:10:36", "message_id": "96ac3514-0066-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T20:00:36", "message_id": "30f764a6-0065-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T19:50:36", "message_id": "cb4f6cc6-0063-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T19:40:36", "message_id": "659a45fa-0062-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T19:30:36", "message_id": "ffed16ac-0060-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T19:20:36", "message_id": "9a38c33e-005f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T19:10:35", "message_id": "348dad70-005e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T19:00:35", "message_id": "cee18fce-005c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T18:50:35", "message_id": "69315e30-005b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T18:40:35", "message_id": "037da0b8-005a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T18:30:35", "message_id": "9dddf826-0058-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T18:20:35", "message_id": "381dc27e-0057-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T18:10:35", "message_id": "d27b5464-0055-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T18:00:35", "message_id": "6cccfff6-0054-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T17:50:35", "message_id": "071f937c-0053-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T17:40:35", "message_id": "a17984ca-0051-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T17:30:35", "message_id": "3bcd6462-0050-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T17:20:35", "message_id": "d61afad6-004e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T17:10:34", "message_id": "706b56d2-004d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T17:00:34", "message_id": "0ab9f7f4-004c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T16:50:34", "message_id": "a50ca04c-004a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T16:40:34", "message_id": "3f67abe8-0049-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T16:30:34", "message_id": "d9ba98d8-0047-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T16:20:34", "message_id": "740f0ad8-0046-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T16:10:34", "message_id": "0e5b2bc8-0045-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T16:00:34", "message_id": "a8b68eee-0043-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T15:50:34", "message_id": "4305181e-0042-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T15:40:34", "message_id": "dd520c08-0040-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T15:30:34", "message_id": "77a74e3c-003f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T15:20:34", "message_id": "11fd18ba-003e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T15:10:33", "message_id": "ac4cb3e6-003c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T15:00:33", "message_id": "469704a8-003b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T14:50:33", "message_id": "e0efb448-0039-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T14:40:33", "message_id": "7b39a8bc-0038-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T14:30:33", "message_id": "1593e67c-0037-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T14:20:33", "message_id": "afdf90b6-0035-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T14:10:33", "message_id": "4a41a7f4-0034-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T14:00:33", "message_id": "e4c2f848-0032-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T13:50:33", "message_id": "7ed4ab72-0031-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T13:40:33", "message_id": "1932c5d4-0030-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T13:30:33", "message_id": "b380cc14-002e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T13:20:33", "message_id": "4ddc9a06-002d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T13:10:32", "message_id": "e828b61e-002b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T13:00:32", "message_id": "8276bd30-002a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T12:50:32", "message_id": "1ccae660-0029-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T12:40:32", "message_id": "b711030a-0027-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T12:30:32", "message_id": "516aa69c-0026-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T12:20:32", "message_id": "ebb42964-0024-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T12:10:32", "message_id": "85fe6bd0-0023-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T12:00:32", "message_id": "205b1ba8-0022-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T11:50:32", "message_id": "baa71c54-0020-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T11:40:32", "message_id": "550ef16a-001f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T11:30:32", "message_id": "ef640540-001d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T11:20:31", "message_id": "89a54aee-001c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T11:10:32", "message_id": "2416dcf2-001b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T11:00:31", "message_id": "be55dff4-0019-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T10:50:31", "message_id": "58a8062e-0018-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T10:40:31", "message_id": "f304211e-0016-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T10:30:31", "message_id": "8d71953a-0015-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T10:20:31", "message_id": "27bb7a68-0014-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T10:10:31", "message_id": "c2224fa2-0012-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T10:00:31", "message_id": "5c461f3e-0011-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T09:50:31", "message_id": "f695eb8e-000f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T09:40:31", "message_id": "90def084-000e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T09:30:31", "message_id": "2b429e84-000d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T09:20:30", "message_id": "c585e41c-000b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T09:10:30", "message_id": "5fd4891c-000a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T09:00:30", "message_id": "fa2ee388-0008-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T08:50:30", "message_id": "947d8d56-0007-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T08:40:30", "message_id": "2ed6309e-0006-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T08:30:30", "message_id": "c92bee88-0004-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T08:20:30", "message_id": "63789650-0003-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T08:10:30", "message_id": "fdd7c7fe-0001-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T08:00:30", "message_id": "981d993a-0000-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T07:50:30", "message_id": "326cd23c-ffff-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T07:40:30", "message_id": "ccbd564c-fffd-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T07:30:30", "message_id": "670c534e-fffc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T07:20:29", "message_id": "0166c0c0-fffb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T07:10:29", "message_id": "9badd4f4-fff9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T07:00:29", "message_id": "35f8e3b6-fff8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T06:50:29", "message_id": "d05be34c-fff6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T06:40:29", "message_id": "6aa38b32-fff5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T06:30:29", "message_id": "04f0faaa-fff4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T06:20:29", "message_id": "9f44dd30-fff2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T06:10:29", "message_id": "39954278-fff1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T06:00:29", "message_id": "d3ed8d96-ffef-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T05:50:29", "message_id": "6e46e524-ffee-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T05:40:29", "message_id": "089f7192-ffed-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T05:30:29", "message_id": "a2e7dd5e-ffeb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T05:20:28", "message_id": "3d2f5380-ffea-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T05:10:28", "message_id": "d784be90-ffe8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T05:00:28", "message_id": "71d9bbaa-ffe7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T04:50:28", "message_id": "0c1d5098-ffe6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T04:40:28", "message_id": "a67ebb74-ffe4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T04:30:28", "message_id": "40c31a74-ffe3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T04:20:28", "message_id": "db1cd666-ffe1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T04:10:28", "message_id": "756e31e4-ffe0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T04:00:28", "message_id": "0fb66408-ffdf-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T03:50:28", "message_id": "aa0d2840-ffdd-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T03:40:27", "message_id": "445a74a4-ffdc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T03:30:27", "message_id": "deabd73e-ffda-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T03:20:27", "message_id": "78fb7508-ffd9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T03:10:27", "message_id": "135095fe-ffd8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T03:00:27", "message_id": "ada2a09a-ffd6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T02:50:27", "message_id": "47edc4c4-ffd5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T02:40:27", "message_id": "e23c38a0-ffd3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T02:30:27", "message_id": "7c96a018-ffd2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T02:20:27", "message_id": "1701425e-ffd1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T02:10:27", "message_id": "b12b0ca4-ffcf-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T02:00:26", "message_id": "4b863e6a-ffce-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T01:50:26", "message_id": "e5d0b344-ffcc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T01:40:26", "message_id": "80223dd4-ffcb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T01:30:26", "message_id": "1a738520-ffca-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T01:20:26", "message_id": "b4cb61ee-ffc8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T01:10:26", "message_id": "4f216484-ffc7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T01:00:26", "message_id": "e96e9590-ffc5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T00:50:26", "message_id": "83c48dfe-ffc4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T00:40:26", "message_id": "1e1847e4-ffc3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T00:30:26", "message_id": "b8667bce-ffc1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T00:20:26", "message_id": "53119e62-ffc0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T00:10:26", "message_id": "ed067a76-ffbe-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T00:00:26", "message_id": "87826666-ffbd-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T23:50:25", "message_id": "21b2d8ee-ffbc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T23:40:25", "message_id": "bc088382-ffba-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T23:30:25", "message_id": "5661bcc0-ffb9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T23:20:25", "message_id": "f0cdb752-ffb7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T23:10:25", "message_id": "8b1e7bae-ffb6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T23:00:25", "message_id": "259662ac-ffb5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T22:50:25", "message_id": "bf917286-ffb3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T22:40:25", "message_id": "59ef4d3c-ffb2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T22:30:25", "message_id": "f43f189c-ffb0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T22:20:24", "message_id": "8e7f6b70-ffaf-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T22:10:24", "message_id": "28e46cc6-ffae-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T22:00:24", "message_id": "c32aa856-ffac-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T21:50:24", "message_id": "5d6cfef2-ffab-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T21:40:24", "message_id": "f7c75288-ffa9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T21:30:24", "message_id": "921fc290-ffa8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T21:20:24", "message_id": "2c67c106-ffa7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T21:10:24", "message_id": "c6ab9b22-ffa5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T21:00:24", "message_id": "61061faa-ffa4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T20:50:24", "message_id": "fb56e0fa-ffa2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T20:40:23", "message_id": "95a2b604-ffa1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T20:30:23", "message_id": "2ff822c2-ffa0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T20:20:23", "message_id": "ca4aae78-ff9e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T20:10:23", "message_id": "648fcf9c-ff9d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T20:00:23", "message_id": "fee9092a-ff9b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T19:50:23", "message_id": "9932911a-ff9a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T19:40:23", "message_id": "338c5522-ff99-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T19:30:23", "message_id": "cddd77d4-ff97-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T19:20:23", "message_id": "68334c02-ff96-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T19:10:23", "message_id": "02821c18-ff95-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T19:00:23", "message_id": "9ccbd39c-ff93-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T18:50:22", "message_id": "3724e5fc-ff92-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T18:40:22", "message_id": "d1776f8c-ff90-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T18:30:22", "message_id": "6bb737a0-ff8f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T18:20:22", "message_id": "06070620-ff8e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T18:10:22", "message_id": "a05c5984-ff8c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T18:00:22", "message_id": "3ab0cdbe-ff8b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T17:50:22", "message_id": "d50077fe-ff89-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T17:40:22", "message_id": "6f58a120-ff88-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T17:30:22", "message_id": "09a7e4f4-ff87-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T17:20:22", "message_id": "a3f434f6-ff85-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T17:10:22", "message_id": "3e4c542c-ff84-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T17:00:21", "message_id": "d8912d20-ff82-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T16:50:21", "message_id": "72d9b796-ff81-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T16:40:21", "message_id": "0d301350-ff80-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T16:30:21", "message_id": "a78cf4ba-ff7e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T16:20:21", "message_id": "41d07238-ff7d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T16:10:21", "message_id": "dc2a9162-ff7b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T16:00:21", "message_id": "767c06f8-ff7a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T15:50:21", "message_id": "10cfed0c-ff79-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T15:40:21", "message_id": "ab1bdcec-ff77-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T15:30:21", "message_id": "4567ceca-ff76-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T15:20:20", "message_id": "dfbba1c4-ff74-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T15:10:20", "message_id": "7a095d9a-ff73-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T15:00:20", "message_id": "14592724-ff72-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T14:50:20", "message_id": "aeabf8da-ff70-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T14:40:20", "message_id": "48faad2a-ff6f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T14:30:20", "message_id": "e360f5d8-ff6d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T14:20:20", "message_id": "7db08b78-ff6c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T14:10:20", "message_id": "17fff724-ff6b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T14:00:20", "message_id": "b2504d08-ff69-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T13:50:20", "message_id": "4c9dd760-ff68-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T13:40:20", "message_id": "e705736e-ff66-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T13:30:20", "message_id": "814b175a-ff65-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T13:20:19", "message_id": "1b9cf460-ff64-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T13:10:19", "message_id": "b5f3f5b0-ff62-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T13:00:19", "message_id": "504ee338-ff61-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T12:50:19", "message_id": "eaa4d3c2-ff5f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T12:40:19", "message_id": "84ef3316-ff5e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T12:30:19", "message_id": "1f4577d8-ff5d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T12:20:19", "message_id": "b99b14f2-ff5b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T12:10:19", "message_id": "53e0829c-ff5a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T12:00:19", "message_id": "ee2e60dc-ff58-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T11:50:19", "message_id": "8886fe7a-ff57-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T11:40:19", "message_id": "22dc542c-ff56-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T11:30:19", "message_id": "bd2c16a4-ff54-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T11:20:18", "message_id": "577bc33c-ff53-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T11:10:19", "message_id": "f1e956c0-ff51-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T11:00:18", "message_id": "8c310fe0-ff50-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T10:50:18", "message_id": "26841f26-ff4f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T10:40:18", "message_id": "c0df8b5c-ff4d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T10:30:18", "message_id": "5b28dc74-ff4c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T10:20:18", "message_id": "f57b3634-ff4a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T10:10:18", "message_id": "8fd95fd2-ff49-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T10:00:18", "message_id": "2a34aade-ff48-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T09:50:18", "message_id": "c4742a90-ff46-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T09:40:18", "message_id": "5ecdd5f2-ff45-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T09:30:18", "message_id": "f90cff14-ff43-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T09:20:18", "message_id": "9366786c-ff42-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T09:10:17", "message_id": "2db76b12-ff41-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T09:00:17", "message_id": "c7fb2706-ff3f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T08:50:17", "message_id": "624e3566-ff3e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T08:40:17", "message_id": "fca5deb8-ff3c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T08:30:17", "message_id": "96f3dd32-ff3b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T08:20:17", "message_id": "31371f1e-ff3a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T08:10:17", "message_id": "cb87c796-ff38-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T08:00:17", "message_id": "65d6f8d2-ff37-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T07:50:17", "message_id": "002842a8-ff36-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T07:40:16", "message_id": "9a753160-ff34-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T07:30:16", "message_id": "34d0ead0-ff33-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T07:20:16", "message_id": "cf185648-ff31-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T07:10:16", "message_id": "69677c44-ff30-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T07:00:16", "message_id": "03c20c52-ff2f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T06:50:16", "message_id": "9e14628e-ff2d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T06:40:16", "message_id": "386476aa-ff2c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T06:30:16", "message_id": "d2ab28f0-ff2a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T06:20:16", "message_id": "6d0d6252-ff29-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T06:10:16", "message_id": "076ac53a-ff28-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T06:00:16", "message_id": "a1aa88d0-ff26-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T05:50:16", "message_id": "3c06cd14-ff25-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T05:40:15", "message_id": "d648c9d8-ff23-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T05:30:16", "message_id": "70c25382-ff22-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T05:20:15", "message_id": "0af5fc30-ff21-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T05:10:15", "message_id": "a53ac7e6-ff1f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T05:00:15", "message_id": "3fa1f464-ff1e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T04:50:15", "message_id": "d9e54f5a-ff1c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T04:40:15", "message_id": "743e67b4-ff1b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T04:30:15", "message_id": "0e9d0894-ff1a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T04:20:15", "message_id": "a8ddb46e-ff18-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T04:10:15", "message_id": "4339fb78-ff17-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T04:00:15", "message_id": "dd882bb6-ff15-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T03:50:15", "message_id": "77f06968-ff14-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T03:40:14", "message_id": "12314b34-ff13-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T03:30:14", "message_id": "ac788844-ff11-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T03:20:14", "message_id": "46cf35de-ff10-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T03:10:14", "message_id": "e134304a-ff0e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T03:00:14", "message_id": "7b71c46c-ff0d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T02:50:14", "message_id": "15df3202-ff0c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T02:40:14", "message_id": "b029595c-ff0a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T02:30:14", "message_id": "4a7caefc-ff09-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T02:20:14", "message_id": "e4c3cff6-ff07-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T02:10:14", "message_id": "7f142468-ff06-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T02:00:14", "message_id": "1961a6aa-ff05-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T01:50:14", "message_id": "b3c1e75c-ff03-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T01:40:13", "message_id": "4e0684f0-ff02-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T01:30:13", "message_id": "e85f4e08-ff00-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T01:20:13", "message_id": "82b1348c-feff-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T01:10:13", "message_id": "1d095fde-fefe-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T01:00:13", "message_id": "b74cc448-fefc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T00:50:13", "message_id": "51a94d38-fefb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T00:40:13", "message_id": "ebfe8bca-fef9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T00:30:13", "message_id": "86404fea-fef8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T00:20:13", "message_id": "20923b0a-fef7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T00:10:13", "message_id": "bae50db0-fef5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T00:00:12", "message_id": "552d46aa-fef4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T23:50:12", "message_id": "ef9052e8-fef2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T23:40:12", "message_id": "89e0703c-fef1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T23:30:12", "message_id": "243676b0-fef0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T23:20:12", "message_id": "be98395c-feee-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T23:10:12", "message_id": "58cfef62-feed-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T23:00:12", "message_id": "f36db7b8-feeb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T22:50:12", "message_id": "8d79b3cc-feea-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T22:40:12", "message_id": "27ce7b12-fee9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T22:30:12", "message_id": "c220e8b4-fee7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T22:20:12", "message_id": "5c69f4c6-fee6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T22:10:12", "message_id": "f6d26392-fee4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T22:00:12", "message_id": "913aa586-fee3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T21:50:11", "message_id": "2b6a2cf0-fee2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T21:40:12", "message_id": "c5e272e4-fee0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T21:30:11", "message_id": "6018cd24-fedf-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T21:20:11", "message_id": "fa6be746-fedd-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T21:10:11", "message_id": "94b4a2cc-fedc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T21:00:11", "message_id": "2efacaac-fedb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T20:50:11", "message_id": "c957ab62-fed9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T20:40:11", "message_id": "63b67c3a-fed8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T20:30:11", "message_id": "fe0231c8-fed6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T20:20:11", "message_id": "98800d30-fed5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T20:10:11", "message_id": "329efdf6-fed4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T20:00:11", "message_id": "cd080024-fed2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T19:50:10", "message_id": "67503752-fed1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T19:40:10", "message_id": "01a78956-fed0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T19:30:10", "message_id": "9bf8439e-fece-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T19:20:10", "message_id": "36453210-fecd-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T19:10:10", "message_id": "d0952d5e-fecb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T19:00:10", "message_id": "6ad5801e-feca-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T18:50:10", "message_id": "0551fc8c-fec9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T18:40:10", "message_id": "9f89e316-fec7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T18:30:10", "message_id": "39d2ebea-fec6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T18:20:10", "message_id": "d4290a28-fec4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T18:10:09", "message_id": "6e759486-fec3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T18:00:09", "message_id": "08ba19ce-fec2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T17:50:09", "message_id": "a3124688-fec0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T17:40:09", "message_id": "3d6a6104-febf-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T17:30:09", "message_id": "d7b5b42c-febd-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T17:20:09", "message_id": "720d3290-febc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T17:10:09", "message_id": "0c5330e0-febb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T17:00:09", "message_id": "a6a602c8-feb9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T16:50:09", "message_id": "40f98914-feb8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T16:40:09", "message_id": "db42337e-feb6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T16:30:09", "message_id": "75996a98-feb5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T16:20:08", "message_id": "0fe68dbc-feb4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T16:10:08", "message_id": "aa434960-feb2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T16:00:08", "message_id": "449594b6-feb1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T15:50:08", "message_id": "dedef3ca-feaf-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T15:40:08", "message_id": "793c9e06-feae-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T15:30:08", "message_id": "1382433c-fead-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T15:20:08", "message_id": "add76180-feab-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T15:10:08", "message_id": "482544ca-feaa-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T15:00:08", "message_id": "e2765426-fea8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T14:50:08", "message_id": "7ccc4c1c-fea7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T14:40:08", "message_id": "172a7fd8-fea6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T14:30:08", "message_id": "b18421bc-fea4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T14:20:07", "message_id": "4bd2dcce-fea3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T14:10:07", "message_id": "e61f8004-fea1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T14:00:07", "message_id": "808d7d28-fea0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T13:50:07", "message_id": "1ad0d0f8-fe9f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T13:40:07", "message_id": "b513e04e-fe9d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T13:30:07", "message_id": "4f664936-fe9c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T13:20:07", "message_id": "e9b6a906-fe9a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T13:10:07", "message_id": "840546f4-fe99-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T13:00:07", "message_id": "1e60ddfa-fe98-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T12:50:07", "message_id": "b8b56a12-fe96-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T12:40:07", "message_id": "531aa196-fe95-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T12:30:07", "message_id": "ed5957fe-fe93-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T12:20:06", "message_id": "87a4900a-fe92-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T12:10:06", "message_id": "22024310-fe91-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T12:00:06", "message_id": "bc5371c0-fe8f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T11:50:06", "message_id": "56a1f564-fe8e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T11:40:06", "message_id": "f100b00c-fe8c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T11:30:07", "message_id": "8bdea7f2-fe8b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T11:20:06", "message_id": "25985430-fe8a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T11:10:06", "message_id": "bfe44a0a-fe88-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T11:00:06", "message_id": "5a3d8168-fe87-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T10:50:06", "message_id": "f4914846-fe85-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T10:40:06", "message_id": "8ee2fab8-fe84-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T10:30:05", "message_id": "29308dbc-fe83-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T10:20:05", "message_id": "c3869aa2-fe81-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T10:10:05", "message_id": "5dcd1c1e-fe80-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T10:00:05", "message_id": "f8242962-fe7e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T09:50:05", "message_id": "9270b410-fe7d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T09:40:05", "message_id": "2cc8287e-fe7c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T09:30:05", "message_id": "c71cdcb4-fe7a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T09:20:05", "message_id": "6165d6a6-fe79-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T09:10:05", "message_id": "fbbe847a-fe77-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T09:00:05", "message_id": "960cca5c-fe76-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T08:50:05", "message_id": "305e6658-fe75-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T08:40:04", "message_id": "cab10a0a-fe73-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T08:30:04", "message_id": "64ff6acc-fe72-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T08:20:04", "message_id": "ff52dc6e-fe70-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T08:10:04", "message_id": "99a7fc92-fe6f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T08:00:04", "message_id": "33fa2826-fe6e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T07:50:04", "message_id": "ce4ac130-fe6c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T07:40:04", "message_id": "68ac16ae-fe6b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T07:30:04", "message_id": "02fbe3ee-fe6a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T07:20:04", "message_id": "9d501a8e-fe68-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T07:10:04", "message_id": "379f5ab6-fe67-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T07:00:04", "message_id": "d1efdcdc-fe65-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T06:50:04", "message_id": "6c3f3988-fe64-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T06:40:04", "message_id": "069cbb60-fe63-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T06:30:03", "message_id": "a0eec462-fe61-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T06:20:03", "message_id": "3b398856-fe60-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T06:10:03", "message_id": "d5852e3a-fe5e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T06:00:03", "message_id": "6fd641c4-fe5d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T05:50:03", "message_id": "0a28c58c-fe5c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T05:40:03", "message_id": "a47fe9fa-fe5a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T05:30:03", "message_id": "3ec7a1bc-fe59-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T05:20:03", "message_id": "d91ba51c-fe57-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T05:10:03", "message_id": "7372e19a-fe56-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T05:00:03", "message_id": "0dbf47fe-fe55-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T04:50:02", "message_id": "a810a138-fe53-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T04:40:02", "message_id": "426a3034-fe52-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T04:30:02", "message_id": "dcbeb210-fe50-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T04:20:02", "message_id": "7706f64a-fe4f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T04:10:02", "message_id": "114dfd4a-fe4e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T04:00:02", "message_id": "abaa0ae8-fe4c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T03:50:02", "message_id": "45f9353a-fe4b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T03:40:02", "message_id": "e04dfce4-fe49-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T03:30:02", "message_id": "7a9859c2-fe48-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T03:20:02", "message_id": "14e57ed0-fe47-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T03:10:02", "message_id": "af41ee3e-fe45-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T03:00:01", "message_id": "498d5c78-fe44-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T02:50:01", "message_id": "e3dc60fa-fe42-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T02:40:01", "message_id": "7e2b3b74-fe41-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T02:30:01", "message_id": "1889d312-fe40-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T02:20:01", "message_id": "b2de9224-fe3e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T02:10:01", "message_id": "4d2788f6-fe3d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T02:00:01", "message_id": "e77eb0c0-fe3b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T01:50:01", "message_id": "81d208b8-fe3a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T01:40:01", "message_id": "1c2fcd16-fe39-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T01:30:01", "message_id": "b67fc13e-fe37-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T01:20:01", "message_id": "50dadbb2-fe36-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T01:10:01", "message_id": "eb21d146-fe34-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T01:00:01", "message_id": "857ab52a-fe33-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T00:50:00", "message_id": "1fc25c48-fe32-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T00:40:00", "message_id": "ba1a7476-fe30-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T00:30:00", "message_id": "546616cc-fe2f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T00:20:00", "message_id": "eeb58fb6-fe2d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T00:10:00", "message_id": "89098be6-fe2c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T00:00:00", "message_id": "235bd19c-fe2b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T23:50:00", "message_id": "bdaea280-fe29-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T23:40:00", "message_id": "58036c82-fe28-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T23:30:00", "message_id": "f252532c-fe26-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T23:20:00", "message_id": "8caf6d4e-fe25-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T23:10:00", "message_id": "273b6ad6-fe24-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T23:00:00", "message_id": "c18ecc06-fe22-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T22:49:59", "message_id": "5b97ceb2-fe21-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T22:39:59", "message_id": "f5e368b6-fe1f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 735051776.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T22:29:59", "message_id": "903d3c86-fe1e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T22:19:59", "message_id": "2a91f0b2-fe1d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T22:09:59", "message_id": "c4df9e3c-fe1b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T21:59:59", "message_id": "5f2f7ba8-fe1a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T21:49:59", "message_id": "f97fe0b4-fe18-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T21:39:59", "message_id": "93ccf654-fe17-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T21:29:59", "message_id": "2e162c5a-fe16-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T21:19:58", "message_id": "c86dfc08-fe14-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T21:09:58", "message_id": "62bf3fc6-fe13-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T20:59:58", "message_id": "fd136658-fe11-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T20:49:58", "message_id": "97596eee-fe10-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T20:39:58", "message_id": "31aad066-fe0f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T20:29:58", "message_id": "cbfa1354-fe0d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T20:19:58", "message_id": "66550a0a-fe0c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T20:09:58", "message_id": "009f61d4-fe0b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T19:59:58", "message_id": "9af4ca78-fe09-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T19:49:58", "message_id": "35473144-fe08-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T19:39:58", "message_id": "cfa410ba-fe06-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T19:29:58", "message_id": "69f1180e-fe05-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T19:19:57", "message_id": "0441ffd8-fe04-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T19:09:57", "message_id": "9e98d518-fe02-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T18:59:57", "message_id": "38e70e3e-fe01-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T18:49:57", "message_id": "d335f024-fdff-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T18:39:57", "message_id": "6d8edf20-fdfe-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T18:29:57", "message_id": "07e1d12e-fdfd-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T18:19:57", "message_id": "a237034a-fdfb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T18:09:57", "message_id": "3c9714f4-fdfa-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T17:59:57", "message_id": "d6dc18a4-fdf8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T17:49:57", "message_id": "71321414-fdf7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T17:39:57", "message_id": "0b834d6e-fdf6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T17:29:57", "message_id": "a5d8f9d8-fdf4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T17:19:56", "message_id": "40289428-fdf3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T17:09:56", "message_id": "da7c9896-fdf1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T16:59:56", "message_id": "74ce01b6-fdf0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T16:49:56", "message_id": "0f1e7ae0-fdef-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T16:39:56", "message_id": "a979f698-fded-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T16:29:56", "message_id": "43f4b9e4-fdec-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T16:19:56", "message_id": "de25bd30-fdea-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T16:09:56", "message_id": "78825584-fde9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T15:59:56", "message_id": "12d22aa8-fde8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T15:49:56", "message_id": "ad29fc36-fde6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T15:39:56", "message_id": "477e0504-fde5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T15:29:56", "message_id": "e1cf5f60-fde3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T15:19:56", "message_id": "7c50cc9c-fde2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T15:09:56", "message_id": "166a5bf6-fde1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T14:59:55", "message_id": "b0b9e0e8-fddf-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T14:49:55", "message_id": "4b17ea6a-fdde-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T14:39:55", "message_id": "e561f892-fddc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T14:29:55", "message_id": "7fb67f82-fddb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T14:19:55", "message_id": "1a075676-fdda-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T14:09:55", "message_id": "b45da7d6-fdd8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T13:59:55", "message_id": "4ea9905e-fdd7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T13:49:55", "message_id": "e8fe7518-fdd5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T13:39:55", "message_id": "834ad33e-fdd4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T13:29:55", "message_id": "1d98e374-fdd3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T13:19:55", "message_id": "b7ea5a72-fdd1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T13:09:54", "message_id": "523fb3a8-fdd0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T12:59:54", "message_id": "ec92c7d0-fdce-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T12:49:54", "message_id": "86e3a842-fdcd-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T12:39:54", "message_id": "21322a88-fdcc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T12:29:54", "message_id": "bb828382-fdca-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T12:19:54", "message_id": "55d6703a-fdc9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T12:09:54", "message_id": "f02100ee-fdc7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T11:59:54", "message_id": "8a771e64-fdc6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T11:49:54", "message_id": "24cc6336-fdc5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T11:39:54", "message_id": "bf212720-fdc3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T11:29:54", "message_id": "5971077a-fdc2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T11:19:53", "message_id": "f3c6c2c6-fdc0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T11:09:53", "message_id": "8e17cc46-fdbf-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T10:59:53", "message_id": "286b50bc-fdbe-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T10:49:54", "message_id": "c2e6f300-fdbc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T10:39:53", "message_id": "5d0d59b2-fdbb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T10:29:53", "message_id": "f769b96c-fdb9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T10:19:53", "message_id": "91b78956-fdb8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T10:09:53", "message_id": "2c184cd0-fdb7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T09:59:53", "message_id": "c66aec86-fdb5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T09:49:53", "message_id": "60bef270-fdb4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T09:39:53", "message_id": "fb101b08-fdb2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T09:29:53", "message_id": "9564ca7a-fdb1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T09:19:53", "message_id": "2fb37420-fdb0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T09:09:52", "message_id": "ca0086dc-fdae-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T08:59:52", "message_id": "64580f5e-fdad-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T08:49:52", "message_id": "feb829be-fdab-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T08:39:52", "message_id": "98fd16da-fdaa-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T08:29:52", "message_id": "334e2ece-fda9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T08:19:52", "message_id": "cd9d06d2-fda7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T08:09:52", "message_id": "6808cf32-fda6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T07:59:52", "message_id": "0244465a-fda5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T07:49:52", "message_id": "9c928638-fda3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T07:39:52", "message_id": "36eb2f8e-fda2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T07:29:52", "message_id": "d1391e2c-fda0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T07:19:52", "message_id": "6b8d2592-fd9f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T07:09:52", "message_id": "06054dae-fd9e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T06:59:51", "message_id": "a029fef4-fd9c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T06:49:51", "message_id": "3a806d28-fd9b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T06:39:51", "message_id": "d4c7ccb6-fd99-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T06:29:51", "message_id": "6f1c55ae-fd98-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T06:19:51", "message_id": "0967e508-fd97-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T06:09:51", "message_id": "a3bd4848-fd95-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T05:59:51", "message_id": "3e109a00-fd94-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T05:49:51", "message_id": "d862b3f6-fd92-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T05:39:51", "message_id": "72b39e22-fd91-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T05:29:51", "message_id": "0d1096e8-fd90-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T05:19:50", "message_id": "a75fa5e2-fd8e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T05:09:50", "message_id": "41a9e2f4-fd8d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T04:59:50", "message_id": "dc09d856-fd8b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T04:49:50", "message_id": "76676cbc-fd8a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T04:39:50", "message_id": "10c75544-fd89-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T04:29:50", "message_id": "ab19d88a-fd87-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T04:19:50", "message_id": "45522c4c-fd86-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T04:09:50", "message_id": "dfbe933a-fd84-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T03:59:50", "message_id": "79d54f4c-fd83-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T03:49:50", "message_id": "144606a4-fd82-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T03:39:50", "message_id": "ae9efae6-fd80-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T03:29:50", "message_id": "48fb43d0-fd7f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T03:19:50", "message_id": "e35975e8-fd7d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T03:09:50", "message_id": "7da54ac0-fd7c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T02:59:49", "message_id": "17dc0950-fd7b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T02:49:49", "message_id": "b21dd54a-fd79-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T02:39:49", "message_id": "4cafb742-fd78-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T02:29:49", "message_id": "e6f12f0e-fd76-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T02:19:49", "message_id": "814b9276-fd75-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T02:09:49", "message_id": "1b9665a6-fd74-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T01:59:49", "message_id": "b5d57456-fd72-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T01:49:49", "message_id": "502c0ac6-fd71-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T01:39:49", "message_id": "ea879560-fd6f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T01:29:49", "message_id": "85057500-fd6e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T01:19:49", "message_id": "1f660b20-fd6d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T01:09:49", "message_id": "b9a3c738-fd6b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T00:59:48", "message_id": "53db4c38-fd6a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T00:49:48", "message_id": "ee1c3f66-fd68-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T00:39:48", "message_id": "888353ac-fd67-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T00:29:48", "message_id": "22dc3240-fd66-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T00:19:48", "message_id": "bd37b082-fd64-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T00:09:48", "message_id": "57a868ca-fd63-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-04T23:59:48", "message_id": "f1ff32a2-fd61-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-04T23:49:48", "message_id": "8c39bede-fd60-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-04T23:39:06", "message_id": "0d68083c-fd5f-11e2-b8cf-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-04T23:29:06", "message_id": "a7d6beb0-fd5d-11e2-b8cf-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}], "http://localhost:8777/v2/meters/storage.objects.containers?q.field=resource_id&q.value=931dc699f9934021bb4a2b1088ba4d3b": [{"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-12T04:01:18", "message_id": "d76c7614-0303-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-12T03:51:18", "message_id": "71bafef4-0302-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-12T03:41:18", "message_id": "0c093df6-0301-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-12T03:31:18", "message_id": "a66c53e4-02ff-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-12T03:21:18", "message_id": "40b7e3fc-02fe-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-12T03:11:18", "message_id": "db0dfa42-02fc-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-12T03:01:17", "message_id": "75537cc8-02fb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-12T02:51:17", "message_id": "0fafdc50-02fa-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-12T02:41:17", "message_id": "a9ec7582-02f8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-12T02:31:17", "message_id": "4448346a-02f7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-12T02:21:17", "message_id": "de93ae5c-02f5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-12T02:11:17", "message_id": "78e66a96-02f4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-12T02:01:17", "message_id": "133f64be-02f3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-12T01:51:17", "message_id": "ad950692-02f1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-12T01:41:17", "message_id": "47e15cf2-02f0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-12T01:31:17", "message_id": "e233f514-02ee-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-12T01:21:17", "message_id": "7c7f2dac-02ed-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-12T01:11:16", "message_id": "16d62862-02ec-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-12T01:01:16", "message_id": "b11356a4-02ea-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-12T00:51:16", "message_id": "4b7b1bac-02e9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-12T00:41:16", "message_id": "e5bf5a54-02e7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-12T00:31:16", "message_id": "800f3f22-02e6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-12T00:21:16", "message_id": "1a8ddd1c-02e5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-12T00:11:16", "message_id": "b4af30d2-02e3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-12T00:01:16", "message_id": "4f0548a8-02e2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T23:51:16", "message_id": "e9563e3c-02e0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T23:41:16", "message_id": "83afd5e4-02df-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T23:31:16", "message_id": "1e05b7aa-02de-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T23:21:15", "message_id": "b84c4b82-02dc-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T23:11:15", "message_id": "52ad2f18-02db-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T23:01:16", "message_id": "ed360638-02d9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T22:51:15", "message_id": "874e0f38-02d8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T22:41:15", "message_id": "2199bf6c-02d7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T22:31:15", "message_id": "bbece0a0-02d5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T22:21:15", "message_id": "5638160e-02d4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T22:11:15", "message_id": "f087f41a-02d2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T22:01:15", "message_id": "8ade8d32-02d1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T21:51:15", "message_id": "253761a8-02d0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T21:41:15", "message_id": "bf887712-02ce-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T21:31:14", "message_id": "59d489ca-02cd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T21:21:14", "message_id": "f42ad63e-02cb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T21:11:14", "message_id": "8e7be356-02ca-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T21:01:14", "message_id": "28caeb8e-02c9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T20:51:14", "message_id": "c320c70a-02c7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T20:41:14", "message_id": "5d6b7938-02c6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T20:31:14", "message_id": "f7c4c428-02c4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T20:21:14", "message_id": "9215d3f2-02c3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T20:11:14", "message_id": "2c72dc26-02c2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T20:01:14", "message_id": "c6bcf728-02c0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T19:51:14", "message_id": "61122282-02bf-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T19:41:14", "message_id": "fb6018f0-02bd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T19:31:14", "message_id": "95b53fb8-02bc-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T19:21:13", "message_id": "30046ac8-02bb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T19:11:13", "message_id": "ca512758-02b9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T19:01:13", "message_id": "649c47c2-02b8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T18:51:13", "message_id": "feea2c9c-02b6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T18:41:13", "message_id": "9942d91c-02b5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T18:31:13", "message_id": "338ef368-02b4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T18:21:13", "message_id": "cddffb08-02b2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T18:11:13", "message_id": "6830cf0e-02b1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T18:01:13", "message_id": "0280d268-02b0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T17:51:13", "message_id": "9cd5dce8-02ae-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T17:41:12", "message_id": "3723b5ce-02ad-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T17:31:12", "message_id": "d17b4b20-02ab-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T17:21:12", "message_id": "6bc92938-02aa-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T17:11:12", "message_id": "06172d52-02a9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T17:01:12", "message_id": "a0772df4-02a7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T16:51:12", "message_id": "3ac74a76-02a6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T16:41:12", "message_id": "d52680ca-02a4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T16:31:12", "message_id": "6f6f8a8e-02a3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T16:21:12", "message_id": "09b78832-02a2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T16:11:12", "message_id": "a40dce70-02a0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T16:01:12", "message_id": "3e693100-029f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T15:51:12", "message_id": "d8b81dd6-029d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T15:41:12", "message_id": "731691e8-029c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T15:31:11", "message_id": "0d710068-029b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T15:21:11", "message_id": "a7d02ae6-0299-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T15:11:11", "message_id": "421e2de8-0298-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T15:01:11", "message_id": "dc6c54f8-0296-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T14:51:11", "message_id": "76b7215c-0295-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T14:41:11", "message_id": "1108ea3a-0294-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T14:31:11", "message_id": "ab589bd2-0292-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T14:21:11", "message_id": "45ab43f8-0291-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T14:11:11", "message_id": "dff93d18-028f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T14:01:11", "message_id": "7a53ffbc-028e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T13:51:11", "message_id": "14a88382-028d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T13:41:11", "message_id": "aefb1442-028b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T13:31:10", "message_id": "494cc696-028a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T13:21:10", "message_id": "e397c734-0288-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T13:11:10", "message_id": "7df0cf6c-0287-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T13:01:10", "message_id": "1849230e-0286-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T12:51:10", "message_id": "b2934ab8-0284-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T12:41:10", "message_id": "4ce9218e-0283-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T12:31:10", "message_id": "e7361014-0281-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T12:21:10", "message_id": "8181255c-0280-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T12:11:10", "message_id": "1bd4a5a4-027f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T12:01:10", "message_id": "b6220d10-027d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T11:51:10", "message_id": "507ab314-027c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T11:41:09", "message_id": "eac07c12-027a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T11:31:09", "message_id": "851546d2-0279-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T11:21:09", "message_id": "1f65b412-0278-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T11:11:09", "message_id": "b9b7d9ac-0276-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T11:01:09", "message_id": "54082f68-0275-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T10:51:09", "message_id": "ee56879c-0273-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T10:41:09", "message_id": "88acd8ca-0272-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T10:31:09", "message_id": "2303b8be-0271-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T10:21:09", "message_id": "bd4a95f2-026f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T10:11:09", "message_id": "57ad704e-026e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T10:01:09", "message_id": "f1f959d0-026c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T09:51:08", "message_id": "8c4a190e-026b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T09:41:08", "message_id": "2698197c-026a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T09:31:08", "message_id": "c0ef8e44-0268-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T09:21:08", "message_id": "5b3fd078-0267-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T09:11:08", "message_id": "f597c506-0265-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T09:01:08", "message_id": "8fe81086-0264-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T08:51:08", "message_id": "2a44d45e-0263-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T08:41:08", "message_id": "c4980532-0261-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T08:31:08", "message_id": "5eee0c96-0260-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T08:21:08", "message_id": "f9327bc2-025e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T08:11:08", "message_id": "93861910-025d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T08:01:08", "message_id": "2ddd453a-025c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T07:51:07", "message_id": "c82687c0-025a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T07:41:07", "message_id": "62830d22-0259-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T07:31:07", "message_id": "fccf6166-0257-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T07:21:07", "message_id": "9725255e-0256-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T07:11:07", "message_id": "31662e6c-0255-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T07:01:07", "message_id": "cbca9d64-0253-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T06:51:07", "message_id": "661790a4-0252-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T06:41:07", "message_id": "0065e37e-0251-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T06:31:07", "message_id": "9ab63606-024f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T06:21:07", "message_id": "35163ae0-024e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T06:11:07", "message_id": "cf5f8a4a-024c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T06:01:07", "message_id": "69c8b5b8-024b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T05:51:07", "message_id": "040dbb16-024a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T05:41:06", "message_id": "9e5c79de-0248-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T05:31:06", "message_id": "38a5e540-0247-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T05:21:06", "message_id": "d2f813b8-0245-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T05:11:06", "message_id": "6d408150-0244-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T05:01:06", "message_id": "0798900a-0243-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T04:51:06", "message_id": "a1f0366e-0241-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T04:41:06", "message_id": "3c3d8002-0240-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T04:31:06", "message_id": "d691d3c6-023e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T04:21:06", "message_id": "70fb7946-023d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T04:11:06", "message_id": "0b31fe24-023c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T04:01:05", "message_id": "a5895140-023a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T03:51:05", "message_id": "3fdc4ace-0239-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T03:41:05", "message_id": "da458a78-0237-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T03:31:05", "message_id": "74788ade-0236-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T03:21:05", "message_id": "0ecb1068-0235-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T03:11:05", "message_id": "a919bef0-0233-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T03:01:05", "message_id": "4368abb2-0232-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T02:51:05", "message_id": "ddb72812-0230-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T02:41:05", "message_id": "77f7c99c-022f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T02:31:05", "message_id": "1256affa-022e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T02:21:04", "message_id": "aca64892-022c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T02:11:04", "message_id": "46f6f89e-022b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T02:01:04", "message_id": "e153b546-0229-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T01:51:04", "message_id": "7b9b89e6-0228-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T01:41:04", "message_id": "160033f8-0227-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T01:31:04", "message_id": "b04e590a-0225-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T01:21:04", "message_id": "4a86b19a-0224-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T01:11:04", "message_id": "e4d89e5e-0222-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T01:01:04", "message_id": "7f34cccc-0221-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T00:51:04", "message_id": "197d9716-0220-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T00:41:04", "message_id": "b3cf1bf2-021e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T00:31:03", "message_id": "4e1e79b6-021d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T00:21:03", "message_id": "e86f4182-021b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T00:11:03", "message_id": "82bdc85a-021a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T00:01:03", "message_id": "1d14a81c-0219-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T23:51:03", "message_id": "b7668c66-0217-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T23:41:03", "message_id": "51b58b84-0216-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T23:31:03", "message_id": "ec0caafc-0214-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T23:21:03", "message_id": "86648b80-0213-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T23:11:03", "message_id": "20aa5dca-0212-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T23:01:03", "message_id": "bb56e2aa-0210-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T22:51:03", "message_id": "5562e2f6-020f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T22:41:08", "message_id": "f2c2912e-020d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T22:31:03", "message_id": "8a100900-020c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T22:21:02", "message_id": "2457e66a-020b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T22:11:02", "message_id": "bebdbe7a-0209-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T22:01:02", "message_id": "58fde71e-0208-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T21:51:02", "message_id": "f3671fc0-0206-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T21:41:02", "message_id": "8daeaa96-0205-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T21:31:02", "message_id": "27f94e32-0204-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T21:21:02", "message_id": "c26cde18-0202-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T21:11:02", "message_id": "5ca6138e-0201-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T21:01:02", "message_id": "f6e49dfa-01ff-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T20:51:02", "message_id": "919817b6-01fe-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T20:41:02", "message_id": "2b9af4f2-01fd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T20:31:02", "message_id": "c61cd1aa-01fb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T20:21:01", "message_id": "6038458c-01fa-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T20:11:01", "message_id": "fa800ed8-01f8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T20:01:01", "message_id": "94d33304-01f7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T19:51:01", "message_id": "2f27d376-01f6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T19:41:01", "message_id": "c97ab79c-01f4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T19:31:01", "message_id": "63d2c5fc-01f3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T19:21:01", "message_id": "fe0a3dc8-01f1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T19:11:01", "message_id": "986c47b4-01f0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T19:01:01", "message_id": "32bd03d2-01ef-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T18:51:00", "message_id": "ccfc2fce-01ed-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T18:41:00", "message_id": "6762ac84-01ec-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T18:31:00", "message_id": "01ae8eb8-01eb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T18:21:00", "message_id": "9bfcce8c-01e9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T18:11:00", "message_id": "3647ccbe-01e8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T18:01:00", "message_id": "d0982856-01e6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T17:51:00", "message_id": "6af2e1ea-01e5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T17:41:00", "message_id": "05476c18-01e4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T17:31:00", "message_id": "9f92b68a-01e2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T17:21:00", "message_id": "39e5d9ee-01e1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T17:11:00", "message_id": "d43070d8-01df-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T17:00:59", "message_id": "6e8258d8-01de-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T16:50:59", "message_id": "08d760d8-01dd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T16:40:59", "message_id": "a3249522-01db-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T16:30:59", "message_id": "3d7a3354-01da-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T16:20:59", "message_id": "d7c34916-01d8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T16:10:59", "message_id": "721eac78-01d7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T16:00:59", "message_id": "0c75b5de-01d6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T15:50:59", "message_id": "a6c57036-01d4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T15:40:59", "message_id": "412675be-01d3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T15:30:59", "message_id": "db73ea7c-01d1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T15:20:59", "message_id": "75ccc456-01d0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T15:10:59", "message_id": "101b803a-01cf-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T15:00:58", "message_id": "aa65e448-01cd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T14:50:58", "message_id": "44be4f5a-01cc-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T14:40:58", "message_id": "df056c62-01ca-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T14:30:58", "message_id": "794d5160-01c9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T14:20:58", "message_id": "139edc18-01c8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T14:10:58", "message_id": "adf8ba10-01c6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T14:00:58", "message_id": "484a5e72-01c5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T13:50:58", "message_id": "e29e6cd6-01c3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T13:40:58", "message_id": "7ce7e206-01c2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T13:30:58", "message_id": "17464952-01c1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T13:20:58", "message_id": "b18cb70a-01bf-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T13:10:57", "message_id": "4bde73b8-01be-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T13:00:57", "message_id": "e6313538-01bc-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T12:50:57", "message_id": "808006e8-01bb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T12:40:57", "message_id": "1ad4b0b0-01ba-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T12:30:57", "message_id": "b52cb2b8-01b8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T12:20:57", "message_id": "4f82dc86-01b7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T12:10:57", "message_id": "e9d9f4e2-01b5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T12:00:57", "message_id": "84212e6e-01b4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T11:50:57", "message_id": "1e787852-01b3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T11:40:57", "message_id": "b8d2b46e-01b1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T11:30:57", "message_id": "531f282e-01b0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T11:20:57", "message_id": "ed72f59c-01ae-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T11:10:57", "message_id": "87ca6e7e-01ad-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T11:00:56", "message_id": "22061012-01ac-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T10:50:57", "message_id": "bc8a6b1c-01aa-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T10:40:56", "message_id": "56b68556-01a9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T10:30:56", "message_id": "f114b048-01a7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T10:20:56", "message_id": "8b59237a-01a6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T10:10:56", "message_id": "25c90c7e-01a5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T10:00:56", "message_id": "c005851c-01a3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T09:50:56", "message_id": "5a4a3692-01a2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T09:40:56", "message_id": "f4a71464-01a0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T09:30:56", "message_id": "8f133584-019f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T09:20:56", "message_id": "29479d2c-019e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T09:10:55", "message_id": "c3a0049c-019c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T09:00:56", "message_id": "5e0a07aa-019b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T08:50:55", "message_id": "f841a1a4-0199-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T08:40:55", "message_id": "92a0ae72-0198-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T08:30:55", "message_id": "2cd499c4-0197-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T08:20:55", "message_id": "c734100a-0195-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T08:10:55", "message_id": "6174f474-0194-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T08:00:55", "message_id": "fbc9ae68-0192-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T07:50:55", "message_id": "962c5d5e-0191-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T07:40:55", "message_id": "30814d9e-0190-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T07:30:55", "message_id": "cacc0fc6-018e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T07:20:54", "message_id": "6521f178-018d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T07:10:54", "message_id": "ff74a268-018b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T07:00:54", "message_id": "99c23a9e-018a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T06:50:54", "message_id": "341820e2-0189-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T06:40:54", "message_id": "ce6ae6fe-0187-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T06:30:54", "message_id": "68be14da-0186-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T06:20:54", "message_id": "0313669a-0185-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T06:10:54", "message_id": "9d594e88-0183-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T06:00:54", "message_id": "37a17e40-0182-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T05:50:54", "message_id": "d20425de-0180-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T05:40:54", "message_id": "6c507bd0-017f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T05:30:53", "message_id": "0696db0a-017e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T05:20:53", "message_id": "a0ee3cb8-017c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T05:10:53", "message_id": "3b4568c4-017b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T05:00:53", "message_id": "d59cb988-0179-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T04:50:53", "message_id": "6fe27c78-0178-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T04:40:53", "message_id": "0a2c1002-0177-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T04:30:53", "message_id": "a4818f08-0175-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T04:20:53", "message_id": "3ed161c0-0174-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T04:10:53", "message_id": "d9240da6-0172-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T04:00:53", "message_id": "737f2c48-0171-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T03:50:53", "message_id": "0dd15e4e-0170-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T03:40:53", "message_id": "a8249f4e-016e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T03:30:52", "message_id": "4279c92c-016d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T03:20:52", "message_id": "dcc575c8-016b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T03:10:52", "message_id": "7717aeae-016a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T03:00:52", "message_id": "1169ca02-0169-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T02:50:52", "message_id": "abbe5fe8-0167-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T02:40:52", "message_id": "460794fe-0166-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T02:30:52", "message_id": "e058b2ce-0164-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T02:20:52", "message_id": "7abced32-0163-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T02:10:52", "message_id": "150ecf24-0162-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T02:00:52", "message_id": "af58f5a2-0160-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T01:50:52", "message_id": "49d1b490-015f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T01:40:52", "message_id": "e415ccb4-015d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T01:30:52", "message_id": "7e78284e-015c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T01:20:52", "message_id": "18cb7966-015b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T01:10:51", "message_id": "b30ce55c-0159-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T01:00:51", "message_id": "4d6889fa-0158-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T00:50:51", "message_id": "e7968d26-0156-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T00:40:51", "message_id": "81ece296-0155-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T00:30:51", "message_id": "1c3dc830-0154-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T00:20:51", "message_id": "b68054fa-0152-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T00:10:51", "message_id": "50dd403c-0151-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T00:00:51", "message_id": "eb2b9e24-014f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T23:50:50", "message_id": "857eb72e-014e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T23:40:50", "message_id": "1fc90b7e-014d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T23:30:50", "message_id": "ba0fdc46-014b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T23:20:50", "message_id": "5472dc04-014a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T23:10:50", "message_id": "eebc1106-0148-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T23:00:50", "message_id": "894d42dc-0147-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T22:50:50", "message_id": "23618484-0146-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T22:40:50", "message_id": "bdab2af6-0144-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T22:30:50", "message_id": "57ffcd48-0143-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T22:20:50", "message_id": "f2640d74-0141-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T22:10:50", "message_id": "8c9f9dec-0140-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T22:00:50", "message_id": "26fe970a-013f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T21:50:49", "message_id": "c1522a9e-013d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T21:40:49", "message_id": "5bab1206-013c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T21:30:49", "message_id": "f60212b6-013a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T21:20:49", "message_id": "904bc486-0139-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T21:10:49", "message_id": "2aa7434a-0138-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T21:00:49", "message_id": "c4fe9724-0136-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T20:50:49", "message_id": "5f4ca732-0135-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T20:40:49", "message_id": "f9a23768-0133-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T20:30:49", "message_id": "93e77d58-0132-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T20:20:49", "message_id": "2e5b326e-0131-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T20:10:49", "message_id": "c895ab40-012f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T20:00:49", "message_id": "62e6eb98-012e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T19:50:49", "message_id": "fd43ca78-012c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T19:40:48", "message_id": "978574b2-012b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T19:30:48", "message_id": "31dd60a8-012a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T19:20:48", "message_id": "cc3f836c-0128-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T19:10:48", "message_id": "668465a2-0127-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T19:00:48", "message_id": "00d0d962-0126-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T18:50:48", "message_id": "9b1b64f8-0124-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T18:40:48", "message_id": "35701df2-0123-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T18:30:48", "message_id": "cfb98fbc-0121-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T18:20:48", "message_id": "6a0b1d62-0120-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T18:10:47", "message_id": "04587c9a-011f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T18:00:47", "message_id": "9ea07584-011d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T17:50:47", "message_id": "38faaf70-011c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T17:40:47", "message_id": "d34761e2-011a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T17:30:47", "message_id": "6d9600fc-0119-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T17:20:47", "message_id": "07efb50a-0118-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T17:10:47", "message_id": "a23d1334-0116-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T17:00:47", "message_id": "3c90faa6-0115-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T16:50:47", "message_id": "d6dc0ecc-0113-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T16:40:47", "message_id": "712bb48e-0112-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T16:30:47", "message_id": "0b8cb868-0111-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T16:20:46", "message_id": "a5d31644-010f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T16:10:46", "message_id": "402b7724-010e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T16:00:46", "message_id": "da7a7cd2-010c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T15:50:49", "message_id": "76517afe-010b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T15:40:47", "message_id": "0f7b0d8c-010a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T15:30:46", "message_id": "a99587e6-0108-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T15:20:46", "message_id": "43cae704-0107-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T15:10:46", "message_id": "de32a536-0105-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T15:00:46", "message_id": "78713ce0-0104-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T14:50:46", "message_id": "12ccfa88-0103-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T14:40:46", "message_id": "ad189b1c-0101-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T14:30:46", "message_id": "47619b58-0100-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T14:20:46", "message_id": "e1bf8694-00fe-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T14:10:46", "message_id": "7c46d4e4-00fd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T14:00:45", "message_id": "164eb040-00fc-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T13:50:45", "message_id": "b0af2900-00fa-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T13:40:45", "message_id": "4af8f5e2-00f9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T13:30:45", "message_id": "e5498f1e-00f7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T13:20:46", "message_id": "7ffeb482-00f6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T13:10:45", "message_id": "19de9be6-00f5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T13:00:45", "message_id": "b43bf9c4-00f3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T12:50:45", "message_id": "4e82e152-00f2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T12:40:45", "message_id": "e8dc8f5c-00f0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T12:30:44", "message_id": "833323f6-00ef-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T12:20:44", "message_id": "1d7cd440-00ee-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T12:10:44", "message_id": "b7ce0598-00ec-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T12:00:44", "message_id": "52213068-00eb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T11:50:44", "message_id": "ec7a482c-00e9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T11:40:44", "message_id": "86c31280-00e8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T11:30:44", "message_id": "211c5fb4-00e7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T11:20:44", "message_id": "bb6b905a-00e5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T11:10:44", "message_id": "55c3389e-00e4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T11:00:44", "message_id": "f00b4222-00e2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T10:50:44", "message_id": "8a5cf552-00e1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T10:40:43", "message_id": "24acc1e8-00e0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T10:30:43", "message_id": "bf03374c-00de-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T10:20:43", "message_id": "594ff828-00dd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T10:10:43", "message_id": "f3a3b1e6-00db-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T10:00:43", "message_id": "8e05a2b4-00da-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T09:50:43", "message_id": "28439478-00d9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T09:40:43", "message_id": "c29e7080-00d7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T09:30:43", "message_id": "5cee8aaa-00d6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T09:20:43", "message_id": "f7417ccc-00d4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T09:10:43", "message_id": "919ae4fe-00d3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T09:00:43", "message_id": "2be711b0-00d2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T08:50:42", "message_id": "c630f97c-00d0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T08:40:42", "message_id": "608c3d8a-00cf-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T08:30:42", "message_id": "fadfb1c0-00cd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T08:20:42", "message_id": "95308580-00cc-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T08:10:42", "message_id": "2f7bbe22-00cb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T08:00:42", "message_id": "c9cb4206-00c9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T07:50:42", "message_id": "641c877c-00c8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T07:40:42", "message_id": "fe98f710-00c6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T07:30:42", "message_id": "98ca0556-00c5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T07:20:42", "message_id": "330c1f16-00c4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T07:10:42", "message_id": "cd5f902c-00c2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T07:00:41", "message_id": "67b4f9a2-00c1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T06:50:41", "message_id": "020002c4-00c0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T06:40:41", "message_id": "9c552a72-00be-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T06:30:41", "message_id": "36a8243c-00bd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T06:20:41", "message_id": "d0f3bb0c-00bb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T06:10:41", "message_id": "6b4a2daa-00ba-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T06:00:41", "message_id": "05a51470-00b9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T05:50:41", "message_id": "9ff11ef4-00b7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T05:40:41", "message_id": "3a49b332-00b6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T05:30:41", "message_id": "d4956cee-00b4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T05:20:41", "message_id": "6ee6562a-00b3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T05:10:41", "message_id": "093a2cc6-00b2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T05:00:40", "message_id": "a38ea0b0-00b0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T04:50:40", "message_id": "3df4a516-00af-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T04:40:40", "message_id": "d84baa44-00ad-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T04:30:40", "message_id": "7299581e-00ac-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T04:20:40", "message_id": "0cfabc9c-00ab-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T04:10:40", "message_id": "a75439fa-00a9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T04:00:40", "message_id": "41c99216-00a8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T03:50:41", "message_id": "dc455a3e-00a6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T03:40:40", "message_id": "765873d8-00a5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T03:30:40", "message_id": "10ddef02-00a4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T03:20:40", "message_id": "ab06f292-00a2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T03:10:40", "message_id": "45626a94-00a1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T03:00:40", "message_id": "dfb63352-009f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T02:50:40", "message_id": "79fa558a-009e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T02:40:40", "message_id": "148394e2-009d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T02:30:40", "message_id": "aea11092-009b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T02:20:40", "message_id": "48f679b8-009a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T02:10:39", "message_id": "e34a8fe2-0098-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T02:00:39", "message_id": "7d9d5c34-0097-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T01:50:39", "message_id": "17da44da-0096-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T01:40:39", "message_id": "b22ac3ea-0094-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T01:30:39", "message_id": "4c7d0aae-0093-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T01:20:39", "message_id": "e6d9aa82-0091-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T01:10:39", "message_id": "811d8368-0090-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T01:00:39", "message_id": "1b7c0738-008f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T00:50:39", "message_id": "b5c2ea2a-008d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T00:40:38", "message_id": "500d93f2-008c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T00:30:38", "message_id": "ea6e5dd4-008a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T00:20:38", "message_id": "84c25f0e-0089-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T00:10:38", "message_id": "1f0f9d9e-0088-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T00:00:38", "message_id": "b960523c-0086-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T23:50:38", "message_id": "53aaf6aa-0085-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T23:40:38", "message_id": "ee0bb812-0083-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T23:30:38", "message_id": "8851df48-0082-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T23:20:38", "message_id": "229b9122-0081-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T23:10:38", "message_id": "bcf880ec-007f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T23:00:38", "message_id": "578071f8-007e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T22:50:38", "message_id": "f1930230-007c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T22:40:37", "message_id": "8bec54b4-007b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T22:30:37", "message_id": "262b302e-007a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T22:20:37", "message_id": "c087ef60-0078-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T22:10:37", "message_id": "5ad87000-0077-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T22:00:37", "message_id": "f5286aae-0075-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T21:50:37", "message_id": "8f86354c-0074-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T21:40:37", "message_id": "29ce4fc4-0073-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T21:30:37", "message_id": "c424477e-0071-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T21:20:37", "message_id": "5e84b7ce-0070-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T21:10:37", "message_id": "f8c9ffda-006e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T21:00:37", "message_id": "9312880c-006d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T20:50:36", "message_id": "2d5fa720-006c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T20:40:36", "message_id": "c7b1fc30-006a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T20:30:36", "message_id": "620af07c-0069-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T20:20:36", "message_id": "fc4f8ea6-0067-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T20:10:36", "message_id": "96acf328-0066-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T20:00:36", "message_id": "30f87954-0065-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T19:50:36", "message_id": "cb5037be-0063-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T19:40:36", "message_id": "659b2394-0062-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T19:30:36", "message_id": "ffee3334-0060-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T19:20:36", "message_id": "9a3a0ece-005f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T19:10:35", "message_id": "348ecd18-005e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T19:00:35", "message_id": "cee2a0e4-005c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T18:50:35", "message_id": "6932e48a-005b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T18:40:35", "message_id": "037e82b2-005a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T18:30:35", "message_id": "9dded174-0058-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T18:20:35", "message_id": "381e705c-0057-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T18:10:35", "message_id": "d27cb84a-0055-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T18:00:35", "message_id": "6cce4618-0054-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T17:50:35", "message_id": "07207850-0053-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T17:40:35", "message_id": "a17a455e-0051-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T17:30:35", "message_id": "3bce5bba-0050-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T17:20:35", "message_id": "d61d1afa-004e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T17:10:34", "message_id": "706cf99c-004d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T17:00:34", "message_id": "0abad322-004c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T16:50:34", "message_id": "a50ee8de-004a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T16:40:34", "message_id": "3f685980-0049-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T16:30:34", "message_id": "d9bba9d0-0047-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T16:20:34", "message_id": "74103804-0046-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T16:10:34", "message_id": "0e5c2938-0045-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T16:00:34", "message_id": "a8b7c566-0043-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T15:50:34", "message_id": "4305e6fe-0042-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T15:40:34", "message_id": "dd52bc48-0040-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T15:30:34", "message_id": "77a84300-003f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T15:20:34", "message_id": "11fde9b6-003e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T15:10:34", "message_id": "ac4dd3b6-003c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T15:00:33", "message_id": "4697ff66-003b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T14:50:33", "message_id": "e0f0c2c0-0039-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T14:40:33", "message_id": "7b3a5046-0038-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T14:30:33", "message_id": "1594be80-0037-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T14:20:33", "message_id": "afe0753a-0035-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T14:10:33", "message_id": "4a4288c2-0034-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T14:00:33", "message_id": "e4c3a3ec-0032-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T13:50:33", "message_id": "7ed5ac70-0031-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T13:40:33", "message_id": "1933eb1c-0030-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T13:30:33", "message_id": "b3818b0e-002e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T13:20:33", "message_id": "4dddc0b6-002d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T13:10:32", "message_id": "e829bb9a-002b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T13:00:32", "message_id": "8277966a-002a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T12:50:32", "message_id": "1ccbc17a-0029-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T12:40:32", "message_id": "b711d384-0027-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T12:30:32", "message_id": "516b73f6-0026-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T12:20:32", "message_id": "ebb508ac-0024-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T12:10:32", "message_id": "85ff65da-0023-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T12:00:32", "message_id": "205bde08-0022-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T11:50:32", "message_id": "baa7fbc4-0020-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T11:40:32", "message_id": "550fa93e-001f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T11:30:32", "message_id": "ef64cc00-001d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T11:20:31", "message_id": "89a7de9e-001c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T11:10:32", "message_id": "2418c0f8-001b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T11:00:31", "message_id": "be56d6a2-0019-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T10:50:31", "message_id": "58a9289c-0018-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T10:40:31", "message_id": "f304f9e0-0016-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T10:30:31", "message_id": "8d72b9f6-0015-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T10:20:31", "message_id": "27bd70a2-0014-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T10:10:31", "message_id": "c2234af6-0012-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T10:00:31", "message_id": "5c46ef22-0011-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T09:50:31", "message_id": "f696d1e8-000f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T09:40:31", "message_id": "90dfea48-000e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T09:30:31", "message_id": "2b432f52-000d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T09:20:30", "message_id": "c58674ea-000b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T09:10:30", "message_id": "5fd556f8-000a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T09:00:30", "message_id": "fa302f40-0008-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T08:50:30", "message_id": "947e2662-0007-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T08:40:30", "message_id": "2ed6d422-0006-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T08:30:30", "message_id": "c92ca2ce-0004-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T08:20:30", "message_id": "6379a75c-0003-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T08:10:30", "message_id": "fdd8d504-0001-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T08:00:30", "message_id": "981e49de-0000-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T07:50:30", "message_id": "326ddf38-ffff-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T07:40:30", "message_id": "ccbe0bf0-fffd-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T07:30:30", "message_id": "670d4236-fffc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T07:20:29", "message_id": "0167e1a8-fffb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T07:10:29", "message_id": "9baeb338-fff9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T07:00:29", "message_id": "35f9f012-fff8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T06:50:29", "message_id": "d05d2f54-fff6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T06:40:29", "message_id": "6aa43c08-fff5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T06:30:29", "message_id": "04f1e578-fff4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T06:20:29", "message_id": "9f45daa0-fff2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T06:10:29", "message_id": "3995e764-fff1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T06:00:29", "message_id": "d3ee6acc-ffef-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T05:50:29", "message_id": "6e47e50a-ffee-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T05:40:29", "message_id": "08a04fe0-ffed-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T05:30:29", "message_id": "a2e8c1ba-ffeb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T05:20:28", "message_id": "3d30523a-ffea-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T05:10:28", "message_id": "d785f486-ffe8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T05:00:28", "message_id": "71da7d2e-ffe7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T04:50:28", "message_id": "0c1e14ec-ffe6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T04:40:28", "message_id": "a6807734-ffe4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T04:30:28", "message_id": "40c4324c-ffe3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T04:20:28", "message_id": "db1daab4-ffe1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T04:10:28", "message_id": "756f5678-ffe0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T04:00:28", "message_id": "0fb77208-ffdf-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T03:50:28", "message_id": "aa0dfaae-ffdd-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T03:40:27", "message_id": "445b285e-ffdc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T03:30:27", "message_id": "deaca330-ffda-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T03:20:27", "message_id": "78fcac34-ffd9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T03:10:27", "message_id": "1351f110-ffd8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T03:00:27", "message_id": "ada37c40-ffd6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T02:50:27", "message_id": "47ee9ae8-ffd5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T02:40:27", "message_id": "e23d38ea-ffd3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T02:30:27", "message_id": "7c97981a-ffd2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T02:20:27", "message_id": "170238e4-ffd1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T02:10:27", "message_id": "b12c58f2-ffcf-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T02:00:27", "message_id": "4b871ff6-ffce-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T01:50:26", "message_id": "e5d18cb0-ffcc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T01:40:26", "message_id": "8022f3d2-ffcb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T01:30:26", "message_id": "1a7540ea-ffca-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T01:20:26", "message_id": "b4cc42d0-ffc8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T01:10:26", "message_id": "4f224318-ffc7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T01:00:26", "message_id": "e96f9ed6-ffc5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T00:50:26", "message_id": "83c5aea0-ffc4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T00:40:26", "message_id": "1e190fc6-ffc3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T00:30:26", "message_id": "b867d334-ffc1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T00:20:26", "message_id": "53136ba2-ffc0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T00:10:26", "message_id": "ed0796fe-ffbe-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T00:00:26", "message_id": "87836eb2-ffbd-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T23:50:25", "message_id": "21b3d23a-ffbc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T23:40:25", "message_id": "bc0961b2-ffba-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T23:30:25", "message_id": "5662d5a6-ffb9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T23:20:25", "message_id": "f0cf2b8c-ffb7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T23:10:25", "message_id": "8b1fe49e-ffb6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T23:00:25", "message_id": "2598081e-ffb5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T22:50:25", "message_id": "bf92733e-ffb3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T22:40:25", "message_id": "59f066d6-ffb2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T22:30:25", "message_id": "f440793a-ffb0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T22:20:24", "message_id": "8e801674-ffaf-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T22:10:25", "message_id": "28e53dc2-ffae-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T22:00:24", "message_id": "c32b4fae-ffac-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T21:50:24", "message_id": "5d6e0e46-ffab-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T21:40:24", "message_id": "f7c82f1e-ffa9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T21:30:24", "message_id": "9220eb84-ffa8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T21:20:24", "message_id": "2c689da6-ffa7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T21:10:24", "message_id": "c6ac5166-ffa5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T21:00:24", "message_id": "6106d80a-ffa4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T20:50:24", "message_id": "fb5824ce-ffa2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T20:40:23", "message_id": "95a3db42-ffa1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T20:30:23", "message_id": "2ff99d14-ffa0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T20:20:23", "message_id": "ca4ba666-ff9e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T20:10:23", "message_id": "6490c5aa-ff9d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T20:00:23", "message_id": "fee9ae16-ff9b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T19:50:23", "message_id": "99333e6c-ff9a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T19:40:23", "message_id": "338d3320-ff99-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T19:30:23", "message_id": "cdde4a42-ff97-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T19:20:23", "message_id": "68343af4-ff96-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T19:10:23", "message_id": "0282d0cc-ff95-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T19:00:23", "message_id": "9ccd3c3c-ff93-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T18:50:23", "message_id": "372589c6-ff92-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T18:40:22", "message_id": "d178a988-ff90-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T18:30:22", "message_id": "6bb7f8a2-ff8f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T18:20:22", "message_id": "060833f6-ff8e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T18:10:22", "message_id": "a05d6fae-ff8c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T18:00:22", "message_id": "3ab1a31a-ff8b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T17:50:22", "message_id": "d50174ba-ff89-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T17:40:22", "message_id": "6f59c1e0-ff88-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T17:30:22", "message_id": "09a8b906-ff87-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T17:20:22", "message_id": "a3f4fac6-ff85-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T17:10:22", "message_id": "3e4d19ac-ff84-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T17:00:21", "message_id": "d8921b36-ff82-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T16:50:21", "message_id": "72da9288-ff81-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T16:40:21", "message_id": "0d311ee4-ff80-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T16:30:21", "message_id": "a78dccc8-ff7e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T16:20:21", "message_id": "41d1f432-ff7d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T16:10:21", "message_id": "dc2b717c-ff7b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T16:00:21", "message_id": "767cf11c-ff7a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T15:50:21", "message_id": "10d0cf92-ff79-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T15:40:21", "message_id": "ab1ca87a-ff77-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T15:30:21", "message_id": "4568cfe6-ff76-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T15:20:20", "message_id": "dfbdef42-ff74-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T15:10:20", "message_id": "7a0a2f72-ff73-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T15:00:20", "message_id": "145a476c-ff72-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T14:50:20", "message_id": "aeaca35c-ff70-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T14:40:20", "message_id": "48fb7ebc-ff6f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T14:30:20", "message_id": "e36226a6-ff6d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T14:20:20", "message_id": "7db12970-ff6c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T14:10:20", "message_id": "1800d5d6-ff6b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T14:00:20", "message_id": "b251212e-ff69-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T13:50:20", "message_id": "4c9e8fd4-ff68-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T13:40:20", "message_id": "e7063a2e-ff66-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T13:30:20", "message_id": "814c7ee2-ff65-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T13:20:19", "message_id": "1b9dc192-ff64-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T13:10:19", "message_id": "b5f50a5e-ff62-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T13:00:19", "message_id": "504fa674-ff61-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T12:50:19", "message_id": "eaa63d2a-ff5f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T12:40:19", "message_id": "84efd672-ff5e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T12:30:19", "message_id": "1f465266-ff5d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T12:20:19", "message_id": "b99bbe48-ff5b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T12:10:19", "message_id": "53e15dfc-ff5a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T12:00:19", "message_id": "ee2f3dae-ff58-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T11:50:19", "message_id": "8887ec04-ff57-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T11:40:19", "message_id": "22dd5b42-ff56-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T11:30:19", "message_id": "bd2d6950-ff54-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T11:20:18", "message_id": "577c9c30-ff53-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T11:10:19", "message_id": "f1ea553e-ff51-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T11:00:18", "message_id": "8c33de5a-ff50-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T10:50:18", "message_id": "26850012-ff4f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T10:40:18", "message_id": "c0e0c238-ff4d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T10:30:18", "message_id": "5b29b162-ff4c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T10:20:18", "message_id": "f57c0e7e-ff4a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T10:10:18", "message_id": "8fda1378-ff49-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T10:00:18", "message_id": "2a355ec0-ff48-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T09:50:18", "message_id": "c475041a-ff46-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T09:40:18", "message_id": "5ece87f4-ff45-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T09:30:18", "message_id": "f90db904-ff43-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T09:20:18", "message_id": "93674cba-ff42-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T09:10:17", "message_id": "2db85a72-ff41-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T09:00:17", "message_id": "c7fc013a-ff3f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T08:50:17", "message_id": "62506066-ff3e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T08:40:17", "message_id": "fca69d26-ff3c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T08:30:17", "message_id": "96f4c8dc-ff3b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T08:20:17", "message_id": "3137dc6a-ff3a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T08:10:17", "message_id": "cb8889b0-ff38-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T08:00:17", "message_id": "65d7bcd6-ff37-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T07:50:17", "message_id": "002931e0-ff36-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T07:40:16", "message_id": "9a765586-ff34-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T07:30:16", "message_id": "34d290b0-ff33-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T07:20:16", "message_id": "cf194134-ff31-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T07:10:16", "message_id": "6968543e-ff30-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T07:00:16", "message_id": "03c2f7fc-ff2f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T06:50:16", "message_id": "9e15456e-ff2d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T06:40:16", "message_id": "38655278-ff2c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T06:30:16", "message_id": "d2ac46fe-ff2a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T06:20:16", "message_id": "6d0e572a-ff29-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T06:10:16", "message_id": "076b9c44-ff28-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T06:00:16", "message_id": "a1ab498c-ff26-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T05:50:16", "message_id": "3c0829b6-ff25-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T05:40:15", "message_id": "d6497bc6-ff23-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T05:30:16", "message_id": "70c32da2-ff22-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T05:20:15", "message_id": "0af6acb6-ff21-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T05:10:15", "message_id": "a53c9d5a-ff1f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T05:00:15", "message_id": "3fa39ed6-ff1e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T04:50:15", "message_id": "d9e66552-ff1c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T04:40:15", "message_id": "743f4346-ff1b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T04:30:15", "message_id": "0e9e63ec-ff1a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T04:20:15", "message_id": "a8de52ca-ff18-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T04:10:15", "message_id": "433ad1e2-ff17-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T04:00:15", "message_id": "dd89fedc-ff15-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T03:50:15", "message_id": "77f2b326-ff14-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T03:40:14", "message_id": "1232205e-ff13-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T03:30:14", "message_id": "ac797eac-ff11-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T03:20:14", "message_id": "46d01a3a-ff10-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T03:10:14", "message_id": "e135395e-ff0e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T03:00:14", "message_id": "7b73b9f2-ff0d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T02:50:14", "message_id": "15dfe724-ff0c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T02:40:14", "message_id": "b02a7030-ff0a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T02:30:14", "message_id": "4a7e034c-ff09-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T02:20:14", "message_id": "e4c49a9e-ff07-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T02:10:14", "message_id": "7f14d5de-ff06-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T02:00:14", "message_id": "1962aab4-ff05-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T01:50:14", "message_id": "b3c3441c-ff03-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T01:40:13", "message_id": "4e0758c6-ff02-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T01:30:13", "message_id": "e86071ca-ff00-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T01:20:13", "message_id": "82b26c12-feff-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T01:10:13", "message_id": "1d0a5f9c-fefe-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T01:00:13", "message_id": "b74de10c-fefc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T00:50:13", "message_id": "51aa5822-fefb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T00:40:13", "message_id": "ec004316-fef9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T00:30:13", "message_id": "86414904-fef8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T00:20:13", "message_id": "20930c42-fef7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T00:10:13", "message_id": "bae5eba4-fef5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T00:00:12", "message_id": "552df6c2-fef4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T23:50:12", "message_id": "ef915346-fef2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T23:40:12", "message_id": "89e1afba-fef1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T23:30:12", "message_id": "24378384-fef0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T23:20:12", "message_id": "be9a166e-feee-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T23:10:12", "message_id": "58d0c4fa-feed-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T23:00:12", "message_id": "f36ee2d2-feeb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T22:50:12", "message_id": "8d7aa8fe-feea-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T22:40:12", "message_id": "27cf227e-fee9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T22:30:12", "message_id": "c221aa4c-fee7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T22:20:12", "message_id": "5c6b8250-fee6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T22:10:12", "message_id": "f6d38bdc-fee4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T22:00:12", "message_id": "913c918e-fee3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T21:50:11", "message_id": "2b6b2010-fee2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T21:40:12", "message_id": "c5e4cfa8-fee0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T21:30:11", "message_id": "6019dd04-fedf-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T21:20:11", "message_id": "fa6cb8ce-fedd-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T21:10:11", "message_id": "94b5b838-fedc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T21:00:11", "message_id": "2efc189e-fedb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T20:50:11", "message_id": "c9588b90-fed9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T20:40:11", "message_id": "63b7e8ae-fed8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T20:30:11", "message_id": "fe031a34-fed6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T20:20:11", "message_id": "98813f16-fed5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T20:10:11", "message_id": "32a013e4-fed4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T20:00:11", "message_id": "cd08ceaa-fed2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T19:50:10", "message_id": "67513e90-fed1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T19:40:10", "message_id": "01a84954-fed0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T19:30:10", "message_id": "9bf90ef0-fece-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T19:20:10", "message_id": "3646a230-fecd-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T19:10:10", "message_id": "d0962e7a-fecb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T19:00:10", "message_id": "6ad704ca-feca-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T18:50:10", "message_id": "0552fec0-fec9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T18:40:10", "message_id": "9f8b163c-fec7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T18:30:10", "message_id": "39d3aa9e-fec6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T18:20:10", "message_id": "d429ed80-fec4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T18:10:09", "message_id": "6e76da58-fec3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T18:00:09", "message_id": "08bb19dc-fec2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T17:50:09", "message_id": "a3131fe0-fec0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T17:40:09", "message_id": "3d6b9a92-febf-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T17:30:09", "message_id": "d7b6acf6-febd-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T17:20:09", "message_id": "720e4180-febc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T17:10:09", "message_id": "0c53dfea-febb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T17:00:09", "message_id": "a6a71686-feb9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T16:50:09", "message_id": "40fa64ba-feb8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T16:40:09", "message_id": "db4324d2-feb6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T16:30:09", "message_id": "759a697a-feb5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T16:20:08", "message_id": "0fe77f9c-feb4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T16:10:08", "message_id": "aa444c02-feb2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T16:00:08", "message_id": "44966d96-feb1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T15:50:08", "message_id": "dedfde2a-feaf-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T15:40:08", "message_id": "793d7466-feae-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T15:30:08", "message_id": "138393a4-fead-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T15:20:08", "message_id": "add82e08-feab-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T15:10:08", "message_id": "48262138-feaa-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T15:00:08", "message_id": "e276fce6-fea8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T14:50:08", "message_id": "7ccd4b94-fea7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T14:40:08", "message_id": "172b726c-fea6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T14:30:08", "message_id": "b184d5e4-fea4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T14:20:07", "message_id": "4bd3a370-fea3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T14:10:07", "message_id": "e620b33e-fea1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T14:00:07", "message_id": "808ef8ec-fea0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T13:50:07", "message_id": "1ad19876-fe9f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T13:40:07", "message_id": "b515b32e-fe9d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T13:30:07", "message_id": "4f672ac2-fe9c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T13:20:07", "message_id": "e9b7c502-fe9a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T13:10:07", "message_id": "840606ac-fe99-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T13:00:07", "message_id": "1e617e68-fe98-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T12:50:07", "message_id": "b8b6bce6-fe96-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T12:40:07", "message_id": "531b89c6-fe95-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T12:30:07", "message_id": "ed5a454c-fe93-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T12:20:06", "message_id": "87a55634-fe92-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T12:10:06", "message_id": "2202dfb4-fe91-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T12:00:06", "message_id": "bc546486-fe8f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T11:50:06", "message_id": "56a2b0c6-fe8e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T11:40:06", "message_id": "f1022112-fe8c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T11:30:07", "message_id": "8bdff9cc-fe8b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T11:20:06", "message_id": "2599257c-fe8a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T11:10:06", "message_id": "bfe506e8-fe88-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T11:00:06", "message_id": "5a3eaaa2-fe87-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T10:50:06", "message_id": "f491f084-fe85-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T10:40:06", "message_id": "8ee41902-fe84-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T10:30:05", "message_id": "293148b0-fe83-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T10:20:05", "message_id": "c3874e34-fe81-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T10:10:05", "message_id": "5dcde2b6-fe80-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T10:00:05", "message_id": "f824ffcc-fe7e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T09:50:05", "message_id": "92718660-fe7d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T09:40:05", "message_id": "2cc96176-fe7c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T09:30:05", "message_id": "c71e3a32-fe7a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T09:20:05", "message_id": "61672e0c-fe79-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T09:10:05", "message_id": "fbbfee14-fe77-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T09:00:05", "message_id": "960f647e-fe76-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T08:50:05", "message_id": "305f5e14-fe75-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T08:40:04", "message_id": "cab1eda8-fe73-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T08:30:04", "message_id": "650093ca-fe72-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T08:20:04", "message_id": "ff53b738-fe70-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T08:10:04", "message_id": "99a8bfb0-fe6f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T08:00:04", "message_id": "33fae54a-fe6e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T07:50:04", "message_id": "ce4b9f9c-fe6c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T07:40:04", "message_id": "68ad655e-fe6b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T07:30:04", "message_id": "02fca91e-fe6a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T07:20:04", "message_id": "9d5102b4-fe68-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T07:10:04", "message_id": "37a07202-fe67-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T07:00:04", "message_id": "d1f0d0e2-fe65-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T06:50:04", "message_id": "6c3fe716-fe64-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T06:40:04", "message_id": "069e17e4-fe63-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T06:30:03", "message_id": "a0ef8a5a-fe61-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T06:20:03", "message_id": "3b3a8170-fe60-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T06:10:03", "message_id": "d5867e66-fe5e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T06:00:03", "message_id": "6fd6f330-fe5d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T05:50:03", "message_id": "0a297a40-fe5c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T05:40:03", "message_id": "a4810d8a-fe5a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T05:30:03", "message_id": "3ec87560-fe59-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T05:20:03", "message_id": "d91cb11e-fe57-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T05:10:03", "message_id": "7373cdf8-fe56-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T05:00:03", "message_id": "0dc07e58-fe55-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T04:50:02", "message_id": "a81194b2-fe53-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T04:40:02", "message_id": "426b08ec-fe52-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T04:30:02", "message_id": "dcbf6d4a-fe50-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T04:20:02", "message_id": "770828ee-fe4f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T04:10:02", "message_id": "114ec892-fe4e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T04:00:02", "message_id": "abaaf41c-fe4c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T03:50:02", "message_id": "45fa32e6-fe4b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T03:40:02", "message_id": "e04f4b58-fe49-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T03:30:02", "message_id": "7a993252-fe48-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T03:20:02", "message_id": "14e635b4-fe47-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T03:10:02", "message_id": "af42bd32-fe45-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T03:00:01", "message_id": "498e5aa6-fe44-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T02:50:01", "message_id": "e3dd2634-fe42-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T02:40:01", "message_id": "7e2ca482-fe41-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T02:30:01", "message_id": "188aedd8-fe40-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T02:20:01", "message_id": "b2df8774-fe3e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T02:10:01", "message_id": "4d285830-fe3d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T02:00:01", "message_id": "e77f995e-fe3b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T01:50:01", "message_id": "81d37e3c-fe3a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T01:40:01", "message_id": "1c30aec0-fe39-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T01:30:01", "message_id": "b680c0ac-fe37-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T01:20:01", "message_id": "50dbbf82-fe36-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T01:10:01", "message_id": "eb2319de-fe34-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T01:00:01", "message_id": "857b52d2-fe33-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T00:50:00", "message_id": "1fc3a9e0-fe32-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T00:40:00", "message_id": "ba1b568e-fe30-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T00:30:00", "message_id": "5466f060-fe2f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T00:20:00", "message_id": "eeb685d8-fe2d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T00:10:00", "message_id": "890af0c6-fe2c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T00:00:00", "message_id": "235c9b18-fe2b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T23:50:00", "message_id": "bdaf8d44-fe29-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T23:40:00", "message_id": "58046fd8-fe28-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T23:30:00", "message_id": "f2543f48-fe26-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T23:20:00", "message_id": "8cb1a26c-fe25-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T23:10:00", "message_id": "273c9a32-fe24-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T23:00:00", "message_id": "c18fe6fe-fe22-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T22:49:59", "message_id": "5b992cf8-fe21-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T22:39:59", "message_id": "f5e4e1d2-fe1f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T22:29:59", "message_id": "903e01e8-fe1e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T22:19:59", "message_id": "2a92cd7a-fe1d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T22:09:59", "message_id": "c4e066f0-fe1b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T21:59:59", "message_id": "5f305b04-fe1a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T21:49:59", "message_id": "f98098ec-fe18-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T21:39:59", "message_id": "93cddaec-fe17-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T21:29:59", "message_id": "2e16e3c0-fe16-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T21:19:59", "message_id": "c86f1084-fe14-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T21:09:58", "message_id": "62c03dae-fe13-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T20:59:58", "message_id": "fd143f92-fe11-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T20:49:58", "message_id": "975a645c-fe10-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T20:39:58", "message_id": "31ab988e-fe0f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T20:29:58", "message_id": "cbfab46c-fe0d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T20:19:58", "message_id": "6655c6d4-fe0c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T20:09:58", "message_id": "00a0d32a-fe0b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T19:59:58", "message_id": "9af5f8f8-fe09-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T19:49:58", "message_id": "3547d7e8-fe08-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T19:39:58", "message_id": "cfa4de8c-fe06-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T19:29:58", "message_id": "69f1d5dc-fe05-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T19:19:57", "message_id": "0442b7ac-fe04-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T19:09:57", "message_id": "9e9a096a-fe02-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T18:59:57", "message_id": "38e7b37a-fe01-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T18:49:57", "message_id": "d336cad0-fdff-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T18:39:57", "message_id": "6d8fbd64-fdfe-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T18:29:57", "message_id": "07e29384-fdfd-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T18:19:57", "message_id": "a2379936-fdfb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T18:09:57", "message_id": "3c97dbdc-fdfa-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T17:59:57", "message_id": "d6dce612-fdf8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T17:49:57", "message_id": "7132be46-fdf7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T17:39:57", "message_id": "0b856496-fdf6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T17:29:57", "message_id": "a5d9d9d4-fdf4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T17:19:56", "message_id": "402956ec-fdf3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T17:09:56", "message_id": "da7d4462-fdf1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T16:59:56", "message_id": "74cf1c22-fdf0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T16:49:56", "message_id": "0f1ff884-fdef-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T16:39:56", "message_id": "a97bb294-fded-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T16:29:56", "message_id": "43f59f12-fdec-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T16:19:56", "message_id": "de264c00-fdea-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T16:09:56", "message_id": "7883c3ba-fde9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T15:59:56", "message_id": "12d2bdec-fde8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T15:49:56", "message_id": "ad2ac2ec-fde6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T15:39:56", "message_id": "477ecb56-fde5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T15:29:56", "message_id": "e1d01a68-fde3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T15:19:56", "message_id": "7c51cc32-fde2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T15:09:56", "message_id": "166b2fd6-fde1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T14:59:55", "message_id": "b0bab00e-fddf-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T14:49:55", "message_id": "4b19090e-fdde-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T14:39:55", "message_id": "e562ae22-fddc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T14:29:55", "message_id": "7fb73030-fddb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T14:19:55", "message_id": "1a0813e0-fdda-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T14:09:55", "message_id": "b45ead16-fdd8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T13:59:55", "message_id": "4eaa5250-fdd7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T13:49:55", "message_id": "e8ff1a9a-fdd5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T13:39:55", "message_id": "834b71a4-fdd4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T13:29:55", "message_id": "1d99b27c-fdd3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T13:19:55", "message_id": "b7eb3618-fdd1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T13:09:54", "message_id": "5240be56-fdd0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T12:59:54", "message_id": "ec93afc4-fdce-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T12:49:54", "message_id": "86e5aab6-fdcd-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T12:39:54", "message_id": "2132d76c-fdcc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T12:29:54", "message_id": "bb833318-fdca-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T12:19:54", "message_id": "55d74352-fdc9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T12:09:54", "message_id": "f021db90-fdc7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T11:59:54", "message_id": "8a78027a-fdc6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T11:49:54", "message_id": "24cd14ca-fdc5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T11:39:54", "message_id": "bf221fea-fdc3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T11:29:54", "message_id": "5971cce6-fdc2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T11:19:54", "message_id": "f3c7ce46-fdc0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T11:09:53", "message_id": "8e18a1e8-fdbf-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T10:59:53", "message_id": "286bfbe8-fdbe-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T10:49:54", "message_id": "c2e7b95c-fdbc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T10:39:53", "message_id": "5d0e56c8-fdbb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T10:29:53", "message_id": "f76ac1ea-fdb9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T10:19:53", "message_id": "91b8505c-fdb8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T10:09:53", "message_id": "2c18fa68-fdb7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T09:59:53", "message_id": "c66bc642-fdb5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T09:49:53", "message_id": "60bfa2f6-fdb4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T09:39:53", "message_id": "fb11127e-fdb2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T09:29:53", "message_id": "956579de-fdb1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T09:19:53", "message_id": "2fb48ad6-fdb0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T09:09:52", "message_id": "ca012baa-fdae-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T08:59:52", "message_id": "645aa458-fdad-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T08:49:52", "message_id": "feb8e61a-fdab-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T08:39:52", "message_id": "98fdc35a-fdaa-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T08:29:52", "message_id": "334efe44-fda9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T08:19:52", "message_id": "cd9dacb8-fda7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T08:09:52", "message_id": "68096e60-fda6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T07:59:52", "message_id": "024587e0-fda5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T07:49:52", "message_id": "9c94220e-fda3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T07:39:52", "message_id": "36ec08dc-fda2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T07:29:52", "message_id": "d139fb08-fda0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T07:19:52", "message_id": "6b8e4f12-fd9f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T07:09:52", "message_id": "060628e6-fd9e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T06:59:51", "message_id": "a02a92ba-fd9c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T06:49:51", "message_id": "3a8119b2-fd9b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T06:39:51", "message_id": "d4c89326-fd99-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T06:29:51", "message_id": "6f1d1c78-fd98-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T06:19:51", "message_id": "0968a6d2-fd97-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T06:09:51", "message_id": "a3be0b02-fd95-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T05:59:51", "message_id": "3e115a4e-fd94-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T05:49:51", "message_id": "d863bf58-fd92-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T05:39:51", "message_id": "72b44c14-fd91-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T05:29:51", "message_id": "0d1216b2-fd90-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T05:19:50", "message_id": "a760956a-fd8e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T05:09:50", "message_id": "41ab0ef4-fd8d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T04:59:50", "message_id": "dc0a9138-fd8b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T04:49:50", "message_id": "7667f98e-fd8a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T04:39:50", "message_id": "10c85d7c-fd89-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T04:29:50", "message_id": "ab1aa45e-fd87-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T04:19:50", "message_id": "4552cc4c-fd86-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T04:09:50", "message_id": "dfbfb0e4-fd84-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T03:59:50", "message_id": "79d6095a-fd83-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T03:49:50", "message_id": "1446c3be-fd82-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T03:39:50", "message_id": "ae9fda2e-fd80-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T03:29:50", "message_id": "48fc0ac2-fd7f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T03:19:50", "message_id": "e35a5b98-fd7d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T03:09:50", "message_id": "7da5efde-fd7c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T02:59:49", "message_id": "17dcab1c-fd7b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T02:49:49", "message_id": "b21ec19e-fd79-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T02:39:49", "message_id": "4cb1645c-fd78-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T02:29:49", "message_id": "e6f1f146-fd76-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T02:19:49", "message_id": "814c9b26-fd75-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T02:09:49", "message_id": "1b971334-fd74-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T01:59:49", "message_id": "b5d64a0c-fd72-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T01:49:49", "message_id": "502f1e1e-fd71-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T01:39:49", "message_id": "ea883916-fd6f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T01:29:49", "message_id": "85069dcc-fd6e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T01:19:49", "message_id": "1f671358-fd6d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T01:09:49", "message_id": "b9a47cd2-fd6b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T00:59:48", "message_id": "53dbf534-fd6a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T00:49:48", "message_id": "ee1d016c-fd68-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T00:39:48", "message_id": "8884296c-fd67-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T00:29:48", "message_id": "22dcf658-fd66-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T00:19:48", "message_id": "bd386ed2-fd64-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T00:09:48", "message_id": "57a96054-fd63-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-04T23:59:48", "message_id": "f1ffd77a-fd61-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-04T23:49:48", "message_id": "8c3a8954-fd60-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-04T23:39:05", "message_id": "0cff74c0-fd5f-11e2-b8cf-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-04T23:29:05", "message_id": "a76b7394-fd5d-11e2-b8cf-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}], "http://localhost:8777/v2/meters/storage.objects?q.field=resource_id&q.value=931dc699f9934021bb4a2b1088ba4d3b": [{"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-12T04:01:18", "message_id": "d7697de2-0303-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-12T03:51:18", "message_id": "71b91616-0302-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-12T03:41:18", "message_id": "0c0729a8-0301-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-12T03:31:18", "message_id": "a66abe94-02ff-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-12T03:21:18", "message_id": "40b61324-02fe-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-12T03:11:18", "message_id": "db0c5d18-02fc-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-12T03:01:17", "message_id": "7551ca72-02fb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-12T02:51:17", "message_id": "0fae14b0-02fa-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-12T02:41:17", "message_id": "a9e9ee5c-02f8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-12T02:31:17", "message_id": "4446d746-02f7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-12T02:21:17", "message_id": "de91d42e-02f5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-12T02:11:17", "message_id": "78e4db7c-02f4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-12T02:01:17", "message_id": "133daa16-02f3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-12T01:51:17", "message_id": "ad935f04-02f1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-12T01:41:17", "message_id": "47deef08-02f0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-12T01:31:17", "message_id": "e2329278-02ee-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-12T01:21:17", "message_id": "7c7cf88e-02ed-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-12T01:11:16", "message_id": "16d40afa-02ec-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-12T01:01:16", "message_id": "b111578c-02ea-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-12T00:51:16", "message_id": "4b77d352-02e9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-12T00:41:16", "message_id": "e5bdbeba-02e7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-12T00:31:16", "message_id": "800cda5c-02e6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-12T00:21:16", "message_id": "1a8add9c-02e5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-12T00:11:16", "message_id": "b4adc580-02e3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-12T00:01:16", "message_id": "4f010d60-02e2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T23:51:16", "message_id": "e9543718-02e0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T23:41:16", "message_id": "83ae4116-02df-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T23:31:16", "message_id": "1e038e58-02de-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T23:21:15", "message_id": "b84a6d26-02dc-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T23:11:15", "message_id": "52ab0242-02db-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T23:01:16", "message_id": "ed345f04-02d9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T22:51:15", "message_id": "874bdc68-02d8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T22:41:15", "message_id": "2197656e-02d7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T22:31:15", "message_id": "bbea77e8-02d5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T22:21:15", "message_id": "56363186-02d4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T22:11:15", "message_id": "f086623a-02d2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T22:01:15", "message_id": "8add2dc0-02d1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T21:51:15", "message_id": "2535701e-02d0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T21:41:15", "message_id": "bf867f52-02ce-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T21:31:14", "message_id": "59d28bde-02cd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T21:21:14", "message_id": "f428a12a-02cb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T21:11:14", "message_id": "8e79c3d2-02ca-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T21:01:14", "message_id": "28c94b12-02c9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T20:51:14", "message_id": "c31e939a-02c7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T20:41:14", "message_id": "5d696b2a-02c6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T20:31:14", "message_id": "f7c2c0b0-02c4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T20:21:14", "message_id": "9213de76-02c3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T20:11:14", "message_id": "2c70e074-02c2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T20:01:14", "message_id": "c6ba6b66-02c0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T19:51:14", "message_id": "61101564-02bf-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T19:41:14", "message_id": "fb5e2ad6-02bd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T19:31:13", "message_id": "95b3b742-02bc-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T19:21:13", "message_id": "3001f1f8-02bb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T19:11:13", "message_id": "ca4f7070-02b9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T19:01:13", "message_id": "649a4b3e-02b8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T18:51:13", "message_id": "fee7e180-02b6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T18:41:13", "message_id": "994028ca-02b5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T18:31:13", "message_id": "338d16ba-02b4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T18:21:13", "message_id": "cdddb4e2-02b2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T18:11:13", "message_id": "682f5390-02b1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T18:01:13", "message_id": "027e6fdc-02b0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T17:51:12", "message_id": "9cd3a964-02ae-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T17:41:12", "message_id": "3721c674-02ad-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T17:31:12", "message_id": "d1798380-02ab-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T17:21:12", "message_id": "6bc70c3e-02aa-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T17:11:12", "message_id": "0614b798-02a9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T17:01:12", "message_id": "a074cff0-02a7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T16:51:12", "message_id": "3ac52656-02a6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T16:41:12", "message_id": "d5252de2-02a4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T16:31:12", "message_id": "6f6d5a02-02a3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T16:21:12", "message_id": "09b5ee82-02a2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T16:11:12", "message_id": "a40b9830-02a0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T16:01:12", "message_id": "3e6798d6-029f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T15:51:12", "message_id": "d8b642a4-029d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T15:41:12", "message_id": "7314d1c8-029c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T15:31:11", "message_id": "0d6f66b8-029b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T15:21:11", "message_id": "a7cea7fc-0299-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T15:11:11", "message_id": "421be678-0298-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T15:01:11", "message_id": "dc6a7408-0296-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T14:51:11", "message_id": "76b537a2-0295-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T14:41:11", "message_id": "110767c8-0294-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T14:31:11", "message_id": "ab56ab74-0292-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T14:21:11", "message_id": "45a92f00-0291-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T14:11:11", "message_id": "dff7ea12-028f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T14:01:11", "message_id": "7a527020-028e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T13:51:11", "message_id": "14a6e1c6-028d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T13:41:11", "message_id": "aef97e02-028b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T13:31:10", "message_id": "494a9808-028a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T13:21:10", "message_id": "e3968248-0288-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T13:11:10", "message_id": "7def4976-0287-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T13:01:10", "message_id": "184726e4-0286-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T12:51:10", "message_id": "b29171fc-0284-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T12:41:10", "message_id": "4ce6e3e2-0283-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T12:31:10", "message_id": "e733b92c-0281-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T12:21:10", "message_id": "817fd95e-0280-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T12:11:10", "message_id": "1bd28d0a-027f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T12:01:10", "message_id": "b6205cd6-027d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T11:51:10", "message_id": "507931ec-027c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T11:41:09", "message_id": "eabecf20-027a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T11:31:09", "message_id": "851381e4-0279-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T11:21:09", "message_id": "1f6422a0-0278-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T11:11:09", "message_id": "b9b59a8e-0276-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T11:01:09", "message_id": "5405e122-0275-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T10:51:09", "message_id": "ee54f756-0273-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T10:41:09", "message_id": "88ab0c52-0272-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T10:31:09", "message_id": "2300a656-0271-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T10:21:09", "message_id": "bd489770-026f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T10:11:09", "message_id": "57ab2794-026e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T10:01:09", "message_id": "f1f7e8de-026c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T09:51:08", "message_id": "8c47a6d8-026b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T09:41:08", "message_id": "269622de-026a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T09:31:08", "message_id": "c0edc938-0268-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T09:21:08", "message_id": "5b3d5a32-0267-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T09:11:08", "message_id": "f59577ba-0265-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T09:01:08", "message_id": "8fe5b57a-0264-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T08:51:08", "message_id": "2a42f8a0-0263-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T08:41:08", "message_id": "c49636a8-0261-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T08:31:08", "message_id": "5eebc832-0260-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T08:21:08", "message_id": "f9301dd2-025e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T08:11:08", "message_id": "938477cc-025d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T08:01:08", "message_id": "2ddaaeec-025c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T07:51:07", "message_id": "c824fb44-025a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T07:41:07", "message_id": "628065fe-0259-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T07:31:07", "message_id": "fccbd668-0257-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T07:21:07", "message_id": "9720dcb0-0256-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T07:11:07", "message_id": "316422a2-0255-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T07:01:07", "message_id": "cbc7e51a-0253-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T06:51:07", "message_id": "6613a336-0252-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T06:41:07", "message_id": "0063c0d0-0251-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T06:31:07", "message_id": "9ab397e8-024f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T06:21:07", "message_id": "351466ac-024e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T06:11:07", "message_id": "cf5ce97a-024c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T06:01:07", "message_id": "69c6e8a0-024b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T05:51:06", "message_id": "040c2c60-024a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T05:41:06", "message_id": "9e5a3624-0248-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T05:31:06", "message_id": "38a3b2ac-0247-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T05:21:06", "message_id": "d2f65da2-0245-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T05:11:06", "message_id": "6d3e71d0-0244-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T05:01:06", "message_id": "0795f944-0243-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T04:51:06", "message_id": "a1ee6b9a-0241-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T04:41:06", "message_id": "3c3bac64-0240-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T04:31:06", "message_id": "d6904858-023e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T04:21:06", "message_id": "70f8eeec-023d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T04:11:06", "message_id": "0b2ffa8e-023c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T04:01:05", "message_id": "a5875a3e-023a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T03:51:05", "message_id": "3fda7ea6-0239-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T03:41:05", "message_id": "da42c3ec-0237-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T03:31:05", "message_id": "7477081c-0236-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T03:21:05", "message_id": "0ec9111e-0235-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T03:11:05", "message_id": "a9174800-0233-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T03:01:05", "message_id": "43671428-0232-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T02:51:05", "message_id": "ddb45c9a-0230-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T02:41:05", "message_id": "77f69130-022f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T02:31:05", "message_id": "125511c2-022e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T02:21:04", "message_id": "aca3b10e-022c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T02:11:04", "message_id": "46f5246a-022b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T02:01:04", "message_id": "e1512330-0229-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T01:51:04", "message_id": "7b9a38f2-0228-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T01:41:04", "message_id": "15fe0308-0227-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T01:31:04", "message_id": "b04b9c1a-0225-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T01:21:04", "message_id": "4a848c12-0224-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T01:11:04", "message_id": "e4d7196c-0222-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T01:01:04", "message_id": "7f32dc96-0221-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T00:51:04", "message_id": "197bb2a2-0220-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T00:41:04", "message_id": "b3cd748c-021e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T00:31:03", "message_id": "4e1ccf30-021d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T00:21:03", "message_id": "e86dc2a8-021b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T00:11:03", "message_id": "82bc4386-021a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-11T00:01:03", "message_id": "1d11b8a0-0219-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T23:51:03", "message_id": "b764d628-0217-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T23:41:03", "message_id": "51b335be-0216-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T23:31:03", "message_id": "ec0b017a-0214-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T23:21:03", "message_id": "866314bc-0213-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T23:11:03", "message_id": "20a8a660-0212-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T23:01:03", "message_id": "bb54e586-0210-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T22:51:03", "message_id": "5560c80e-020f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T22:41:08", "message_id": "f2bfa2a2-020d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T22:31:03", "message_id": "8a0e4912-020c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T22:21:02", "message_id": "245624e2-020b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T22:11:02", "message_id": "bebbc9bc-0209-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T22:01:02", "message_id": "58fbf76a-0208-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T21:51:02", "message_id": "f3650898-0206-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T21:41:02", "message_id": "8dacc6e0-0205-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T21:31:02", "message_id": "27f78246-0204-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T21:21:02", "message_id": "c26176d6-0202-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T21:11:02", "message_id": "5ca47394-0201-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T21:01:02", "message_id": "f6e2ca5c-01ff-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T20:51:02", "message_id": "9194cab6-01fe-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T20:41:02", "message_id": "2b991510-01fd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T20:31:02", "message_id": "c61a9020-01fb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T20:21:01", "message_id": "6036101e-01fa-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T20:11:01", "message_id": "fa799a44-01f8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T20:01:01", "message_id": "94d19ea4-01f7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T19:51:01", "message_id": "2f260622-01f6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T19:41:01", "message_id": "c977bd62-01f4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T19:31:01", "message_id": "63d134a8-01f3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T19:21:01", "message_id": "fe087e16-01f1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T19:11:01", "message_id": "986a6e6c-01f0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T19:01:01", "message_id": "32bb53ca-01ef-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T18:51:00", "message_id": "ccfa41be-01ed-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T18:41:00", "message_id": "6760a970-01ec-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T18:31:00", "message_id": "01ac1a48-01eb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T18:21:00", "message_id": "9bfafd1e-01e9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T18:11:00", "message_id": "36462422-01e8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T18:01:00", "message_id": "d0951ae4-01e6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T17:51:00", "message_id": "6af030c6-01e5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T17:41:00", "message_id": "0545b1b6-01e4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T17:31:00", "message_id": "9f90f408-01e2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T17:21:00", "message_id": "39e35eda-01e1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T17:11:00", "message_id": "d42eda02-01df-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T17:00:59", "message_id": "6e80aace-01de-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T16:50:59", "message_id": "08d5d812-01dd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T16:40:59", "message_id": "a322ad5c-01db-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T16:30:59", "message_id": "3d7890b2-01da-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T16:20:59", "message_id": "d7c19b5c-01d8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T16:10:59", "message_id": "721d6cc8-01d7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T16:00:59", "message_id": "0c7365ae-01d6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T15:50:59", "message_id": "a6c35dfa-01d4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T15:40:59", "message_id": "41246d0a-01d3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T15:30:59", "message_id": "db718b74-01d1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T15:20:59", "message_id": "75cae5d2-01d0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T15:10:59", "message_id": "1019a1f2-01cf-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T15:00:58", "message_id": "aa646f32-01cd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T14:50:58", "message_id": "44bbf886-01cc-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T14:40:58", "message_id": "df03a97c-01ca-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T14:30:58", "message_id": "794bdeca-01c9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T14:20:58", "message_id": "139ca830-01c8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T14:10:58", "message_id": "adf6da24-01c6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T14:00:58", "message_id": "4848da5c-01c5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T13:50:58", "message_id": "e29c89b6-01c3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T13:40:58", "message_id": "7ce60be8-01c2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T13:30:58", "message_id": "174316ce-01c1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T13:20:58", "message_id": "b18ada98-01bf-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T13:10:57", "message_id": "4bdcb05a-01be-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T13:00:57", "message_id": "e62f7400-01bc-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T12:50:57", "message_id": "807d8d46-01bb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T12:40:57", "message_id": "1ad2bfda-01ba-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T12:30:57", "message_id": "b52a9fb4-01b8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T12:20:57", "message_id": "4f80313e-01b7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T12:10:57", "message_id": "e9d7b6be-01b5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T12:00:57", "message_id": "841fc560-01b4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T11:50:57", "message_id": "1e760ee6-01b3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T11:40:57", "message_id": "b8d129d2-01b1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T11:30:57", "message_id": "531c67d8-01b0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T11:20:57", "message_id": "ed6faee6-01ae-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T11:10:57", "message_id": "87c8a580-01ad-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T11:00:56", "message_id": "2203b0ba-01ac-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T10:50:57", "message_id": "bc886ef2-01aa-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T10:40:56", "message_id": "56b493cc-01a9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T10:30:56", "message_id": "f1118832-01a7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T10:20:56", "message_id": "8b5755d6-01a6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T10:10:56", "message_id": "25c7056e-01a5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T10:00:56", "message_id": "c0035a08-01a3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T09:50:56", "message_id": "5a486aa6-01a2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T09:40:56", "message_id": "f4a561a0-01a0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T09:30:56", "message_id": "8f10f594-019f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T09:20:56", "message_id": "2945bb74-019e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T09:10:55", "message_id": "c39e7e6a-019c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T09:00:56", "message_id": "5e080374-019b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T08:50:55", "message_id": "f83f20dc-0199-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T08:40:55", "message_id": "929e98bc-0198-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T08:30:55", "message_id": "2cd31900-0197-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T08:20:55", "message_id": "c73221b4-0195-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T08:10:55", "message_id": "6172c62c-0194-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T08:00:55", "message_id": "fbc71914-0192-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T07:50:55", "message_id": "962a5c84-0191-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T07:40:55", "message_id": "307f9062-0190-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T07:30:55", "message_id": "caca7bc0-018e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T07:20:54", "message_id": "6520927e-018d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T07:10:54", "message_id": "ff723d5c-018b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T07:00:54", "message_id": "99bff612-018a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T06:50:54", "message_id": "34167562-0189-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T06:40:54", "message_id": "ce693908-0187-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T06:30:54", "message_id": "68bcc99a-0186-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T06:20:54", "message_id": "0311fb98-0185-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T06:10:54", "message_id": "9d57752c-0183-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T06:00:54", "message_id": "379fded2-0182-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T05:50:54", "message_id": "d2015eb2-0180-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T05:40:54", "message_id": "6c4e86cc-017f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T05:30:53", "message_id": "069525da-017e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T05:20:53", "message_id": "a0ec4b7e-017c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T05:10:53", "message_id": "3b423082-017b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T05:00:53", "message_id": "d59af922-0179-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T04:50:53", "message_id": "6fe02de2-0178-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T04:40:53", "message_id": "0a2a7e54-0177-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T04:30:53", "message_id": "a47f5cd8-0175-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T04:20:53", "message_id": "3ecf5538-0174-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T04:10:53", "message_id": "d9222f90-0172-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T04:00:53", "message_id": "737d6d2c-0171-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T03:50:53", "message_id": "0dcefbf4-0170-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T03:40:53", "message_id": "a822e1d6-016e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T03:30:52", "message_id": "427808bc-016d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T03:20:52", "message_id": "dcc41c28-016b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T03:10:52", "message_id": "7715f05a-016a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T03:00:52", "message_id": "11684fba-0169-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T02:50:52", "message_id": "abbc56ee-0167-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T02:40:52", "message_id": "4605f87e-0166-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T02:30:52", "message_id": "e05732f0-0164-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T02:20:52", "message_id": "7abb1f8e-0163-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T02:10:52", "message_id": "150cf14a-0162-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T02:00:52", "message_id": "af574c7a-0160-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T01:50:52", "message_id": "49cf8206-015f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T01:40:52", "message_id": "e413179e-015d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T01:30:52", "message_id": "7e71cf08-015c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T01:20:52", "message_id": "18c9532a-015b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T01:10:51", "message_id": "b30b715e-0159-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T01:00:51", "message_id": "4d664208-0158-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T00:50:51", "message_id": "e793d374-0156-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T00:40:51", "message_id": "81eae1b2-0155-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T00:30:51", "message_id": "1c3b5c30-0154-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T00:20:51", "message_id": "b67e7f18-0152-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T00:10:51", "message_id": "50dbbe60-0151-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-10T00:00:51", "message_id": "eb295c04-014f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T23:50:50", "message_id": "857bb704-014e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T23:40:50", "message_id": "1fc74ef6-014d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T23:30:50", "message_id": "ba0e2108-014b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T23:20:50", "message_id": "54713232-014a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T23:10:50", "message_id": "eeba4c54-0148-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T23:00:50", "message_id": "894aee2e-0147-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T22:50:50", "message_id": "235f58da-0146-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T22:40:50", "message_id": "bda8f65a-0144-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T22:30:50", "message_id": "57fe4b26-0143-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T22:20:50", "message_id": "f261e738-0141-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T22:10:49", "message_id": "8c9da4e2-0140-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T22:00:49", "message_id": "26fc75b0-013f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T21:50:49", "message_id": "c15078ac-013d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T21:40:49", "message_id": "5ba91cb2-013c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T21:30:49", "message_id": "f60033ce-013a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T21:20:49", "message_id": "9049a0f2-0139-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T21:10:49", "message_id": "2aa5bb42-0138-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T21:00:49", "message_id": "c4fccf70-0136-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T20:50:49", "message_id": "5f49e97a-0135-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T20:40:49", "message_id": "f9a066a4-0133-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T20:30:49", "message_id": "93e5835e-0132-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T20:20:49", "message_id": "2e58673c-0131-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T20:10:49", "message_id": "c8944656-012f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T20:00:49", "message_id": "62e4d114-012e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T19:50:49", "message_id": "fd41fe00-012c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T19:40:48", "message_id": "97837c20-012b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T19:30:48", "message_id": "31dbc16c-012a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T19:20:48", "message_id": "cc3d8e36-0128-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T19:10:48", "message_id": "6682742c-0127-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T19:00:48", "message_id": "00cd3e60-0126-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T18:50:48", "message_id": "9b192026-0124-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T18:40:48", "message_id": "356e3f78-0123-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T18:30:48", "message_id": "cfb7fe68-0121-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T18:20:48", "message_id": "6a064d1e-0120-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T18:10:47", "message_id": "04568656-011f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T18:00:47", "message_id": "9e9f09ce-011d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T17:50:47", "message_id": "38f93816-011c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T17:40:47", "message_id": "d3459a24-011a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T17:30:47", "message_id": "6d9483da-0119-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T17:20:47", "message_id": "07edca92-0118-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T17:10:47", "message_id": "a23b701a-0116-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T17:00:47", "message_id": "3c8e2754-0115-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T16:50:47", "message_id": "d6d95da8-0113-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T16:40:47", "message_id": "7129e078-0112-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T16:30:47", "message_id": "0b8b0f72-0111-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T16:20:46", "message_id": "a5d1846e-010f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T16:10:46", "message_id": "40295232-010e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T16:00:46", "message_id": "da7833be-010c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T15:50:49", "message_id": "764e3682-010b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T15:40:47", "message_id": "0f793d04-010a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T15:30:46", "message_id": "a9925f30-0108-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T15:20:46", "message_id": "43c94c32-0107-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T15:10:46", "message_id": "de30c2e8-0105-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T15:00:46", "message_id": "786f45de-0104-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T14:50:46", "message_id": "12ca2542-0103-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T14:40:46", "message_id": "ad15a95c-0101-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T14:30:46", "message_id": "475fd912-0100-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T14:20:46", "message_id": "e1bdd902-00fe-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T14:10:46", "message_id": "7c452a22-00fd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T14:00:45", "message_id": "164cff98-00fc-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T13:50:45", "message_id": "b0acde20-00fa-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T13:40:45", "message_id": "4af65eae-00f9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T13:30:45", "message_id": "e547727e-00f7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T13:20:46", "message_id": "7ffca4f8-00f6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T13:10:45", "message_id": "19dcb2cc-00f5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T13:00:45", "message_id": "b439c7f8-00f3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T12:50:45", "message_id": "4e81428e-00f2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T12:40:45", "message_id": "e8dab862-00f0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T12:30:44", "message_id": "8330bd6e-00ef-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T12:20:44", "message_id": "1d7b0a8e-00ee-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T12:10:44", "message_id": "b7cc5072-00ec-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T12:00:44", "message_id": "521f62c4-00eb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T11:50:44", "message_id": "ec788ece-00e9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T11:40:44", "message_id": "86c18aa0-00e8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T11:30:44", "message_id": "211a9bca-00e7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T11:20:44", "message_id": "bb69e192-00e5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T11:10:44", "message_id": "55c16f28-00e4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T11:00:44", "message_id": "f0090b06-00e2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T10:50:44", "message_id": "8a5ad6a0-00e1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T10:40:43", "message_id": "24aa6196-00e0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T10:30:43", "message_id": "bf01b408-00de-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T10:20:43", "message_id": "594d6bf8-00dd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T10:10:43", "message_id": "f3a1a658-00db-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T10:00:43", "message_id": "8e02f172-00da-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T09:50:43", "message_id": "28420220-00d9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T09:40:43", "message_id": "c29c99f4-00d7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T09:30:43", "message_id": "5cecb900-00d6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T09:20:43", "message_id": "f73ee502-00d4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T09:10:43", "message_id": "91990ddc-00d3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T09:00:43", "message_id": "2be59f1a-00d2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T08:50:42", "message_id": "c62f5db0-00d0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T08:40:42", "message_id": "6089e7c4-00cf-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T08:30:42", "message_id": "fade1b80-00cd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T08:20:42", "message_id": "952edad2-00cc-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T08:10:42", "message_id": "2f799fa2-00cb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T08:00:42", "message_id": "c9c95b94-00c9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T07:50:42", "message_id": "641a7716-00c8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T07:40:42", "message_id": "fe9650dc-00c6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T07:30:42", "message_id": "98c75900-00c5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T07:20:42", "message_id": "330ac300-00c4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T07:10:42", "message_id": "cd5da21c-00c2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T07:00:41", "message_id": "67b33130-00c1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T06:50:41", "message_id": "01fe95ec-00c0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T06:40:41", "message_id": "9c52fbda-00be-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T06:30:41", "message_id": "36a5cfac-00bd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T06:20:41", "message_id": "d0f1ec0a-00bb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T06:10:41", "message_id": "6b486178-00ba-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T06:00:41", "message_id": "05a39f8c-00b9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T05:50:41", "message_id": "9fef8da0-00b7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T05:40:41", "message_id": "3a46edbe-00b6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T05:30:41", "message_id": "d4932952-00b4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T05:20:41", "message_id": "6ee47030-00b3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T05:10:41", "message_id": "0937ea92-00b2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T05:00:40", "message_id": "a38ccb6e-00b0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T04:50:40", "message_id": "3df281d2-00af-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T04:40:40", "message_id": "d84a53b0-00ad-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T04:30:40", "message_id": "72978926-00ac-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T04:20:40", "message_id": "0cf7b10a-00ab-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T04:10:40", "message_id": "a7515050-00a9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T04:00:40", "message_id": "41c6a394-00a8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T03:50:41", "message_id": "dc439488-00a6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T03:40:40", "message_id": "76569c34-00a5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T03:30:40", "message_id": "10dc5570-00a4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T03:20:40", "message_id": "ab051e40-00a2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T03:10:40", "message_id": "4560928c-00a1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T03:00:40", "message_id": "dfb48e80-009f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T02:50:40", "message_id": "79f82990-009e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T02:40:40", "message_id": "14811442-009d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T02:30:40", "message_id": "ae9ef546-009b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T02:20:40", "message_id": "48f517ee-009a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T02:10:39", "message_id": "e348eab6-0098-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T02:00:39", "message_id": "7d9b3422-0097-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T01:50:39", "message_id": "17d860e8-0096-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T01:40:39", "message_id": "b2282540-0094-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T01:30:39", "message_id": "4c7af19c-0093-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T01:20:39", "message_id": "e6d76664-0091-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T01:10:39", "message_id": "811bff16-0090-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T01:00:39", "message_id": "1b7a43ee-008f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T00:50:39", "message_id": "b5c0f95e-008d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T00:40:38", "message_id": "500b6406-008c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T00:30:38", "message_id": "ea6bb89a-008a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T00:20:38", "message_id": "84c0e458-0089-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T00:10:38", "message_id": "1f0d5f66-0088-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-09T00:00:38", "message_id": "b95e18aa-0086-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T23:50:38", "message_id": "53a92460-0085-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T23:40:38", "message_id": "ee0a0968-0083-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T23:30:38", "message_id": "88500466-0082-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T23:20:38", "message_id": "229a0d48-0081-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T23:10:38", "message_id": "bcf6a4e8-007f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T23:00:38", "message_id": "577ec204-007e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T22:50:38", "message_id": "f191313a-007c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T22:40:37", "message_id": "8be9ce38-007b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T22:30:37", "message_id": "2629c6e4-007a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T22:20:37", "message_id": "c0860eb6-0078-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T22:10:37", "message_id": "5ad5bc20-0077-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T22:00:37", "message_id": "f5271370-0075-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T21:50:37", "message_id": "8f82fd8c-0074-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T21:40:37", "message_id": "29cc9436-0073-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T21:30:37", "message_id": "c421d3d6-0071-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T21:20:37", "message_id": "5e828abc-0070-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T21:10:37", "message_id": "f8c69c82-006e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T21:00:36", "message_id": "930fe156-006d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T20:50:36", "message_id": "2d5d68c0-006c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T20:40:36", "message_id": "c7b050c4-006a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T20:30:36", "message_id": "6208e7dc-0069-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T20:20:36", "message_id": "fc4e13b4-0067-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T20:10:36", "message_id": "96ab1f3a-0066-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T20:00:36", "message_id": "30f68806-0065-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T19:50:36", "message_id": "cb4e7118-0063-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T19:40:36", "message_id": "659964dc-0062-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T19:30:36", "message_id": "ffebaeac-0060-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T19:20:36", "message_id": "9a37bff2-005f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T19:10:35", "message_id": "348ca844-005e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T19:00:35", "message_id": "cee0673e-005c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T18:50:35", "message_id": "6930139a-005b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T18:40:35", "message_id": "037cc3be-005a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T18:30:35", "message_id": "9ddcffb6-0058-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T18:20:35", "message_id": "381cffa6-0057-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T18:10:35", "message_id": "d27a2d82-0055-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T18:00:35", "message_id": "6ccc0e16-0054-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T17:50:35", "message_id": "071ecce4-0053-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T17:40:35", "message_id": "a1787f8a-0051-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T17:30:35", "message_id": "3bcc9762-0050-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T17:20:35", "message_id": "d619fa00-004e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T17:10:34", "message_id": "706a4742-004d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T17:00:34", "message_id": "0ab8fc78-004c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T16:50:34", "message_id": "a50bda0e-004a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T16:40:34", "message_id": "3f66f716-0049-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T16:30:34", "message_id": "d9b91bca-0047-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T16:20:34", "message_id": "740db8cc-0046-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T16:10:34", "message_id": "0e5a0c3e-0045-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T16:00:34", "message_id": "a8b56302-0043-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T15:50:34", "message_id": "430448d0-0042-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T15:40:34", "message_id": "dd5154ac-0040-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T15:30:34", "message_id": "77a66aee-003f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T15:20:34", "message_id": "11fc5452-003e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T15:10:33", "message_id": "ac4b6982-003c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T15:00:33", "message_id": "469633e8-003b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T14:50:33", "message_id": "e0ee9298-0039-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T14:40:33", "message_id": "7b38a0e8-0038-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T14:30:33", "message_id": "1592ffb4-0037-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T14:20:33", "message_id": "afde78ac-0035-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T14:10:33", "message_id": "4a409e4a-0034-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T14:00:33", "message_id": "e4c1e0d4-0032-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T13:50:33", "message_id": "7ed3d706-0031-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T13:40:33", "message_id": "1931e3b2-0030-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T13:30:33", "message_id": "b38007ac-002e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T13:20:33", "message_id": "4ddb61d6-002d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T13:10:32", "message_id": "e827d776-002b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T13:00:32", "message_id": "8275fc92-002a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T12:50:32", "message_id": "1cca3954-0029-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T12:40:32", "message_id": "b7103236-0027-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T12:30:32", "message_id": "51692e2a-0026-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T12:20:32", "message_id": "ebb3395a-0024-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T12:10:32", "message_id": "85fd464c-0023-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T12:00:32", "message_id": "205a70b8-0022-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T11:50:32", "message_id": "baa64d74-0020-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T11:40:32", "message_id": "550d3afa-001f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T11:30:32", "message_id": "ef62fc9a-001d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T11:20:31", "message_id": "89a472ea-001c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T11:10:32", "message_id": "241550c6-001b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T11:00:31", "message_id": "be54f10c-0019-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T10:50:31", "message_id": "58a6e050-0018-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T10:40:31", "message_id": "f30326b0-0016-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T10:30:31", "message_id": "8d7092f2-0015-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T10:20:31", "message_id": "27ba6d8a-0014-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T10:10:31", "message_id": "c221492c-0012-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T10:00:31", "message_id": "5c457598-0011-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T09:50:31", "message_id": "f694f0a8-000f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T09:40:31", "message_id": "90de0e80-000e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T09:30:31", "message_id": "2b40c35c-000d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T09:20:30", "message_id": "c5853b3e-000b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T09:10:30", "message_id": "5fd3d850-000a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T09:00:30", "message_id": "fa2dd40c-0008-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T08:50:30", "message_id": "947c88de-0007-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T08:40:30", "message_id": "2ed5846e-0006-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T08:30:30", "message_id": "c92b442e-0004-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T08:20:30", "message_id": "637707a4-0003-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T08:10:30", "message_id": "fdd69974-0001-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T08:00:30", "message_id": "981cd644-0000-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T07:50:30", "message_id": "326bdf26-ffff-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T07:40:30", "message_id": "ccbcacec-fffd-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T07:30:30", "message_id": "670b9198-fffc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T07:20:29", "message_id": "016572b0-fffb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T07:10:29", "message_id": "9bacd676-fff9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T07:00:29", "message_id": "35f7f780-fff8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T06:50:29", "message_id": "d05aeaaa-fff6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T06:40:29", "message_id": "6aa2d1d8-fff5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T06:30:29", "message_id": "04f04380-fff4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T06:20:29", "message_id": "9f440fe0-fff2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T06:10:29", "message_id": "39949ada-fff1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T06:00:29", "message_id": "d3ecd536-ffef-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T05:50:29", "message_id": "6e457c7a-ffee-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T05:40:29", "message_id": "089e6c7a-ffed-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T05:30:28", "message_id": "a2e728aa-ffeb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T05:20:28", "message_id": "3d2e88a6-ffea-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T05:10:28", "message_id": "d783e074-ffe8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T05:00:28", "message_id": "71d8d3c0-ffe7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T04:50:28", "message_id": "0c1c9d42-ffe6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T04:40:28", "message_id": "a67e09e0-ffe4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T04:30:28", "message_id": "40c1f626-ffe3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T04:20:28", "message_id": "db1c00ec-ffe1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T04:10:28", "message_id": "756cdace-ffe0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T04:00:28", "message_id": "0fb5543c-ffdf-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T03:50:28", "message_id": "aa0c67e8-ffdd-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T03:40:27", "message_id": "4459cbda-ffdc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T03:30:27", "message_id": "deab1196-ffda-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T03:20:27", "message_id": "78fa94d0-ffd9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T03:10:27", "message_id": "134f1f12-ffd8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T03:00:27", "message_id": "ada17f08-ffd6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T02:50:27", "message_id": "47ecbc6e-ffd5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T02:40:27", "message_id": "e23b4fda-ffd3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T02:30:27", "message_id": "7c95d494-ffd2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T02:20:27", "message_id": "1700223e-ffd1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T02:10:27", "message_id": "b129f0d0-ffcf-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T02:00:26", "message_id": "4b858344-ffce-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T01:50:26", "message_id": "e5cfdc62-ffcc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T01:40:26", "message_id": "802181d2-ffcb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T01:30:26", "message_id": "1a72a204-ffca-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T01:20:26", "message_id": "b4ca3422-ffc8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T01:10:26", "message_id": "4f20457c-ffc7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T01:00:26", "message_id": "e96dc0c0-ffc5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T00:50:26", "message_id": "83c346e2-ffc4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T00:40:26", "message_id": "1e177f76-ffc3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T00:30:26", "message_id": "b86587d2-ffc1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T00:20:26", "message_id": "5310ca96-ffc0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T00:10:25", "message_id": "ed05b532-ffbe-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-08T00:00:26", "message_id": "87818b9c-ffbd-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T23:50:25", "message_id": "21b1ebe6-ffbc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T23:40:25", "message_id": "bc07c794-ffba-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T23:30:25", "message_id": "566095ca-ffb9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T23:20:25", "message_id": "f0cc48a4-ffb7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T23:10:25", "message_id": "8b1d40e0-ffb6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T23:00:25", "message_id": "2595692e-ffb5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T22:50:25", "message_id": "bf9006bc-ffb3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T22:40:25", "message_id": "59ede08c-ffb2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T22:30:25", "message_id": "f43dfe9e-ffb0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T22:20:24", "message_id": "8e7e498e-ffaf-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T22:10:24", "message_id": "28e3b132-ffae-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T22:00:24", "message_id": "c329e6a0-ffac-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T21:50:24", "message_id": "5d6c54ac-ffab-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T21:40:24", "message_id": "f7c64a96-ffa9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T21:30:24", "message_id": "921ebad0-ffa8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T21:20:24", "message_id": "2c66d49e-ffa7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T21:10:24", "message_id": "c6aaec22-ffa5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T21:00:24", "message_id": "61055020-ffa4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T20:50:24", "message_id": "fb557d14-ffa2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T20:40:23", "message_id": "95a17d8e-ffa1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T20:30:23", "message_id": "2ff772be-ffa0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T20:20:23", "message_id": "ca49d994-ff9e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T20:10:23", "message_id": "648f0792-ff9d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T20:00:23", "message_id": "fee84b48-ff9b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T19:50:23", "message_id": "9931e756-ff9a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T19:40:23", "message_id": "338b6f4a-ff99-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T19:30:23", "message_id": "cddcaf84-ff97-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T19:20:23", "message_id": "6832758e-ff96-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T19:10:23", "message_id": "028155b2-ff95-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T19:00:23", "message_id": "9cca5f76-ff93-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T18:50:22", "message_id": "37241de8-ff92-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T18:40:22", "message_id": "d1762712-ff90-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T18:30:22", "message_id": "6bb68e22-ff8f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T18:20:22", "message_id": "06062a52-ff8e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T18:10:22", "message_id": "a05b6f2e-ff8c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T18:00:22", "message_id": "3aaf8800-ff8b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T17:50:22", "message_id": "d4ff95a0-ff89-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T17:40:22", "message_id": "6f5732c2-ff88-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T17:30:22", "message_id": "09a68d8e-ff87-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T17:20:22", "message_id": "a3f2bcca-ff85-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T17:10:22", "message_id": "3e4b6e4a-ff84-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T17:00:21", "message_id": "d89060c0-ff82-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T16:50:21", "message_id": "72d8f694-ff81-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T16:40:21", "message_id": "0d2f337c-ff80-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T16:30:21", "message_id": "a78c0a64-ff7e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T16:20:21", "message_id": "41cf5fa6-ff7d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T16:10:21", "message_id": "dc29ba3a-ff7b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T16:00:21", "message_id": "767b2404-ff7a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T15:50:21", "message_id": "10cf3f1a-ff79-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T15:40:21", "message_id": "ab1a8fae-ff77-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T15:30:21", "message_id": "4566e028-ff76-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T15:20:20", "message_id": "dfbac812-ff74-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T15:10:20", "message_id": "7a07ed52-ff73-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T15:00:20", "message_id": "14580d9e-ff72-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T14:50:20", "message_id": "aeab313e-ff70-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T14:40:20", "message_id": "48f9e0f2-ff6f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T14:30:20", "message_id": "e36016b8-ff6d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T14:20:20", "message_id": "7dafd156-ff6c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T14:10:20", "message_id": "17fee0aa-ff6b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T14:00:20", "message_id": "b24f4ca0-ff69-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T13:50:20", "message_id": "4c9cca50-ff68-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T13:40:20", "message_id": "e704be10-ff66-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T13:30:20", "message_id": "814a2958-ff65-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T13:20:19", "message_id": "1b9c1298-ff64-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T13:10:19", "message_id": "b5f2da18-ff62-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T13:00:19", "message_id": "504e0e2c-ff61-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T12:50:19", "message_id": "eaa3d1fc-ff5f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T12:40:19", "message_id": "84ee7c8c-ff5e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T12:30:19", "message_id": "1f44b4ce-ff5d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T12:20:19", "message_id": "b99a0102-ff5b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T12:10:19", "message_id": "53df8c20-ff5a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T12:00:19", "message_id": "ee2db998-ff58-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T11:50:19", "message_id": "88863f30-ff57-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T11:40:19", "message_id": "22db0540-ff56-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T11:30:19", "message_id": "bd2b3e3c-ff54-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T11:20:18", "message_id": "577b1cde-ff53-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T11:10:19", "message_id": "f1e8af2c-ff51-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T11:00:18", "message_id": "8c2f673a-ff50-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T10:50:18", "message_id": "2682ed72-ff4f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T10:40:18", "message_id": "c0deb1b4-ff4d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T10:30:18", "message_id": "5b276510-ff4c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T10:20:18", "message_id": "f57a60e2-ff4a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T10:10:18", "message_id": "8fd8525e-ff49-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T10:00:18", "message_id": "2a33f85a-ff48-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T09:50:18", "message_id": "c472aa58-ff46-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T09:40:18", "message_id": "5ecce002-ff45-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T09:30:18", "message_id": "f90c3e44-ff43-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T09:20:18", "message_id": "936550e0-ff42-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T09:10:17", "message_id": "2db655f6-ff41-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T09:00:17", "message_id": "c7fa840e-ff3f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T08:50:17", "message_id": "624d85bc-ff3e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T08:40:17", "message_id": "fca52dd8-ff3c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T08:30:17", "message_id": "96f2fcd2-ff3b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T08:20:17", "message_id": "31362bb8-ff3a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T08:10:17", "message_id": "cb87028e-ff38-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T08:00:17", "message_id": "65d6292a-ff37-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T07:50:17", "message_id": "00272a80-ff36-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T07:40:16", "message_id": "9a7459b6-ff34-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T07:30:16", "message_id": "34d03586-ff33-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T07:20:16", "message_id": "cf1785d8-ff31-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T07:10:16", "message_id": "6966d64a-ff30-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T07:00:16", "message_id": "03c11338-ff2f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T06:50:16", "message_id": "9e134ea8-ff2d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T06:40:16", "message_id": "38636684-ff2c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T06:30:16", "message_id": "d2aa3d32-ff2a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T06:20:16", "message_id": "6d0c8f9e-ff29-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T06:10:16", "message_id": "0769abdc-ff28-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T06:00:16", "message_id": "a1a9c30a-ff26-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T05:50:16", "message_id": "3c05e872-ff25-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T05:40:15", "message_id": "d648011a-ff23-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T05:30:16", "message_id": "70c134b6-ff22-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T05:20:15", "message_id": "0af52724-ff21-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T05:10:15", "message_id": "a53a16c0-ff1f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T05:00:15", "message_id": "3fa0eaba-ff1e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T04:50:15", "message_id": "d9e4735a-ff1c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T04:40:15", "message_id": "743d7b88-ff1b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T04:30:15", "message_id": "0e9c03d6-ff1a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T04:20:15", "message_id": "a8dcee58-ff18-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T04:10:15", "message_id": "4339042a-ff17-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T04:00:15", "message_id": "dd863892-ff15-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T03:50:15", "message_id": "77ef468c-ff14-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T03:40:14", "message_id": "12301e8a-ff13-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T03:30:14", "message_id": "ac7788b8-ff11-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T03:20:14", "message_id": "46ce51b4-ff10-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T03:10:14", "message_id": "e132dca4-ff0e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T03:00:14", "message_id": "7b70b234-ff0d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T02:50:14", "message_id": "15de5d6e-ff0c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T02:40:14", "message_id": "b02891f2-ff0a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T02:30:14", "message_id": "4a7ac6d2-ff09-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T02:20:14", "message_id": "e4c2ce6c-ff07-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T02:10:14", "message_id": "7f137ad6-ff06-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T02:00:14", "message_id": "1960d3b0-ff05-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T01:50:14", "message_id": "b3c11688-ff03-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T01:40:13", "message_id": "4e05ad64-ff02-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T01:30:13", "message_id": "e85e08f4-ff00-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T01:20:13", "message_id": "82afe4ba-feff-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T01:10:13", "message_id": "1d08a800-fefe-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T01:00:13", "message_id": "b74ba144-fefc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T00:50:13", "message_id": "51a8246c-fefb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T00:40:13", "message_id": "ebfd8d9c-fef9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T00:30:13", "message_id": "863f71a6-fef8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T00:20:13", "message_id": "2091523a-fef7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T00:10:13", "message_id": "bae42f80-fef5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-07T00:00:12", "message_id": "552c16b8-fef4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T23:50:12", "message_id": "ef8f5e7e-fef2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T23:40:12", "message_id": "89df9806-fef1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T23:30:12", "message_id": "243596e6-fef0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T23:20:12", "message_id": "be9717b6-feee-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T23:10:12", "message_id": "58cf1416-feed-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T23:00:12", "message_id": "f36cc70e-feeb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T22:50:12", "message_id": "8d78d448-feea-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T22:40:12", "message_id": "27cdd7c0-fee9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T22:30:12", "message_id": "c2201aba-fee7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T22:20:12", "message_id": "5c68d4a6-fee6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T22:10:12", "message_id": "f6d08c84-fee4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T22:00:12", "message_id": "9139e9d4-fee3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T21:50:11", "message_id": "2b6965e0-fee2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T21:40:12", "message_id": "c5e0f3d8-fee0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T21:30:11", "message_id": "6017d054-fedf-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T21:20:11", "message_id": "fa6aa28c-fedd-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T21:10:11", "message_id": "94b34cf6-fedc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T21:00:11", "message_id": "2efa1de6-fedb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T20:50:11", "message_id": "c956db60-fed9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T20:40:11", "message_id": "63b56ec6-fed8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T20:30:11", "message_id": "fe0149d4-fed6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T20:20:11", "message_id": "987f1326-fed5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T20:10:11", "message_id": "329e207a-fed4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T20:00:11", "message_id": "cd073e6e-fed2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T19:50:10", "message_id": "674f5878-fed1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T19:40:10", "message_id": "01a6be36-fed0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T19:30:10", "message_id": "9bf7a51a-fece-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T19:20:10", "message_id": "364475fa-fecd-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T19:10:10", "message_id": "d09483cc-fecb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T19:00:10", "message_id": "6ad456f8-feca-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T18:50:10", "message_id": "0550d974-fec9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T18:40:10", "message_id": "9f881edc-fec7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T18:30:10", "message_id": "39d213c8-fec6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T18:20:10", "message_id": "d42833be-fec4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T18:10:09", "message_id": "6e74a40e-fec3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T18:00:09", "message_id": "08b94364-fec2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T17:50:09", "message_id": "a31184c8-fec0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T17:40:09", "message_id": "3d6947c4-febf-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T17:30:09", "message_id": "d7b4cbd4-febd-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T17:20:09", "message_id": "720c646e-febc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T17:10:09", "message_id": "0c52619c-febb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T17:00:09", "message_id": "a6a4c0f2-feb9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T16:50:09", "message_id": "40f850bc-feb8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T16:40:09", "message_id": "db41404a-feb6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T16:30:08", "message_id": "75988812-feb5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T16:20:08", "message_id": "0fe54128-feb4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T16:10:08", "message_id": "aa4280d4-feb2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T16:00:08", "message_id": "4494e0fc-feb1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T15:50:08", "message_id": "deddcf90-feaf-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T15:40:08", "message_id": "793bd91c-feae-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T15:30:08", "message_id": "138126c8-fead-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T15:20:08", "message_id": "add6a704-feab-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T15:10:08", "message_id": "4824696a-feaa-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T15:00:08", "message_id": "e27585f0-fea8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T14:50:08", "message_id": "7ccb3156-fea7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T14:40:08", "message_id": "17299dd4-fea6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T14:30:08", "message_id": "b183271c-fea4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T14:20:07", "message_id": "4bd1bc9a-fea3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T14:10:07", "message_id": "e61eaae4-fea1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T14:00:07", "message_id": "808c6136-fea0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T13:50:07", "message_id": "1ad01334-fe9f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T13:40:07", "message_id": "b512a13e-fe9d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T13:30:07", "message_id": "4f65a77e-fe9c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T13:20:07", "message_id": "e9b5b9ce-fe9a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T13:10:07", "message_id": "8404546a-fe99-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T13:00:07", "message_id": "1e5fcdde-fe98-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T12:50:07", "message_id": "b8b47652-fe96-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T12:40:07", "message_id": "53192ef6-fe95-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T12:30:07", "message_id": "ed587384-fe93-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T12:20:06", "message_id": "87a3c170-fe92-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T12:10:06", "message_id": "2201915e-fe91-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T12:00:06", "message_id": "bc52adbc-fe8f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T11:50:06", "message_id": "56a12828-fe8e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T11:40:06", "message_id": "f0ff2dfe-fe8c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T11:30:07", "message_id": "8bd0ba20-fe8b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T11:20:06", "message_id": "25977286-fe8a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T11:10:06", "message_id": "bfe3759e-fe88-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T11:00:06", "message_id": "5a3c6aee-fe87-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T10:50:06", "message_id": "f4907be6-fe85-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T10:40:06", "message_id": "8ee21c7e-fe84-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T10:30:05", "message_id": "292fcd64-fe83-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T10:20:05", "message_id": "c385d720-fe81-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T10:10:05", "message_id": "5dcc3a92-fe80-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T10:00:05", "message_id": "f8237ab2-fe7e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T09:50:05", "message_id": "926fbfce-fe7d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T09:40:05", "message_id": "2cc65030-fe7c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T09:30:05", "message_id": "c71b5fa6-fe7a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T09:20:05", "message_id": "6164cee6-fe79-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T09:10:05", "message_id": "fbbd88ae-fe77-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T09:00:05", "message_id": "960bfc1c-fe76-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T08:50:05", "message_id": "305d31a2-fe75-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T08:40:04", "message_id": "caafefa8-fe73-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T08:30:04", "message_id": "64fe8be8-fe72-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T08:20:04", "message_id": "ff521d92-fe70-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T08:10:04", "message_id": "99a729d4-fe6f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T08:00:04", "message_id": "33f91dbe-fe6e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T07:50:04", "message_id": "ce49c758-fe6c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T07:40:04", "message_id": "68aae8d8-fe6b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T07:30:04", "message_id": "02fb1aa4-fe6a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T07:20:04", "message_id": "9d4f2746-fe68-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T07:10:04", "message_id": "379eb520-fe67-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T07:00:04", "message_id": "d1eed314-fe65-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T06:50:04", "message_id": "6c3e811e-fe64-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T06:40:04", "message_id": "069b2976-fe63-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T06:30:03", "message_id": "a0edeeca-fe61-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T06:20:03", "message_id": "3b386caa-fe60-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T06:10:03", "message_id": "d5842cba-fe5e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T06:00:03", "message_id": "6fd583d8-fe5d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T05:50:03", "message_id": "0a27cde4-fe5c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T05:40:03", "message_id": "a47eebd6-fe5a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T05:30:03", "message_id": "3ec68ade-fe59-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T05:20:03", "message_id": "d91a83c6-fe57-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T05:10:03", "message_id": "7371f334-fe56-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T05:00:03", "message_id": "0dbd8aa4-fe55-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T04:50:02", "message_id": "a80fcdd0-fe53-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T04:40:02", "message_id": "426640c8-fe52-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T04:30:02", "message_id": "dcbdb5d6-fe50-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T04:20:02", "message_id": "77063c96-fe4f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T04:10:02", "message_id": "114d1a74-fe4e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T04:00:02", "message_id": "aba8e988-fe4c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T03:50:02", "message_id": "45f7bb24-fe4b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T03:40:02", "message_id": "e04cc27a-fe49-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T03:30:02", "message_id": "7a9731fa-fe48-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T03:20:02", "message_id": "14e4bc48-fe47-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T03:10:02", "message_id": "af414830-fe45-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T03:00:01", "message_id": "498c6764-fe44-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T02:50:01", "message_id": "e3dbab92-fe42-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T02:40:01", "message_id": "7e2a182a-fe41-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T02:30:01", "message_id": "1888d818-fe40-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T02:20:01", "message_id": "b2dc05ea-fe3e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T02:10:01", "message_id": "4d26dfbe-fe3d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T02:00:01", "message_id": "e77def78-fe3b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T01:50:01", "message_id": "81d10b66-fe3a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T01:40:01", "message_id": "1c2eebf8-fe39-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T01:30:01", "message_id": "b67e53d0-fe37-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T01:20:01", "message_id": "50da0714-fe36-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T01:10:01", "message_id": "eb20909c-fe34-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T01:00:01", "message_id": "8579fbda-fe33-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T00:50:00", "message_id": "1fc10528-fe32-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T00:40:00", "message_id": "ba19ad52-fe30-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T00:30:00", "message_id": "54651e70-fe2f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T00:20:00", "message_id": "eeb471a8-fe2d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T00:10:00", "message_id": "89083f52-fe2c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-06T00:00:00", "message_id": "235b2b3e-fe2b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T23:50:00", "message_id": "bdade1b0-fe29-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T23:40:00", "message_id": "580273f4-fe28-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T23:30:00", "message_id": "f2511354-fe26-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T23:20:00", "message_id": "8cae789e-fe25-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T23:10:00", "message_id": "273a94bc-fe24-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T23:00:00", "message_id": "c18d68c0-fe22-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T22:49:59", "message_id": "5b9655f0-fe21-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T22:39:59", "message_id": "f5e24968-fe1f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T22:29:59", "message_id": "903c61bc-fe1e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T22:19:59", "message_id": "2a90d3da-fe1d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T22:09:59", "message_id": "c4dda3de-fe1b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T21:59:59", "message_id": "5f2de798-fe1a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T21:49:59", "message_id": "f97f2566-fe18-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T21:39:59", "message_id": "93cb976e-fe17-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T21:29:59", "message_id": "2e157c92-fe16-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T21:19:58", "message_id": "c86cf1fa-fe14-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T21:09:58", "message_id": "62bdf36e-fe13-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T20:59:58", "message_id": "fd124f70-fe11-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T20:49:58", "message_id": "9758bd00-fe10-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T20:39:58", "message_id": "31aa082a-fe0f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T20:29:58", "message_id": "cbf9712e-fe0d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T20:19:58", "message_id": "66540380-fe0c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T20:09:58", "message_id": "009de26e-fe0b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T19:59:58", "message_id": "9af3cf38-fe09-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T19:49:58", "message_id": "3546880c-fe08-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T19:39:58", "message_id": "cfa348d8-fe06-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T19:29:58", "message_id": "69efe394-fe05-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T19:19:57", "message_id": "04412dce-fe04-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T19:09:57", "message_id": "9e976688-fe02-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T18:59:57", "message_id": "38e64526-fe01-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T18:49:57", "message_id": "d3351b90-fdff-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T18:39:57", "message_id": "6d8e1284-fdfe-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T18:29:57", "message_id": "07e0ed04-fdfd-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T18:19:57", "message_id": "a236498c-fdfb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T18:09:57", "message_id": "3c95f510-fdfa-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T17:59:57", "message_id": "d6db4ac8-fdf8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T17:49:57", "message_id": "713148d6-fdf7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T17:39:57", "message_id": "0b824572-fdf6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T17:29:57", "message_id": "a5d8385e-fdf4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T17:19:56", "message_id": "4027beb8-fdf3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T17:09:56", "message_id": "da7be964-fdf1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T16:59:56", "message_id": "74ccf960-fdf0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T16:49:56", "message_id": "0f1dc1b8-fdef-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T16:39:56", "message_id": "a97928f8-fded-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T16:29:56", "message_id": "43f39f64-fdec-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T16:19:56", "message_id": "de250e80-fdea-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T16:09:56", "message_id": "7881a30a-fde9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T15:59:56", "message_id": "12d18a30-fde8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T15:49:56", "message_id": "ad295ae2-fde6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T15:39:56", "message_id": "477d6162-fde5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T15:29:56", "message_id": "e1ce9c88-fde3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T15:19:56", "message_id": "7c5002b2-fde2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T15:09:56", "message_id": "16697cd6-fde1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T14:59:55", "message_id": "b0b92126-fddf-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T14:49:55", "message_id": "4b16ce78-fdde-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T14:39:55", "message_id": "e5612bf6-fddc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T14:29:55", "message_id": "7fb5ab20-fddb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T14:19:55", "message_id": "1a068a7a-fdda-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T14:09:55", "message_id": "b45cc744-fdd8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T13:59:55", "message_id": "4ea8a6c6-fdd7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T13:49:55", "message_id": "e8fdc82a-fdd5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T13:39:55", "message_id": "834a1336-fdd4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T13:29:55", "message_id": "1d981aa2-fdd3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T13:19:55", "message_id": "b7e9acbc-fdd1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T13:09:54", "message_id": "523e923e-fdd0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T12:59:54", "message_id": "ec91c81c-fdce-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T12:49:54", "message_id": "86e28462-fdcd-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T12:39:54", "message_id": "21315860-fdcc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T12:29:54", "message_id": "bb81ce2e-fdca-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T12:19:54", "message_id": "55d59be2-fdc9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T12:09:54", "message_id": "f02028fe-fdc7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T11:59:54", "message_id": "8a762d1a-fdc6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T11:49:54", "message_id": "24cb6ec2-fdc5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T11:39:54", "message_id": "bf1fc2c2-fdc3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T11:29:54", "message_id": "596f7e32-fdc2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T11:19:53", "message_id": "f3c59c20-fdc0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T11:09:53", "message_id": "8e16a0d2-fdbf-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T10:59:53", "message_id": "286a6f4e-fdbe-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T10:49:54", "message_id": "c2e5f388-fdbc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T10:39:53", "message_id": "5d0c5a44-fdbb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T10:29:53", "message_id": "f768cd04-fdb9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T10:19:53", "message_id": "91b695aa-fdb8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T10:09:53", "message_id": "2c179420-fdb7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T09:59:53", "message_id": "c669f286-fdb5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T09:49:53", "message_id": "60be4fc8-fdb4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T09:39:53", "message_id": "fb0f1ae6-fdb2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T09:29:53", "message_id": "95641f30-fdb1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T09:19:53", "message_id": "2fb28e0c-fdb0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T09:09:52", "message_id": "c9ffe114-fdae-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T08:59:52", "message_id": "6456a3da-fdad-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T08:49:52", "message_id": "feb7737a-fdab-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T08:39:52", "message_id": "98fc511e-fdaa-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T08:29:52", "message_id": "334c784a-fda9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T08:19:52", "message_id": "cd9bcaa6-fda7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T08:09:52", "message_id": "68082c8a-fda6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T07:59:52", "message_id": "02437356-fda5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T07:49:52", "message_id": "9c917504-fda3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T07:39:52", "message_id": "36e9a01a-fda2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T07:29:52", "message_id": "d13848a8-fda0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T07:19:52", "message_id": "6b8c31a0-fd9f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T07:09:52", "message_id": "06049f62-fd9e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T06:59:51", "message_id": "a028e438-fd9c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T06:49:51", "message_id": "3a7faf78-fd9b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T06:39:51", "message_id": "d4c7018c-fd99-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T06:29:51", "message_id": "6f1bb8f6-fd98-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T06:19:51", "message_id": "0966e8ba-fd97-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T06:09:51", "message_id": "a3bc6dec-fd95-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T05:59:51", "message_id": "3e0fe704-fd94-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T05:49:51", "message_id": "d8615baa-fd92-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T05:39:51", "message_id": "72b2e5f4-fd91-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T05:29:51", "message_id": "0d0fb278-fd90-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T05:19:50", "message_id": "a75dcf24-fd8e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T05:09:50", "message_id": "41a8c694-fd8d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T04:59:50", "message_id": "dc0927d0-fd8b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T04:49:50", "message_id": "76668f0e-fd8a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T04:39:50", "message_id": "10c58eda-fd89-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T04:29:50", "message_id": "ab18cc38-fd87-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T04:19:50", "message_id": "45518558-fd86-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T04:09:50", "message_id": "dfbd6d34-fd84-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T03:59:50", "message_id": "79d49084-fd83-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T03:49:50", "message_id": "1445209a-fd82-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T03:39:50", "message_id": "ae9db8b6-fd80-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T03:29:50", "message_id": "48f9a426-fd7f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T03:19:50", "message_id": "e358846c-fd7d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T03:09:50", "message_id": "7da4bcc2-fd7c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T02:59:49", "message_id": "17db6dec-fd7b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T02:49:49", "message_id": "b21cdcf8-fd79-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T02:39:49", "message_id": "4cadde4a-fd78-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T02:29:49", "message_id": "e6ef5404-fd76-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T02:19:49", "message_id": "814a76ca-fd75-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T02:09:49", "message_id": "1b95c498-fd74-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T01:59:49", "message_id": "b5d497ac-fd72-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T01:49:49", "message_id": "50291f3c-fd71-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T01:39:49", "message_id": "ea869340-fd6f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T01:29:49", "message_id": "8503bfe4-fd6e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T01:19:49", "message_id": "1f64e7ae-fd6d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T01:09:49", "message_id": "b9a1a0ca-fd6b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T00:59:48", "message_id": "53da616a-fd6a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T00:49:48", "message_id": "ee1b6a82-fd68-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T00:39:48", "message_id": "88828a1c-fd67-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T00:29:48", "message_id": "22db5988-fd66-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T00:19:48", "message_id": "bd36cd52-fd64-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-05T00:09:48", "message_id": "57a7846e-fd63-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-04T23:59:48", "message_id": "f1fe2c68-fd61-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-04T23:49:48", "message_id": "8c38ca06-fd60-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-04T23:39:05", "message_id": "0cfd33e0-fd5f-11e2-b8cf-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "931dc699f9934021bb4a2b1088ba4d3b", "timestamp": "2013-08-04T23:29:05", "message_id": "a768f72c-fd5d-11e2-b8cf-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {}, "counter_type": "gauge"}]} \ No newline at end of file diff --git a/tests/data/map_fixture_2.json b/tests/data/map_fixture_2.json new file mode 100644 index 0000000..43ee60f --- /dev/null +++ b/tests/data/map_fixture_2.json @@ -0,0 +1 @@ +{"http://localhost:8777/v2/meters/instance?q.field=resource_id&q.value=0a16330b-d457-425d-8249-a275fab9adea": [{"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-12T04:00:31.245000", "message_id": "bb56b9ee-0303-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-12 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-12T04:00:31.245000", "message_id": "bb56b9ee-0303-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-12 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-12T04:00:31.245000", "message_id": "bb56b9ee-0303-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-12 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-12T04:00:31.245000", "message_id": "bb56b9ee-0303-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-12 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-12T03:00:51.472000", "message_id": "65a420b6-02fb-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-12 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-12T03:00:51.472000", "message_id": "65a420b6-02fb-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-12 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-12T03:00:51.472000", "message_id": "65a420b6-02fb-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-12 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-12T03:00:51.472000", "message_id": "65a420b6-02fb-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-12 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-12T02:00:27.736000", "message_id": "f5b2e362-02f2-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-12 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-12T02:00:27.736000", "message_id": "f5b2e362-02f2-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-12 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-12T02:00:27.736000", "message_id": "f5b2e362-02f2-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-12 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-12T02:00:27.736000", "message_id": "f5b2e362-02f2-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-12 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-12T02:00:27.736000", "message_id": "f5b2e362-02f2-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-12 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-12T01:00:47.126000", "message_id": "9f87558e-02ea-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-12 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-12T00:00:24.830000", "message_id": "306f2332-02e2-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-12T00:00:24.830000", "message_id": "306f2332-02e2-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-12T00:00:24.830000", "message_id": "306f2332-02e2-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-12T00:00:24.830000", "message_id": "306f2332-02e2-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-12T00:00:24.830000", "message_id": "306f2332-02e2-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-11T23:00:42.366000", "message_id": "d91b58f6-02d9-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-11T22:00:21.085000", "message_id": "6aabbbb6-02d1-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-11T21:00:30.082000", "message_id": "0e4f9e8a-02c9-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-11T20:00:18.172000", "message_id": "a564be44-02c0-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-11T19:00:11.861000", "message_id": "3fdb6120-02b8-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-11T18:00:03.078000", "message_id": "d8e13736-02af-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-11T18:00:03.078000", "message_id": "d8e13736-02af-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-11T18:00:03.078000", "message_id": "d8e13736-02af-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-11T18:00:03.078000", "message_id": "d8e13736-02af-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-11T17:00:49.790000", "message_id": "92f77d5a-02a7-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-11T16:00:45.755000", "message_id": "2eb90622-029f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-11T15:00:36.758000", "message_id": "c7a3ecfc-0296-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-11T15:00:36.758000", "message_id": "c7a3ecfc-0296-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-11T15:00:36.758000", "message_id": "c7a3ecfc-0296-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-11T15:00:36.758000", "message_id": "c7a3ecfc-0296-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-11T15:00:36.758000", "message_id": "c7a3ecfc-0296-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-11T14:00:28.007000", "message_id": "60b7ac7a-028e-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-11T13:00:20.296000", "message_id": "fa4eca3e-0285-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-11T13:00:20.296000", "message_id": "fa4eca3e-0285-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-11T13:00:20.296000", "message_id": "fa4eca3e-0285-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-11T13:00:20.296000", "message_id": "fa4eca3e-0285-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-11T13:00:20.296000", "message_id": "fa4eca3e-0285-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-11T12:00:11.600000", "message_id": "9360bb78-027d-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-11T11:00:02.954000", "message_id": "2c74ae68-0275-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-11T11:00:02.954000", "message_id": "2c74ae68-0275-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-11T11:00:02.954000", "message_id": "2c74ae68-0275-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-11T11:00:02.954000", "message_id": "2c74ae68-0275-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-11T10:00:29.428000", "message_id": "da73221e-026c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-11T09:00:26.387000", "message_id": "76d931e2-0264-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-11T09:00:26.387000", "message_id": "76d931e2-0264-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-11T09:00:26.387000", "message_id": "76d931e2-0264-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-11T09:00:26.387000", "message_id": "76d931e2-0264-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-11T08:00:23.284000", "message_id": "13469f5a-025c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-11T07:00:19.905000", "message_id": "af71bf76-0253-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-11T06:00:16.497000", "message_id": "4bb9097e-024b-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-11T05:00:05.353000", "message_id": "e346d202-0242-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-11T04:00:09.262000", "message_id": "83d0d46a-023a-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-11T03:00:02.197000", "message_id": "1ddb3734-0232-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-11T02:00:02.936000", "message_id": "bc7d73e2-0229-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-11T01:00:00.685000", "message_id": "596fc294-0221-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-11T00:00:59.549000", "message_id": "1ac05a52-0219-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-10T23:00:57.127000", "message_id": "b78303ca-0210-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-10T23:00:57.127000", "message_id": "b78303ca-0210-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-10T23:00:57.127000", "message_id": "b78303ca-0210-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-10T23:00:57.127000", "message_id": "b78303ca-0210-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-10T23:00:57.127000", "message_id": "b78303ca-0210-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-10T22:00:51.301000", "message_id": "523d9db6-0208-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-10T22:00:51.301000", "message_id": "523d9db6-0208-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-10T22:00:51.301000", "message_id": "523d9db6-0208-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-10T22:00:51.301000", "message_id": "523d9db6-0208-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-10T22:00:51.301000", "message_id": "523d9db6-0208-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-10T21:00:44.073000", "message_id": "ec456942-01ff-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-10T20:00:38.932000", "message_id": "875fa2c0-01f7-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-10T19:00:35.383000", "message_id": "23816d40-01ef-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-10T18:00:31.970000", "message_id": "bfb09b90-01e6-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-10T17:00:28.473000", "message_id": "5becd964-01de-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-10T16:00:25.527000", "message_id": "f85005c8-01d5-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-10T16:00:25.527000", "message_id": "f85005c8-01d5-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-10T16:00:25.527000", "message_id": "f85005c8-01d5-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-10T16:00:25.527000", "message_id": "f85005c8-01d5-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-10T16:00:25.527000", "message_id": "f85005c8-01d5-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-10T15:00:22.302000", "message_id": "94a84aa6-01cd-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-10T14:00:19.221000", "message_id": "310846fc-01c5-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-10T13:00:15.758000", "message_id": "cd319a3c-01bc-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-10T12:00:04.343000", "message_id": "64afdb20-01b4-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-10T11:00:00.358000", "message_id": "00745ecc-01ac-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-10T10:00:57.892000", "message_id": "c10cc5a6-01a3-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-10T10:00:57.892000", "message_id": "c10cc5a6-01a3-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-10T10:00:57.892000", "message_id": "c10cc5a6-01a3-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-10T09:00:54.347000", "message_id": "5d2dbdd6-019b-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-10T09:00:54.347000", "message_id": "5d2dbdd6-019b-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-10T08:00:51.401000", "message_id": "f99f007a-0192-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-10T07:00:47.712000", "message_id": "95a5278c-018a-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-10T07:00:47.712000", "message_id": "95a5278c-018a-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-10T06:00:44.587000", "message_id": "31f80c84-0182-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-10T05:00:41.414000", "message_id": "ce5ce936-0179-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-10T04:00:38.572000", "message_id": "6aea43ba-0171-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-10T03:00:35.153000", "message_id": "07123832-0169-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-10T02:00:32.271000", "message_id": "a3a2c09e-0160-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-10T02:00:32.271000", "message_id": "a3a2c09e-0160-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-10T02:00:32.271000", "message_id": "a3a2c09e-0160-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-10T02:00:32.271000", "message_id": "a3a2c09e-0160-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-10T02:00:32.271000", "message_id": "a3a2c09e-0160-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-10T01:00:28.585000", "message_id": "3fa2fabc-0158-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-10T01:00:28.585000", "message_id": "3fa2fabc-0158-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-10T01:00:28.585000", "message_id": "3fa2fabc-0158-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-10T01:00:28.585000", "message_id": "3fa2fabc-0158-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-10T00:00:24.334000", "message_id": "db4c1128-014f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-09T23:00:20.607000", "message_id": "7759750a-0147-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-09T22:00:17.081000", "message_id": "13794acc-013f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-09T21:00:13.526000", "message_id": "af93ab40-0136-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-09T20:00:10.467000", "message_id": "4c0bd99c-012e-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-09T20:00:10.467000", "message_id": "4c0bd99c-012e-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-09T20:00:10.467000", "message_id": "4c0bd99c-012e-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-09T20:00:10.467000", "message_id": "4c0bd99c-012e-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-09T19:00:07.100000", "message_id": "e8329bca-0125-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-09T18:00:05.458000", "message_id": "856b99d6-011d-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-09T17:00:01.599000", "message_id": "216c7930-0115-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-09T16:00:59.829000", "message_id": "e2643c12-010c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-09T15:00:53.235000", "message_id": "7cb14fde-0104-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-09T14:00:42.388000", "message_id": "1476f1d8-00fc-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-09T13:00:32.052000", "message_id": "ac897170-00f3-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-09T12:00:21.755000", "message_id": "44952bca-00eb-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-09T12:00:21.755000", "message_id": "44952bca-00eb-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-09T12:00:21.755000", "message_id": "44952bca-00eb-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-09T12:00:21.755000", "message_id": "44952bca-00eb-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-09T11:00:11.814000", "message_id": "dcda290c-00e2-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-09T10:00:02.105000", "message_id": "756cc94e-00da-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-09T10:00:02.105000", "message_id": "756cc94e-00da-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-09T09:00:53.801000", "message_id": "32685cf6-00d2-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-09T08:00:44.870000", "message_id": "cb483b98-00c9-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-09T07:00:35.725000", "message_id": "6412b6c2-00c1-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-09T07:00:35.725000", "message_id": "6412b6c2-00c1-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-09T07:00:35.725000", "message_id": "6412b6c2-00c1-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-09T07:00:35.725000", "message_id": "6412b6c2-00c1-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-09T07:00:35.725000", "message_id": "6412b6c2-00c1-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-09T06:00:27.607000", "message_id": "fd71881a-00b8-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-09T05:00:17.975000", "message_id": "95f7cd50-00b0-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-09T04:00:02.450000", "message_id": "2ae2b190-00a8-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-09T03:00:53.145000", "message_id": "e755e1ac-009f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-09T02:00:37.428000", "message_id": "7c4e75f2-0097-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-09T02:00:37.428000", "message_id": "7c4e75f2-0097-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-09T01:00:27.002000", "message_id": "143f70d6-008f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-09T00:00:17.161000", "message_id": "acaab564-0086-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-08T23:00:07.694000", "message_id": "4537c384-007e-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-08T22:01:01.459000", "message_id": "0388b93c-0076-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-08T22:01:01.459000", "message_id": "0388b93c-0076-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-08T22:01:01.459000", "message_id": "0388b93c-0076-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-08T21:00:52.407000", "message_id": "9c5539dc-006d-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-08T20:00:43.635000", "message_id": "356ef576-0065-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-08T19:00:36.916000", "message_id": "cf997df0-005c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-08T18:00:29.499000", "message_id": "6961228e-0054-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-08T17:00:22.479000", "message_id": "037519ec-004c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-08T16:00:14.093000", "message_id": "9cad34d6-0043-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-08T15:00:07.875000", "message_id": "373b6062-003b-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-08T14:01:00.824000", "message_id": "f4f41616-0032-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-08T13:00:51.788000", "message_id": "8de911ae-002a-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-08T12:00:42.737000", "message_id": "26ad0962-0022-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-08T11:00:35.894000", "message_id": "c0d18ba2-0019-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-08T10:00:28.588000", "message_id": "5abc8ac2-0011-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-08T09:00:25.735000", "message_id": "f73f73a4-0008-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-08T08:00:23.364000", "message_id": "940d0f60-0000-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-08T07:00:21.413000", "message_id": "312b76a0-fff8-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-08T06:00:19.476000", "message_id": "ce43f470-ffef-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-08T05:00:17.635000", "message_id": "6b531c54-ffe7-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-08T04:00:16.052000", "message_id": "08a7569a-ffdf-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-08T04:00:16.052000", "message_id": "08a7569a-ffdf-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-08T04:00:16.052000", "message_id": "08a7569a-ffdf-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-08T04:00:16.052000", "message_id": "08a7569a-ffdf-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-08T03:00:14.027000", "message_id": "a5ac1740-ffd6-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-08T02:00:12.238000", "message_id": "42db0818-ffce-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-08T01:00:10.311000", "message_id": "dfedb078-ffc5-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-08T00:00:08.769000", "message_id": "7d39d766-ffbd-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-08T00:00:08.769000", "message_id": "7d39d766-ffbd-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-08T00:00:08.769000", "message_id": "7d39d766-ffbd-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-08T00:00:08.769000", "message_id": "7d39d766-ffbd-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-08T00:00:08.769000", "message_id": "7d39d766-ffbd-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-07T23:00:04.027000", "message_id": "18af4bf8-ffb5-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-07T23:00:04.027000", "message_id": "18af4bf8-ffb5-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-07T23:00:04.027000", "message_id": "18af4bf8-ffb5-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-07T22:00:01.488000", "message_id": "b5484158-ffac-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-07T21:00:58.494000", "message_id": "758be73e-ffa4-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-07T20:00:55.879000", "message_id": "1251a198-ff9c-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-07T19:00:51.239000", "message_id": "adaf29fc-ff93-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-07T18:00:49.736000", "message_id": "4b16c3c0-ff8b-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-07T17:00:47.622000", "message_id": "e7ff9ada-ff82-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-07T16:00:45.380000", "message_id": "84e11e68-ff7a-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-07T16:00:45.380000", "message_id": "84e11e68-ff7a-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-07T16:00:45.380000", "message_id": "84e11e68-ff7a-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-07T16:00:45.380000", "message_id": "84e11e68-ff7a-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-07T16:00:45.380000", "message_id": "84e11e68-ff7a-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-07T15:00:43.144000", "message_id": "21dbc9c4-ff72-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-07T14:00:40.910000", "message_id": "beb6da62-ff69-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-07T13:00:38.123000", "message_id": "5b41c666-ff61-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-07T12:00:35.684000", "message_id": "f8147c6c-ff58-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-07T11:00:33.218000", "message_id": "94ddafea-ff50-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-07T10:00:29.002000", "message_id": "30930a7e-ff48-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-07T09:00:26.254000", "message_id": "cd2b7438-ff3f-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-07T08:00:23.839000", "message_id": "69e93c64-ff37-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-07T08:00:23.839000", "message_id": "69e93c64-ff37-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-07T07:00:21.779000", "message_id": "06f20fd0-ff2f-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-07T06:00:16.470000", "message_id": "a1f75584-ff26-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-07T05:00:13.200000", "message_id": "3e4dbd78-ff1e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-07T05:00:13.200000", "message_id": "3e4dbd78-ff1e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-07T05:00:13.200000", "message_id": "3e4dbd78-ff1e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-07T05:00:13.200000", "message_id": "3e4dbd78-ff1e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-07T05:00:13.200000", "message_id": "3e4dbd78-ff1e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-07T04:00:10.601000", "message_id": "daf65440-ff15-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-07T04:00:10.601000", "message_id": "daf65440-ff15-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-07T04:00:10.601000", "message_id": "daf65440-ff15-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-07T04:00:10.601000", "message_id": "daf65440-ff15-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-07T04:00:10.601000", "message_id": "daf65440-ff15-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-07T03:00:06.901000", "message_id": "76fb83a0-ff0d-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-07T02:00:04.058000", "message_id": "13923910-ff05-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-07T01:00:02.024000", "message_id": "b08d6928-fefc-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-07T00:00:01.305000", "message_id": "4e61019a-fef4-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-06T23:00:36.507000", "message_id": "018d29fa-feec-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-06T22:00:00.380000", "message_id": "8a46ae0a-fee3-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-06T21:00:12.977000", "message_id": "300950ee-fedb-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-06T20:00:01.723000", "message_id": "c790e94e-fed2-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-06T19:00:52.391000", "message_id": "840073a0-feca-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-06T19:00:52.391000", "message_id": "840073a0-feca-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-06T19:00:52.391000", "message_id": "840073a0-feca-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-06T19:00:52.391000", "message_id": "840073a0-feca-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-06T18:00:46.021000", "message_id": "1e65456e-fec2-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-06T17:00:34.491000", "message_id": "b5cd3bf4-feb9-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-06T16:00:25.336000", "message_id": "4e94748c-feb1-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-06T15:00:16.324000", "message_id": "e768c5ea-fea8-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-06T14:00:07.371000", "message_id": "804fd31a-fea0-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-06T13:01:00.235000", "message_id": "3e0e83d2-fe98-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-06T12:00:51.015000", "message_id": "d6c708be-fe8f-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-06T11:00:42.301000", "message_id": "6fc726e2-fe87-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-06T10:00:33.269000", "message_id": "08ac8298-fe7f-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-06T09:00:25.758000", "message_id": "a264f702-fe76-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-06T09:00:25.758000", "message_id": "a264f702-fe76-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-06T09:00:25.758000", "message_id": "a264f702-fe76-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-06T09:00:25.758000", "message_id": "a264f702-fe76-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-06T09:00:25.758000", "message_id": "a264f702-fe76-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-06T08:00:15.508000", "message_id": "3a9106be-fe6e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-06T07:00:06.848000", "message_id": "d39d96b4-fe65-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-06T06:00:59.291000", "message_id": "911da764-fe5d-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-06T05:00:49.947000", "message_id": "29ca90b6-fe55-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-06T04:00:41.580000", "message_id": "c319c268-fe4c-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-06T03:00:32.625000", "message_id": "5befa16e-fe44-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-06T03:00:32.625000", "message_id": "5befa16e-fe44-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-06T03:00:32.625000", "message_id": "5befa16e-fe44-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-06T02:00:23.233000", "message_id": "f4954c06-fe3b-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-06T01:00:14.193000", "message_id": "8d542d1c-fe33-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-06T00:00:05.718000", "message_id": "26910472-fe2b-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-05T23:00:59.003000", "message_id": "e483367a-fe22-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-05T22:04:25.488000", "message_id": "fdce809c-fe1a-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.create.end", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "message": "Success", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.234146", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-05T22:04:25.312000", "message_id": "fdb32112-fe1a-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.update", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "old_state": "building", "old_task_state": "spawning", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05T22:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 22:04:16", "launched_at": "2013-08-05T22:04:25.234146", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "None", "audit_period_ending": "2013-08-05T22:04:25.308737", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-05T22:04:19.675000", "message_id": "fa56dc16-fe1a-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "spawning", "event_type": "compute.instance.update", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "building", "old_state": "None", "old_task_state": "None", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05T22:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 22:04:16", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "spawning", "audit_period_ending": "2013-08-05T22:04:19.672662", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-05T22:04:18.771000", "message_id": "f9d25112-fe1a-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "spawning", "event_type": "compute.instance.update", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "building", "old_state": "building", "old_task_state": "block_device_mapping", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05T22:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 22:04:16", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "spawning", "audit_period_ending": "2013-08-05T22:04:18.769031", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-05T22:04:17.888000", "message_id": "f94837fc-fe1a-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "block_device_mapping", "event_type": "compute.instance.update", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "building", "old_state": "building", "old_task_state": "networking", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05T22:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 22:04:16", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "block_device_mapping", "audit_period_ending": "2013-08-05T22:04:17.883335", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-05T22:04:17.644000", "message_id": "f92990f4-fe1a-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "networking", "event_type": "compute.instance.update", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "building", "old_state": "building", "old_task_state": "None", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05T22:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 22:04:16", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "networking", "audit_period_ending": "2013-08-05T22:04:17.642197", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-05T22:04:17.496000", "message_id": "f9173468-fe1a-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.update", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "building", "old_state": "None", "old_task_state": "None", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05T22:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 22:04:16", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "None", "audit_period_ending": "2013-08-05T22:04:17.490382", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-05T22:04:17.496000", "message_id": "f9173468-fe1a-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.update", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "building", "old_state": "None", "old_task_state": "None", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05T22:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 22:04:16", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "None", "audit_period_ending": "2013-08-05T22:04:17.490382", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-05T22:04:17.334000", "message_id": "f8fe4d04-fe1a-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "scheduling", "event_type": "compute.instance.create.start", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "message": "", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "display_name": "trogtwo", "hostname": "trogtwo", "state": "building", "launched_at": "", "node": "None", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "user_id": "2b8fbe55863d4dfab5310796202b2019", "image_ref_url": "http://10.0.2.15:9292/images/", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-05T22:04:17.297000", "message_id": "f8ec76a6-fe1a-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.update", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "building", "old_state": "building", "old_task_state": "scheduling", "node": "None", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05T22:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 22:04:16", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "None", "audit_period_ending": "2013-08-05T22:04:17.295213", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-05T22:04:17.297000", "message_id": "f8ec76a6-fe1a-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.update", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "building", "old_state": "building", "old_task_state": "scheduling", "node": "None", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05T22:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 22:04:16", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "None", "audit_period_ending": "2013-08-05T22:04:17.295213", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-05T22:04:16.897000", "message_id": "f8af0834-fe1a-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "scheduling", "event_type": "compute.instance.update", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "building", "old_state": "None", "old_task_state": "None", "node": "None", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "api.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05T22:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 22:04:16.779537", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "scheduling", "audit_period_ending": "2013-08-05T22:04:16.894089", "os_type": "None"}, "counter_type": "gauge"}], "http://localhost:8777/v2/meters/memory?q.field=resource_id&q.value=0a16330b-d457-425d-8249-a275fab9adea": [{"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-12T04:00:31.245000", "message_id": "bb40d5e8-0303-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-12 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-12T03:00:51.472000", "message_id": "658a3688-02fb-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-12 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-12T03:00:51.472000", "message_id": "658a3688-02fb-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-12 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-12T03:00:51.472000", "message_id": "658a3688-02fb-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-12 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-12T02:00:27.736000", "message_id": "f5a07498-02f2-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-12 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-12T01:00:47.126000", "message_id": "9f6a9520-02ea-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-12 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-12T00:00:24.830000", "message_id": "305c0ebe-02e2-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-11T23:00:42.366000", "message_id": "d90c5108-02d9-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-11T23:00:42.366000", "message_id": "d90c5108-02d9-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-11T23:00:42.366000", "message_id": "d90c5108-02d9-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-11T22:00:21.085000", "message_id": "6a98bc0a-02d1-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-11T21:00:30.082000", "message_id": "0e2f583c-02c9-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-11T21:00:30.082000", "message_id": "0e2f583c-02c9-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-11T20:00:18.172000", "message_id": "a552845e-02c0-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-11T19:00:11.861000", "message_id": "3fcacbc6-02b8-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-11T18:00:03.078000", "message_id": "d8cb1564-02af-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-11T17:00:49.790000", "message_id": "92ddf75e-02a7-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-11T17:00:49.790000", "message_id": "92ddf75e-02a7-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-11T17:00:49.790000", "message_id": "92ddf75e-02a7-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-11T16:00:45.755000", "message_id": "2eb519ae-029f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-11T15:00:36.758000", "message_id": "c790355e-0296-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-11T15:00:36.758000", "message_id": "c790355e-0296-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-11T15:00:36.758000", "message_id": "c790355e-0296-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-11T15:00:36.758000", "message_id": "c790355e-0296-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-11T14:00:28.007000", "message_id": "6095a12a-028e-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-11T13:00:20.296000", "message_id": "fa3964e6-0285-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-11T12:00:11.600000", "message_id": "934678c6-027d-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-11T11:00:02.954000", "message_id": "2c590ad2-0275-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-11T10:00:29.428000", "message_id": "da5d0bfa-026c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-11T09:00:26.387000", "message_id": "76c75bca-0264-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-11T08:00:23.284000", "message_id": "132abeac-025c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-11T07:00:19.905000", "message_id": "af628bc8-0253-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-11T07:00:19.905000", "message_id": "af628bc8-0253-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-11T06:00:16.497000", "message_id": "4b95d54e-024b-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-11T05:00:05.353000", "message_id": "e32d73de-0242-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-11T04:00:09.262000", "message_id": "83bc11c4-023a-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-11T03:00:02.197000", "message_id": "1dc14c52-0232-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-11T02:00:02.936000", "message_id": "bc6df854-0229-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-11T01:00:00.685000", "message_id": "595370b2-0221-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-11T00:00:59.549000", "message_id": "1aa3ddaa-0219-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-10T23:00:57.127000", "message_id": "b76df412-0210-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-10T22:00:51.301000", "message_id": "52308928-0208-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-10T21:00:44.073000", "message_id": "ec1d2a5e-01ff-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-10T20:00:38.932000", "message_id": "874a1450-01f7-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-10T19:00:35.383000", "message_id": "2367d132-01ef-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-10T18:00:31.970000", "message_id": "bf98937e-01e6-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-10T18:00:31.970000", "message_id": "bf98937e-01e6-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-10T18:00:31.970000", "message_id": "bf98937e-01e6-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-10T17:00:28.473000", "message_id": "5bc813a4-01de-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-10T16:00:25.527000", "message_id": "f83a5fac-01d5-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-10T15:00:22.302000", "message_id": "94894782-01cd-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-10T15:00:22.302000", "message_id": "94894782-01cd-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-10T15:00:22.302000", "message_id": "94894782-01cd-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-10T15:00:22.302000", "message_id": "94894782-01cd-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-10T14:00:19.221000", "message_id": "30ef6358-01c5-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-10T14:00:19.221000", "message_id": "30ef6358-01c5-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-10T14:00:19.221000", "message_id": "30ef6358-01c5-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-10T14:00:19.221000", "message_id": "30ef6358-01c5-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-10T13:00:15.758000", "message_id": "cd1a0232-01bc-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-10T12:00:04.343000", "message_id": "6487f790-01b4-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-10T11:00:00.358000", "message_id": "00639eca-01ac-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-10T10:00:57.892000", "message_id": "c0ea3004-01a3-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-10T09:00:54.347000", "message_id": "5d085abe-019b-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-10T09:00:54.347000", "message_id": "5d085abe-019b-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-10T09:00:54.347000", "message_id": "5d085abe-019b-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-10T09:00:54.347000", "message_id": "5d085abe-019b-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-10T08:00:51.401000", "message_id": "f982d8be-0192-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-10T07:00:47.712000", "message_id": "958cb738-018a-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-10T06:00:44.587000", "message_id": "31ea9216-0182-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-10T05:00:41.414000", "message_id": "ce41a7ac-0179-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-10T04:00:38.572000", "message_id": "6acb5e64-0171-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-10T03:00:35.153000", "message_id": "06fd3b58-0169-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-10T02:00:32.271000", "message_id": "a3805612-0160-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-10T01:00:28.585000", "message_id": "3f8b2b9e-0158-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-10T00:00:24.334000", "message_id": "db3c7600-014f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-09T23:00:20.607000", "message_id": "773f7196-0147-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-09T22:00:17.081000", "message_id": "1360e86a-013f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-09T21:00:13.526000", "message_id": "af7eb73a-0136-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-09T20:00:10.467000", "message_id": "4be904a8-012e-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-09T19:00:07.100000", "message_id": "e8207d78-0125-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-09T18:00:05.458000", "message_id": "85698484-011d-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-09T17:00:01.599000", "message_id": "2151606e-0115-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-09T16:00:59.829000", "message_id": "e2436dde-010c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-09T15:00:53.235000", "message_id": "7c930dd0-0104-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-09T15:00:53.235000", "message_id": "7c930dd0-0104-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-09T14:00:42.388000", "message_id": "1453668c-00fc-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-09T13:00:32.052000", "message_id": "ac66be82-00f3-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-09T12:00:21.755000", "message_id": "447ea47c-00eb-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-09T11:00:11.814000", "message_id": "dccce2ec-00e2-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-09T10:00:02.105000", "message_id": "7541c5a0-00da-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-09T09:00:53.801000", "message_id": "326607a8-00d2-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-09T08:00:44.870000", "message_id": "cb33915c-00c9-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-09T07:00:35.725000", "message_id": "63fbf57c-00c1-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-09T06:00:27.607000", "message_id": "fd621c86-00b8-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-09T06:00:27.607000", "message_id": "fd621c86-00b8-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-09T05:00:17.975000", "message_id": "95e33e26-00b0-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-09T04:00:02.450000", "message_id": "2ad8b064-00a8-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-09T04:00:02.450000", "message_id": "2ad8b064-00a8-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-09T04:00:02.450000", "message_id": "2ad8b064-00a8-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-09T04:00:02.450000", "message_id": "2ad8b064-00a8-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-09T03:00:53.145000", "message_id": "e74e50ea-009f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-09T02:00:37.428000", "message_id": "7c2dc65e-0097-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-09T01:00:27.002000", "message_id": "142e6f2a-008f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-09T00:00:17.161000", "message_id": "ac8d4894-0086-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-08T23:00:07.694000", "message_id": "45240df8-007e-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-08T22:01:01.459000", "message_id": "036cc362-0076-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-08T21:00:52.407000", "message_id": "9c40aa26-006d-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-08T21:00:52.407000", "message_id": "9c40aa26-006d-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-08T21:00:52.407000", "message_id": "9c40aa26-006d-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-08T21:00:52.407000", "message_id": "9c40aa26-006d-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-08T20:00:43.635000", "message_id": "354475da-0065-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-08T19:00:36.916000", "message_id": "cf7c0c48-005c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-08T19:00:36.916000", "message_id": "cf7c0c48-005c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-08T19:00:36.916000", "message_id": "cf7c0c48-005c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-08T19:00:36.916000", "message_id": "cf7c0c48-005c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-08T18:00:29.499000", "message_id": "694c6db2-0054-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-08T17:00:22.479000", "message_id": "0358b842-004c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-08T16:00:14.093000", "message_id": "9c951c84-0043-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-08T16:00:14.093000", "message_id": "9c951c84-0043-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-08T15:00:07.875000", "message_id": "371ce5f6-003b-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-08T14:01:00.824000", "message_id": "f4f1700a-0032-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-08T13:00:51.788000", "message_id": "8dc73520-002a-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-08T12:00:42.737000", "message_id": "26961ebe-0022-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-08T11:00:35.894000", "message_id": "c0bcafc0-0019-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-08T11:00:35.894000", "message_id": "c0bcafc0-0019-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-08T11:00:35.894000", "message_id": "c0bcafc0-0019-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-08T11:00:35.894000", "message_id": "c0bcafc0-0019-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-08T10:00:28.588000", "message_id": "5a9e18b2-0011-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-08T10:00:28.588000", "message_id": "5a9e18b2-0011-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-08T10:00:28.588000", "message_id": "5a9e18b2-0011-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-08T10:00:28.588000", "message_id": "5a9e18b2-0011-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-08T09:00:25.735000", "message_id": "f726d326-0008-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-08T09:00:25.735000", "message_id": "f726d326-0008-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-08T09:00:25.735000", "message_id": "f726d326-0008-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-08T09:00:25.735000", "message_id": "f726d326-0008-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-08T09:00:25.735000", "message_id": "f726d326-0008-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-08T08:00:23.364000", "message_id": "93f83112-0000-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-08T07:00:21.413000", "message_id": "310a91f6-fff8-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-08T07:00:21.413000", "message_id": "310a91f6-fff8-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-08T07:00:21.413000", "message_id": "310a91f6-fff8-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-08T06:00:19.476000", "message_id": "ce1dc692-ffef-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-08T06:00:19.476000", "message_id": "ce1dc692-ffef-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-08T06:00:19.476000", "message_id": "ce1dc692-ffef-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-08T05:00:17.635000", "message_id": "6b426c74-ffe7-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-08T04:00:16.052000", "message_id": "088be4a0-ffdf-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-08T04:00:16.052000", "message_id": "088be4a0-ffdf-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-08T04:00:16.052000", "message_id": "088be4a0-ffdf-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-08T03:00:14.027000", "message_id": "a5917afc-ffd6-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-08T03:00:14.027000", "message_id": "a5917afc-ffd6-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-08T02:00:12.238000", "message_id": "42be76ee-ffce-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-08T02:00:12.238000", "message_id": "42be76ee-ffce-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-08T01:00:10.311000", "message_id": "dfd78a14-ffc5-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-08T00:00:08.769000", "message_id": "7d21fa2e-ffbd-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-07T23:00:04.027000", "message_id": "188b3d58-ffb5-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-07T22:00:01.488000", "message_id": "b5459caa-ffac-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-07T21:00:58.494000", "message_id": "757a0528-ffa4-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-07T20:00:55.879000", "message_id": "1225fb10-ff9c-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-07T19:00:51.239000", "message_id": "ada12dca-ff93-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-07T18:00:49.736000", "message_id": "4af3d75c-ff8b-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-07T18:00:49.736000", "message_id": "4af3d75c-ff8b-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-07T17:00:47.622000", "message_id": "e7eb3a9a-ff82-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-07T16:00:45.380000", "message_id": "84d24eec-ff7a-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-07T15:00:43.144000", "message_id": "21b825b4-ff72-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-07T14:00:40.910000", "message_id": "be9f14ae-ff69-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-07T13:00:38.123000", "message_id": "5b303f68-ff61-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-07T12:00:35.684000", "message_id": "f7f94744-ff58-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-07T11:00:33.218000", "message_id": "94bb2236-ff50-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-07T10:00:29.002000", "message_id": "3073b5ca-ff48-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-07T10:00:29.002000", "message_id": "3073b5ca-ff48-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-07T10:00:29.002000", "message_id": "3073b5ca-ff48-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-07T10:00:29.002000", "message_id": "3073b5ca-ff48-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-07T09:00:26.254000", "message_id": "cd0d2514-ff3f-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-07T08:00:23.839000", "message_id": "69d6d16e-ff37-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-07T07:00:21.779000", "message_id": "06d8671a-ff2f-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-07T06:00:16.470000", "message_id": "a1ebceda-ff26-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-07T05:00:13.200000", "message_id": "3e358b7c-ff1e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-07T04:00:10.601000", "message_id": "dae0f7d0-ff15-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-07T03:00:06.901000", "message_id": "76e877b0-ff0d-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-07T02:00:04.058000", "message_id": "137490ae-ff05-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-07T01:00:02.024000", "message_id": "b0776222-fefc-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-07T01:00:02.024000", "message_id": "b0776222-fefc-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-07T00:00:01.305000", "message_id": "4e454220-fef4-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-07T00:00:01.305000", "message_id": "4e454220-fef4-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-07T00:00:01.305000", "message_id": "4e454220-fef4-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-06T23:00:36.507000", "message_id": "017c9ad6-feec-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-06T22:00:00.380000", "message_id": "8a2fecd8-fee3-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-06T21:00:12.977000", "message_id": "2fef20b6-fedb-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-06T20:00:01.723000", "message_id": "c775c97a-fed2-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-06T19:00:52.391000", "message_id": "83e2902e-feca-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-06T19:00:52.391000", "message_id": "83e2902e-feca-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-06T18:00:46.021000", "message_id": "1e52855a-fec2-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-06T17:00:34.491000", "message_id": "b5aef2d4-feb9-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-06T16:00:25.336000", "message_id": "4e9200da-feb1-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-06T15:00:16.324000", "message_id": "e75117d8-fea8-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-06T14:00:07.371000", "message_id": "8036c9b0-fea0-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-06T14:00:07.371000", "message_id": "8036c9b0-fea0-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-06T14:00:07.371000", "message_id": "8036c9b0-fea0-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-06T14:00:07.371000", "message_id": "8036c9b0-fea0-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-06T14:00:07.371000", "message_id": "8036c9b0-fea0-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-06T13:01:00.235000", "message_id": "3df558e4-fe98-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-06T12:00:51.015000", "message_id": "d6b1a17c-fe8f-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-06T11:00:42.301000", "message_id": "6fbc1374-fe87-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-06T10:00:33.269000", "message_id": "089446d8-fe7f-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-06T10:00:33.269000", "message_id": "089446d8-fe7f-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-06T10:00:33.269000", "message_id": "089446d8-fe7f-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-06T09:00:25.758000", "message_id": "a257b402-fe76-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-06T08:00:15.508000", "message_id": "3a76a42c-fe6e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-06T07:00:06.848000", "message_id": "d387f084-fe65-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-06T06:00:59.291000", "message_id": "9106159a-fe5d-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-06T05:00:49.947000", "message_id": "29b07ee2-fe55-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-06T04:00:41.580000", "message_id": "c2f09d2a-fe4c-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-06T03:00:32.625000", "message_id": "5bd5297e-fe44-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-06T02:00:23.233000", "message_id": "f477756e-fe3b-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-06T02:00:23.233000", "message_id": "f477756e-fe3b-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-06T02:00:23.233000", "message_id": "f477756e-fe3b-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-06T02:00:23.233000", "message_id": "f477756e-fe3b-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-06T01:00:14.193000", "message_id": "8d511816-fe33-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-06T00:00:05.718000", "message_id": "267cda10-fe2b-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-05T23:00:59.003000", "message_id": "e47ad43a-fe22-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-05T23:00:59.003000", "message_id": "e47ad43a-fe22-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-05T23:00:59.003000", "message_id": "e47ad43a-fe22-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-05T23:00:59.003000", "message_id": "e47ad43a-fe22-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-05T22:04:25.488000", "message_id": "fdc9073e-fe1a-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.create.end", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "message": "Success", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.234146", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-05T22:04:25.312000", "message_id": "fdaec040-fe1a-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.update", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "old_state": "building", "old_task_state": "spawning", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05T22:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 22:04:16", "launched_at": "2013-08-05T22:04:25.234146", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "None", "audit_period_ending": "2013-08-05T22:04:25.308737", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-05T22:04:19.675000", "message_id": "fa520e48-fe1a-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "spawning", "event_type": "compute.instance.update", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "building", "old_state": "None", "old_task_state": "None", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05T22:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 22:04:16", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "spawning", "audit_period_ending": "2013-08-05T22:04:19.672662", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-05T22:04:18.771000", "message_id": "f9c8af40-fe1a-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "spawning", "event_type": "compute.instance.update", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "building", "old_state": "building", "old_task_state": "block_device_mapping", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05T22:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 22:04:16", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "spawning", "audit_period_ending": "2013-08-05T22:04:18.769031", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-05T22:04:17.888000", "message_id": "f9419a8c-fe1a-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "block_device_mapping", "event_type": "compute.instance.update", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "building", "old_state": "building", "old_task_state": "networking", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05T22:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 22:04:16", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "block_device_mapping", "audit_period_ending": "2013-08-05T22:04:17.883335", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-05T22:04:17.644000", "message_id": "f91ec2e6-fe1a-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "networking", "event_type": "compute.instance.update", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "building", "old_state": "building", "old_task_state": "None", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05T22:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 22:04:16", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "networking", "audit_period_ending": "2013-08-05T22:04:17.642197", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-05T22:04:17.496000", "message_id": "f9079440-fe1a-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.update", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "building", "old_state": "None", "old_task_state": "None", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05T22:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 22:04:16", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "None", "audit_period_ending": "2013-08-05T22:04:17.490382", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-05T22:04:17.334000", "message_id": "f8ed0c56-fe1a-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "scheduling", "event_type": "compute.instance.create.start", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "message": "", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "display_name": "trogtwo", "hostname": "trogtwo", "state": "building", "launched_at": "", "node": "None", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "user_id": "2b8fbe55863d4dfab5310796202b2019", "image_ref_url": "http://10.0.2.15:9292/images/", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-05T22:04:17.297000", "message_id": "f8e7b3aa-fe1a-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.update", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "building", "old_state": "building", "old_task_state": "scheduling", "node": "None", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05T22:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 22:04:16", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "None", "audit_period_ending": "2013-08-05T22:04:17.295213", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-05T22:04:16.897000", "message_id": "f8aa5460-fe1a-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "scheduling", "event_type": "compute.instance.update", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "building", "old_state": "None", "old_task_state": "None", "node": "None", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "api.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05T22:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 22:04:16.779537", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "scheduling", "audit_period_ending": "2013-08-05T22:04:16.894089", "os_type": "None"}, "counter_type": "gauge"}], "http://localhost:8777/v2/meters/instance:m1.nano?q.field=resource_id&q.value=0a16330b-d457-425d-8249-a275fab9adea": [{"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-12T04:00:31.245000", "message_id": "bb5fde16-0303-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-12 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-12T03:00:51.472000", "message_id": "65ad5082-02fb-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-12 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-12T02:00:27.736000", "message_id": "f5bf096c-02f2-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-12 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-12T01:00:47.126000", "message_id": "9f9d0a6e-02ea-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-12 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-12T00:00:24.830000", "message_id": "307c5a16-02e2-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-11T23:00:42.366000", "message_id": "d91c62dc-02d9-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-11T22:00:21.085000", "message_id": "6ab39764-02d1-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-11T21:00:30.082000", "message_id": "0e50dea8-02c9-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-11T20:00:18.172000", "message_id": "a570001a-02c0-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-11T19:00:11.861000", "message_id": "3fe2cd0c-02b8-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-11T18:00:03.078000", "message_id": "d8ecbbe2-02af-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-11T17:00:49.790000", "message_id": "93012152-02a7-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-11T16:00:45.755000", "message_id": "2ebaaf36-029f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-11T15:00:36.758000", "message_id": "c7adeb8a-0296-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-11T14:00:28.007000", "message_id": "60bba42e-028e-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-11T13:00:20.296000", "message_id": "fa5e0954-0285-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-11T12:00:11.600000", "message_id": "936e670a-027d-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-11T11:00:02.954000", "message_id": "2c7b1d66-0275-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-11T10:00:29.428000", "message_id": "da7a157e-026c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-11T09:00:26.387000", "message_id": "76e1e904-0264-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-11T08:00:23.284000", "message_id": "134793a6-025c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-11T07:00:19.905000", "message_id": "af72d24e-0253-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-11T06:00:16.497000", "message_id": "4bbcdfd6-024b-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-11T06:00:16.497000", "message_id": "4bbcdfd6-024b-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-11T05:00:05.353000", "message_id": "e34d49de-0242-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-11T04:00:09.262000", "message_id": "83dbf8e0-023a-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-11T03:00:02.197000", "message_id": "1ddc6514-0232-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-11T02:00:02.936000", "message_id": "bc87c18a-0229-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-11T01:00:00.685000", "message_id": "597ae804-0221-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-11T00:00:59.549000", "message_id": "1ac890f0-0219-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-10T23:00:57.127000", "message_id": "b79374a8-0210-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-10T22:00:51.301000", "message_id": "52493aa4-0208-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-10T21:00:44.073000", "message_id": "ec4f4458-01ff-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-10T20:00:38.932000", "message_id": "8760b3cc-01f7-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-10T19:00:35.383000", "message_id": "23903d2a-01ef-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-10T19:00:35.383000", "message_id": "23903d2a-01ef-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-10T19:00:35.383000", "message_id": "23903d2a-01ef-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-10T19:00:35.383000", "message_id": "23903d2a-01ef-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-10T19:00:35.383000", "message_id": "23903d2a-01ef-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-10T18:00:31.970000", "message_id": "bfbe4f56-01e6-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-10T17:00:28.473000", "message_id": "5bf0dafa-01de-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-10T16:00:25.527000", "message_id": "f861f4cc-01d5-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-10T15:00:22.302000", "message_id": "94b9b0f2-01cd-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-10T14:00:19.221000", "message_id": "31093eea-01c5-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-10T13:00:15.758000", "message_id": "cd3d6678-01bc-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-10T12:00:04.343000", "message_id": "64b7b1e2-01b4-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-10T11:00:00.358000", "message_id": "00756380-01ac-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-10T10:00:57.892000", "message_id": "c119fb9a-01a3-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-10T10:00:57.892000", "message_id": "c119fb9a-01a3-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-10T09:00:54.347000", "message_id": "5d387c76-019b-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-10T09:00:54.347000", "message_id": "5d387c76-019b-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-10T08:00:51.401000", "message_id": "f9a8a166-0192-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-10T07:00:47.712000", "message_id": "95bb3ba8-018a-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-10T07:00:47.712000", "message_id": "95bb3ba8-018a-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-10T06:00:44.587000", "message_id": "31f9215a-0182-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-10T05:00:41.414000", "message_id": "ce6da0dc-0179-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-10T04:00:38.572000", "message_id": "6b0073ec-0171-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-10T04:00:38.572000", "message_id": "6b0073ec-0171-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-10T03:00:35.153000", "message_id": "0722305c-0169-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-10T02:00:32.271000", "message_id": "a3b8a292-0160-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-10T01:00:28.585000", "message_id": "3fb2895a-0158-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-10T01:00:28.585000", "message_id": "3fb2895a-0158-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-10T00:00:24.334000", "message_id": "db569954-014f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-09T23:00:20.607000", "message_id": "77646de8-0147-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-09T23:00:20.607000", "message_id": "77646de8-0147-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-09T22:00:17.081000", "message_id": "1380c4dc-013f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-09T21:00:13.526000", "message_id": "afa1667c-0136-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-09T20:00:10.467000", "message_id": "4c20c0d2-012e-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-09T19:00:07.100000", "message_id": "e83bcc22-0125-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-09T18:00:05.458000", "message_id": "856caf56-011d-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-09T17:00:01.599000", "message_id": "2179e160-0115-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-09T16:00:59.829000", "message_id": "e270f434-010c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-09T15:00:53.235000", "message_id": "7cbba88a-0104-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-09T14:00:42.388000", "message_id": "147d646e-00fc-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-09T13:00:32.052000", "message_id": "ac92bf46-00f3-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-09T12:00:21.755000", "message_id": "44a42a62-00eb-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-09T11:00:11.814000", "message_id": "dcdb2690-00e2-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-09T10:00:02.105000", "message_id": "7573f804-00da-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-09T09:00:53.801000", "message_id": "32698310-00d2-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-09T08:00:44.870000", "message_id": "cb4f8b82-00c9-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-09T07:00:35.725000", "message_id": "6430bdf2-00c1-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-09T06:00:27.607000", "message_id": "fd7334bc-00b8-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-09T05:00:17.975000", "message_id": "9601812e-00b0-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-09T05:00:17.975000", "message_id": "9601812e-00b0-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-09T05:00:17.975000", "message_id": "9601812e-00b0-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-09T05:00:17.975000", "message_id": "9601812e-00b0-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-09T05:00:17.975000", "message_id": "9601812e-00b0-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-09T04:00:02.450000", "message_id": "2ae3be82-00a8-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-09T03:00:53.145000", "message_id": "e75724d6-009f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-09T02:00:37.428000", "message_id": "7c533e48-0097-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-09T02:00:37.428000", "message_id": "7c533e48-0097-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-09T01:00:27.002000", "message_id": "144961f4-008f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-09T00:00:17.161000", "message_id": "acb94c00-0086-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-09T00:00:17.161000", "message_id": "acb94c00-0086-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-09T00:00:17.161000", "message_id": "acb94c00-0086-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-09T00:00:17.161000", "message_id": "acb94c00-0086-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-09T00:00:17.161000", "message_id": "acb94c00-0086-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-08T23:00:07.694000", "message_id": "45417ea6-007e-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-08T22:01:01.459000", "message_id": "0397da48-0076-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-08T21:00:52.407000", "message_id": "9c5ef30a-006d-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-08T20:00:43.635000", "message_id": "357ff4e8-0065-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-08T20:00:43.635000", "message_id": "357ff4e8-0065-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-08T20:00:43.635000", "message_id": "357ff4e8-0065-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-08T19:00:36.916000", "message_id": "cfa1bcb8-005c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-08T19:00:36.916000", "message_id": "cfa1bcb8-005c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-08T19:00:36.916000", "message_id": "cfa1bcb8-005c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-08T19:00:36.916000", "message_id": "cfa1bcb8-005c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-08T18:00:29.499000", "message_id": "6970674e-0054-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-08T17:00:22.479000", "message_id": "0381c296-004c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-08T17:00:22.479000", "message_id": "0381c296-004c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-08T17:00:22.479000", "message_id": "0381c296-004c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-08T17:00:22.479000", "message_id": "0381c296-004c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-08T16:00:14.093000", "message_id": "9cae37aa-0043-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-08T15:00:07.875000", "message_id": "37462a24-003b-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-08T15:00:07.875000", "message_id": "37462a24-003b-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-08T15:00:07.875000", "message_id": "37462a24-003b-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-08T14:01:00.824000", "message_id": "f4f52e34-0032-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-08T13:00:51.788000", "message_id": "8dea551e-002a-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-08T12:00:42.737000", "message_id": "26b6df28-0022-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-08T12:00:42.737000", "message_id": "26b6df28-0022-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-08T12:00:42.737000", "message_id": "26b6df28-0022-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-08T12:00:42.737000", "message_id": "26b6df28-0022-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-08T11:00:35.894000", "message_id": "c0d876ec-0019-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-08T10:00:28.588000", "message_id": "5ac849c0-0011-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-08T10:00:28.588000", "message_id": "5ac849c0-0011-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-08T10:00:28.588000", "message_id": "5ac849c0-0011-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-08T10:00:28.588000", "message_id": "5ac849c0-0011-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-08T09:00:25.735000", "message_id": "f74c4e12-0008-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-08T08:00:23.364000", "message_id": "941b3d38-0000-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-08T07:00:21.413000", "message_id": "313afa62-fff8-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-08T06:00:19.476000", "message_id": "ce59130a-ffef-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-08T05:00:17.635000", "message_id": "6b546c26-ffe7-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-08T04:00:16.052000", "message_id": "08b687e6-ffdf-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-08T03:00:14.027000", "message_id": "a5b4086a-ffd6-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-08T02:00:12.238000", "message_id": "42dc3ff8-ffce-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-08T01:00:10.311000", "message_id": "dff5a7ba-ffc5-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-08T00:00:08.769000", "message_id": "7d524814-ffbd-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-08T00:00:08.769000", "message_id": "7d524814-ffbd-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-08T00:00:08.769000", "message_id": "7d524814-ffbd-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-07T23:00:04.027000", "message_id": "18b7d3f4-ffb5-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-07T23:00:04.027000", "message_id": "18b7d3f4-ffb5-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-07T22:00:01.488000", "message_id": "b549427e-ffac-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-07T21:00:58.494000", "message_id": "7590eed2-ffa4-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-07T20:00:55.879000", "message_id": "12599510-ff9c-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-07T19:00:51.239000", "message_id": "adba36ee-ff93-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-07T18:00:49.736000", "message_id": "4b208932-ff8b-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-07T17:00:47.622000", "message_id": "e80564ba-ff82-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-07T17:00:47.622000", "message_id": "e80564ba-ff82-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-07T17:00:47.622000", "message_id": "e80564ba-ff82-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-07T17:00:47.622000", "message_id": "e80564ba-ff82-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-07T16:00:45.380000", "message_id": "84ee7b1c-ff7a-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-07T15:00:43.144000", "message_id": "21dffe5e-ff72-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-07T14:00:40.910000", "message_id": "bec847c0-ff69-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-07T13:00:38.123000", "message_id": "5b4d0242-ff61-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-07T13:00:38.123000", "message_id": "5b4d0242-ff61-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-07T13:00:38.123000", "message_id": "5b4d0242-ff61-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-07T13:00:38.123000", "message_id": "5b4d0242-ff61-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-07T12:00:35.684000", "message_id": "f8157284-ff58-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-07T11:00:33.218000", "message_id": "94e8f67a-ff50-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-07T10:00:29.002000", "message_id": "30a36cb6-ff48-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-07T09:00:26.254000", "message_id": "cd3beeee-ff3f-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-07T08:00:23.839000", "message_id": "69ee8e76-ff37-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-07T07:00:21.779000", "message_id": "06f96492-ff2f-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-07T07:00:21.779000", "message_id": "06f96492-ff2f-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-07T07:00:21.779000", "message_id": "06f96492-ff2f-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-07T07:00:21.779000", "message_id": "06f96492-ff2f-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-07T06:00:16.470000", "message_id": "a1f8b1cc-ff26-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-07T05:00:13.200000", "message_id": "3e5a51dc-ff1e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-07T04:00:10.601000", "message_id": "db03bbd0-ff15-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-07T03:00:06.901000", "message_id": "7702db46-ff0d-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-07T03:00:06.901000", "message_id": "7702db46-ff0d-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-07T03:00:06.901000", "message_id": "7702db46-ff0d-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-07T03:00:06.901000", "message_id": "7702db46-ff0d-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-07T02:00:04.058000", "message_id": "139ab2d4-ff05-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-07T01:00:02.024000", "message_id": "b09896a4-fefc-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-07T00:00:01.305000", "message_id": "4e68d92e-fef4-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-06T23:00:36.507000", "message_id": "019627bc-feec-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-06T23:00:36.507000", "message_id": "019627bc-feec-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-06T23:00:36.507000", "message_id": "019627bc-feec-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-06T23:00:36.507000", "message_id": "019627bc-feec-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-06T23:00:36.507000", "message_id": "019627bc-feec-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-06T22:00:00.380000", "message_id": "8a53e066-fee3-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-06T21:00:12.977000", "message_id": "3013059e-fedb-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-06T21:00:12.977000", "message_id": "3013059e-fedb-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-06T21:00:12.977000", "message_id": "3013059e-fedb-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-06T21:00:12.977000", "message_id": "3013059e-fedb-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-06T20:00:01.723000", "message_id": "c7a2d8de-fed2-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-06T19:00:52.391000", "message_id": "840e4f16-feca-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-06T18:00:46.021000", "message_id": "1e6f7322-fec2-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-06T17:00:34.491000", "message_id": "b5d80cbe-feb9-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-06T17:00:34.491000", "message_id": "b5d80cbe-feb9-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-06T17:00:34.491000", "message_id": "b5d80cbe-feb9-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-06T17:00:34.491000", "message_id": "b5d80cbe-feb9-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-06T17:00:34.491000", "message_id": "b5d80cbe-feb9-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-06T16:00:25.336000", "message_id": "4e95bc52-feb1-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-06T15:00:16.324000", "message_id": "e771f732-fea8-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-06T15:00:16.324000", "message_id": "e771f732-fea8-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-06T15:00:16.324000", "message_id": "e771f732-fea8-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-06T15:00:16.324000", "message_id": "e771f732-fea8-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-06T14:00:07.371000", "message_id": "80585e40-fea0-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-06T13:01:00.235000", "message_id": "3e0f90a6-fe98-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-06T12:00:51.015000", "message_id": "d6d51026-fe8f-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-06T11:00:42.301000", "message_id": "6fc82a24-fe87-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-06T10:00:33.269000", "message_id": "08b61542-fe7f-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-06T09:00:25.758000", "message_id": "a270ed3c-fe76-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-06T08:00:15.508000", "message_id": "3a9c3688-fe6e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-06T08:00:15.508000", "message_id": "3a9c3688-fe6e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-06T08:00:15.508000", "message_id": "3a9c3688-fe6e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-06T08:00:15.508000", "message_id": "3a9c3688-fe6e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-06T07:00:06.848000", "message_id": "d3a94cd4-fe65-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-06T06:00:59.291000", "message_id": "9123b302-fe5d-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-06T06:00:59.291000", "message_id": "9123b302-fe5d-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-06T06:00:59.291000", "message_id": "9123b302-fe5d-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-06T05:00:49.947000", "message_id": "29d5a99c-fe55-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-06T05:00:49.947000", "message_id": "29d5a99c-fe55-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-06T05:00:49.947000", "message_id": "29d5a99c-fe55-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-06T05:00:49.947000", "message_id": "29d5a99c-fe55-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-06T04:00:41.580000", "message_id": "c31c3ffc-fe4c-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-06T03:00:32.625000", "message_id": "5bf630d8-fe44-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-06T02:00:23.233000", "message_id": "f49676ee-fe3b-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-06T01:00:14.193000", "message_id": "8d554ef4-fe33-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-06T00:00:05.718000", "message_id": "269aca0c-fe2b-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-06T00:00:05.718000", "message_id": "269aca0c-fe2b-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-06T00:00:05.718000", "message_id": "269aca0c-fe2b-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-06T00:00:05.718000", "message_id": "269aca0c-fe2b-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-05T23:00:59.003000", "message_id": "e4846d2e-fe22-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-05T22:04:25.488000", "message_id": "fdd0689e-fe1a-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.create.end", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "message": "Success", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.234146", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-05T22:04:25.312000", "message_id": "fdb5aa68-fe1a-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.update", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "old_state": "building", "old_task_state": "spawning", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05T22:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 22:04:16", "launched_at": "2013-08-05T22:04:25.234146", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "None", "audit_period_ending": "2013-08-05T22:04:25.308737", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-05T22:04:19.675000", "message_id": "fa58d76e-fe1a-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "spawning", "event_type": "compute.instance.update", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "building", "old_state": "None", "old_task_state": "None", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05T22:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 22:04:16", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "spawning", "audit_period_ending": "2013-08-05T22:04:19.672662", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-05T22:04:18.771000", "message_id": "f9d615b8-fe1a-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "spawning", "event_type": "compute.instance.update", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "building", "old_state": "building", "old_task_state": "block_device_mapping", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05T22:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 22:04:16", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "spawning", "audit_period_ending": "2013-08-05T22:04:18.769031", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-05T22:04:17.888000", "message_id": "f94a42c2-fe1a-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "block_device_mapping", "event_type": "compute.instance.update", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "building", "old_state": "building", "old_task_state": "networking", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05T22:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 22:04:16", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "block_device_mapping", "audit_period_ending": "2013-08-05T22:04:17.883335", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-05T22:04:17.644000", "message_id": "f931b55e-fe1a-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "networking", "event_type": "compute.instance.update", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "building", "old_state": "building", "old_task_state": "None", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05T22:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 22:04:16", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "networking", "audit_period_ending": "2013-08-05T22:04:17.642197", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-05T22:04:17.496000", "message_id": "f9230a04-fe1a-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.update", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "building", "old_state": "None", "old_task_state": "None", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05T22:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 22:04:16", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "None", "audit_period_ending": "2013-08-05T22:04:17.490382", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-05T22:04:17.496000", "message_id": "f9230a04-fe1a-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.update", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "building", "old_state": "None", "old_task_state": "None", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05T22:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 22:04:16", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "None", "audit_period_ending": "2013-08-05T22:04:17.490382", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-05T22:04:17.334000", "message_id": "f905285e-fe1a-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "scheduling", "event_type": "compute.instance.create.start", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "message": "", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "display_name": "trogtwo", "hostname": "trogtwo", "state": "building", "launched_at": "", "node": "None", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "user_id": "2b8fbe55863d4dfab5310796202b2019", "image_ref_url": "http://10.0.2.15:9292/images/", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-05T22:04:17.297000", "message_id": "f8f1360a-fe1a-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.update", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "building", "old_state": "building", "old_task_state": "scheduling", "node": "None", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05T22:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 22:04:16", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "None", "audit_period_ending": "2013-08-05T22:04:17.295213", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-05T22:04:17.297000", "message_id": "f8f1360a-fe1a-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.update", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "building", "old_state": "building", "old_task_state": "scheduling", "node": "None", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05T22:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 22:04:16", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "None", "audit_period_ending": "2013-08-05T22:04:17.295213", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-05T22:04:16.897000", "message_id": "f8b18f78-fe1a-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "scheduling", "event_type": "compute.instance.update", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "building", "old_state": "None", "old_task_state": "None", "node": "None", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "api.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05T22:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 22:04:16.779537", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "scheduling", "audit_period_ending": "2013-08-05T22:04:16.894089", "os_type": "None"}, "counter_type": "gauge"}], "http://localhost:8777/v2/meters/disk.root.size?q.field=resource_id&q.value=0a16330b-d457-425d-8249-a275fab9adea": [{"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-12T04:00:31.245000", "message_id": "bb6cde72-0303-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-12 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-12T03:00:51.472000", "message_id": "65c345f4-02fb-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-12 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-12T02:00:27.736000", "message_id": "f5cce8f2-02f2-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-12 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-12T01:00:47.126000", "message_id": "9fb41a92-02ea-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-12 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-12T00:00:24.830000", "message_id": "309278b4-02e2-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-11T23:00:42.366000", "message_id": "d91e9a8e-02d9-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-11T22:00:21.085000", "message_id": "6ac2326a-02d1-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-11T21:00:30.082000", "message_id": "0e540614-02c9-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-11T20:00:18.172000", "message_id": "a58172f0-02c0-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-11T20:00:18.172000", "message_id": "a58172f0-02c0-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-11T19:00:11.861000", "message_id": "3ff0ec2a-02b8-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-11T19:00:11.861000", "message_id": "3ff0ec2a-02b8-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-11T18:00:03.078000", "message_id": "d8fb5292-02af-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-11T17:00:49.790000", "message_id": "93126020-02a7-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-11T16:00:45.755000", "message_id": "2ebdb262-029f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-11T15:00:36.758000", "message_id": "c7be6e74-0296-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-11T14:00:28.007000", "message_id": "60c37d52-028e-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-11T13:00:20.296000", "message_id": "fa7f1b44-0285-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-11T12:00:11.600000", "message_id": "93835228-027d-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-11T11:00:02.954000", "message_id": "2c8ad256-0275-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-11T10:00:29.428000", "message_id": "da87fb94-026c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-11T09:00:26.387000", "message_id": "76ef1b56-0264-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-11T08:00:23.284000", "message_id": "1349894a-025c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-11T07:00:19.905000", "message_id": "af74dd0a-0253-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-11T06:00:16.497000", "message_id": "4bc50364-024b-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-11T05:00:05.353000", "message_id": "e352da52-0242-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-11T04:00:09.262000", "message_id": "83ebb348-023a-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-11T03:00:02.197000", "message_id": "1ddf072e-0232-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-11T02:00:02.936000", "message_id": "bc96948a-0229-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-11T01:00:00.685000", "message_id": "5988ff52-0221-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-11T00:00:59.549000", "message_id": "1ad09a34-0219-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-10T23:00:57.127000", "message_id": "b7a8387a-0210-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-10T22:00:51.301000", "message_id": "52593d50-0208-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-10T22:00:51.301000", "message_id": "52593d50-0208-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-10T21:00:44.073000", "message_id": "ec5da5fc-01ff-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-10T20:00:38.932000", "message_id": "8763823c-01f7-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-10T19:00:35.383000", "message_id": "23abf9a2-01ef-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-10T19:00:35.383000", "message_id": "23abf9a2-01ef-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-10T18:00:31.970000", "message_id": "bfd422cc-01e6-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-10T17:00:28.473000", "message_id": "5bf73404-01de-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-10T16:00:25.527000", "message_id": "f8737a76-01d5-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-10T15:00:22.302000", "message_id": "94cea0f2-01cd-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-10T14:00:19.221000", "message_id": "310b2eb2-01c5-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-10T13:00:15.758000", "message_id": "cd4e1c52-01bc-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-10T12:00:04.343000", "message_id": "64c288e2-01b4-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-10T11:00:00.358000", "message_id": "007776ac-01ac-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-10T10:00:57.892000", "message_id": "c1252dda-01a3-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-10T09:00:54.347000", "message_id": "5d46990a-019b-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-10T08:00:51.401000", "message_id": "f9b87f1e-0192-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-10T07:00:47.712000", "message_id": "95d12b66-018a-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-10T07:00:47.712000", "message_id": "95d12b66-018a-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-10T06:00:44.587000", "message_id": "31fb1bae-0182-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-10T05:00:41.414000", "message_id": "ce850132-0179-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-10T04:00:38.572000", "message_id": "6b1599c0-0171-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-10T03:00:35.153000", "message_id": "07383154-0169-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-10T02:00:32.271000", "message_id": "a3de1914-0160-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-10T01:00:28.585000", "message_id": "3fbda240-0158-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-10T00:00:24.334000", "message_id": "db668288-014f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-09T23:00:20.607000", "message_id": "77766840-0147-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-09T22:00:17.081000", "message_id": "138d01a2-013f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-09T21:00:13.526000", "message_id": "afb76c9c-0136-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-09T21:00:13.526000", "message_id": "afb76c9c-0136-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-09T20:00:10.467000", "message_id": "4c24b55c-012e-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-09T19:00:07.100000", "message_id": "e846f5de-0125-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-09T18:00:05.458000", "message_id": "857bb53c-011d-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-09T17:00:01.599000", "message_id": "21892e9a-0115-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-09T16:00:59.829000", "message_id": "e285a514-010c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-09T15:00:53.235000", "message_id": "7cbeb2fa-0104-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-09T14:00:42.388000", "message_id": "1480264a-00fc-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-09T13:00:32.052000", "message_id": "aca132d8-00f3-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-09T12:00:21.755000", "message_id": "44b6fde0-00eb-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-09T11:00:11.814000", "message_id": "dcdd2eea-00e2-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-09T10:00:02.105000", "message_id": "75822fdc-00da-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-09T09:00:53.801000", "message_id": "326bf8a2-00d2-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-09T08:00:44.870000", "message_id": "cb5fa698-00c9-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-09T07:00:35.725000", "message_id": "6436d1d8-00c1-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-09T06:00:27.607000", "message_id": "fd767604-00b8-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-09T05:00:17.975000", "message_id": "961720ba-00b0-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-09T04:00:02.450000", "message_id": "2afee658-00a8-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-09T04:00:02.450000", "message_id": "2afee658-00a8-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-09T04:00:02.450000", "message_id": "2afee658-00a8-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-09T04:00:02.450000", "message_id": "2afee658-00a8-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-09T03:00:53.145000", "message_id": "e759ce2a-009f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-09T02:00:37.428000", "message_id": "7c5ba8e4-0097-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-09T01:00:27.002000", "message_id": "14576dd0-008f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-09T01:00:27.002000", "message_id": "14576dd0-008f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-09T00:00:17.161000", "message_id": "acdddbba-0086-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-09T00:00:17.161000", "message_id": "acdddbba-0086-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-08T23:00:07.694000", "message_id": "4554275e-007e-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-08T23:00:07.694000", "message_id": "4554275e-007e-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-08T22:01:01.459000", "message_id": "039c2b8e-0076-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-08T21:00:52.407000", "message_id": "9c6eb722-006d-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-08T20:00:43.635000", "message_id": "35942eae-0065-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-08T19:00:36.916000", "message_id": "cfb02b9a-005c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-08T18:00:29.499000", "message_id": "69846c1c-0054-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-08T17:00:22.479000", "message_id": "0392c1e0-004c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-08T17:00:22.479000", "message_id": "0392c1e0-004c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-08T16:00:14.093000", "message_id": "9cb027d6-0043-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-08T15:00:07.875000", "message_id": "37571334-003b-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-08T14:01:00.824000", "message_id": "f4f7f09c-0032-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-08T13:00:51.788000", "message_id": "8ded7262-002a-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-08T12:00:42.737000", "message_id": "26cb285c-0022-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-08T11:00:35.894000", "message_id": "c0e52ca2-0019-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-08T10:00:28.588000", "message_id": "5adef6fc-0011-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-08T09:00:25.735000", "message_id": "f75fbb8c-0008-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-08T08:00:23.364000", "message_id": "942cb2f2-0000-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-08T07:00:21.413000", "message_id": "314ec042-fff8-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-08T06:00:19.476000", "message_id": "ce6a831a-ffef-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-08T05:00:17.635000", "message_id": "6b56c25a-ffe7-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-08T04:00:16.052000", "message_id": "08c80c5a-ffdf-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-08T03:00:14.027000", "message_id": "a5b82058-ffd6-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-08T02:00:12.238000", "message_id": "42de4d7a-ffce-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-08T01:00:10.311000", "message_id": "e0058fea-ffc5-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-08T00:00:08.769000", "message_id": "7d6251fa-ffbd-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-07T23:00:04.027000", "message_id": "18bfaa0c-ffb5-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-07T22:00:01.488000", "message_id": "b54b66c6-ffac-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-07T21:00:58.494000", "message_id": "7593ab86-ffa4-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-07T20:00:55.879000", "message_id": "125bc54c-ff9c-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-07T19:00:51.239000", "message_id": "adcc6a80-ff93-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-07T18:00:49.736000", "message_id": "4b2e0b7a-ff8b-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-07T17:00:47.622000", "message_id": "e812c10a-ff82-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-07T16:00:45.380000", "message_id": "85038520-ff7a-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-07T15:00:43.144000", "message_id": "21e57528-ff72-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-07T14:00:40.910000", "message_id": "bed9e1a6-ff69-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-07T14:00:40.910000", "message_id": "bed9e1a6-ff69-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-07T13:00:38.123000", "message_id": "5b5cc858-ff61-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-07T13:00:38.123000", "message_id": "5b5cc858-ff61-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-07T12:00:35.684000", "message_id": "f8177412-ff58-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-07T11:00:33.218000", "message_id": "94ec8146-ff50-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-07T10:00:29.002000", "message_id": "30b02410-ff48-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-07T09:00:26.254000", "message_id": "cd53a5c0-ff3f-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-07T08:00:23.839000", "message_id": "69f0a2e2-ff37-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-07T07:00:21.779000", "message_id": "0709ce90-ff2f-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-07T07:00:21.779000", "message_id": "0709ce90-ff2f-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-07T06:00:16.470000", "message_id": "a1fb850a-ff26-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-07T05:00:13.200000", "message_id": "3e6bb56c-ff1e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-07T05:00:13.200000", "message_id": "3e6bb56c-ff1e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-07T05:00:13.200000", "message_id": "3e6bb56c-ff1e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-07T04:00:10.601000", "message_id": "db1ab704-ff15-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-07T04:00:10.601000", "message_id": "db1ab704-ff15-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-07T03:00:06.901000", "message_id": "770fc14e-ff0d-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-07T02:00:04.058000", "message_id": "139cb5d4-ff05-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-07T01:00:02.024000", "message_id": "b0a4a9bc-fefc-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-07T00:00:01.305000", "message_id": "4e71e67c-fef4-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-06T23:00:36.507000", "message_id": "01a8da1a-feec-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-06T22:00:00.380000", "message_id": "8a755e76-fee3-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-06T22:00:00.380000", "message_id": "8a755e76-fee3-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-06T22:00:00.380000", "message_id": "8a755e76-fee3-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-06T21:00:12.977000", "message_id": "302a3908-fedb-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-06T21:00:12.977000", "message_id": "302a3908-fedb-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-06T20:00:01.723000", "message_id": "c7bcbc18-fed2-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-06T19:00:52.391000", "message_id": "841edd5e-feca-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-06T18:00:46.021000", "message_id": "1e81713a-fec2-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-06T17:00:34.491000", "message_id": "b5f00bc0-feb9-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-06T17:00:34.491000", "message_id": "b5f00bc0-feb9-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-06T17:00:34.491000", "message_id": "b5f00bc0-feb9-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-06T16:00:25.336000", "message_id": "4e981d6c-feb1-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-06T15:00:16.324000", "message_id": "e78700be-fea8-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-06T14:00:07.371000", "message_id": "80687e38-fea0-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-06T13:01:00.235000", "message_id": "3e11855a-fe98-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-06T12:00:51.015000", "message_id": "d6eb4ae4-fe8f-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-06T11:00:42.301000", "message_id": "6fca5ad8-fe87-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-06T10:00:33.269000", "message_id": "08c4fa80-fe7f-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-06T09:00:25.758000", "message_id": "a27e8442-fe76-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-06T08:00:15.508000", "message_id": "3ab2423e-fe6e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-06T08:00:15.508000", "message_id": "3ab2423e-fe6e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-06T08:00:15.508000", "message_id": "3ab2423e-fe6e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-06T07:00:06.848000", "message_id": "d3ba455c-fe65-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-06T06:00:59.291000", "message_id": "91349ee2-fe5d-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-06T05:00:49.947000", "message_id": "29ecc816-fe55-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-06T05:00:49.947000", "message_id": "29ecc816-fe55-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-06T05:00:49.947000", "message_id": "29ecc816-fe55-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-06T04:00:41.580000", "message_id": "c320a0d8-fe4c-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-06T03:00:32.625000", "message_id": "5c03493a-fe44-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-06T02:00:23.233000", "message_id": "f4987bd8-fe3b-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-06T01:00:14.193000", "message_id": "8d578fac-fe33-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-06T00:00:05.718000", "message_id": "26ad1b44-fe2b-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-06T00:00:05.718000", "message_id": "26ad1b44-fe2b-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-06T00:00:05.718000", "message_id": "26ad1b44-fe2b-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-05T23:00:59.003000", "message_id": "e486f36e-fe22-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-05T22:04:25.488000", "message_id": "fdd4353c-fe1a-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.create.end", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "message": "Success", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.234146", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-05T22:04:25.312000", "message_id": "fdba51e4-fe1a-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.update", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "old_state": "building", "old_task_state": "spawning", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05T22:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 22:04:16", "launched_at": "2013-08-05T22:04:25.234146", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "None", "audit_period_ending": "2013-08-05T22:04:25.308737", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-05T22:04:19.675000", "message_id": "fa5d75da-fe1a-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "spawning", "event_type": "compute.instance.update", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "building", "old_state": "None", "old_task_state": "None", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05T22:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 22:04:16", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "spawning", "audit_period_ending": "2013-08-05T22:04:19.672662", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-05T22:04:18.771000", "message_id": "f9dc7818-fe1a-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "spawning", "event_type": "compute.instance.update", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "building", "old_state": "building", "old_task_state": "block_device_mapping", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05T22:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 22:04:16", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "spawning", "audit_period_ending": "2013-08-05T22:04:18.769031", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-05T22:04:17.888000", "message_id": "f9526718-fe1a-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "block_device_mapping", "event_type": "compute.instance.update", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "building", "old_state": "building", "old_task_state": "networking", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05T22:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 22:04:16", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "block_device_mapping", "audit_period_ending": "2013-08-05T22:04:17.883335", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-05T22:04:17.644000", "message_id": "f93eaeb2-fe1a-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "networking", "event_type": "compute.instance.update", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "building", "old_state": "building", "old_task_state": "None", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05T22:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 22:04:16", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "networking", "audit_period_ending": "2013-08-05T22:04:17.642197", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-05T22:04:17.496000", "message_id": "f930f24a-fe1a-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.update", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "building", "old_state": "None", "old_task_state": "None", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05T22:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 22:04:16", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "None", "audit_period_ending": "2013-08-05T22:04:17.490382", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-05T22:04:17.496000", "message_id": "f930f24a-fe1a-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.update", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "building", "old_state": "None", "old_task_state": "None", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05T22:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 22:04:16", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "None", "audit_period_ending": "2013-08-05T22:04:17.490382", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-05T22:04:17.334000", "message_id": "f918672a-fe1a-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "scheduling", "event_type": "compute.instance.create.start", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "message": "", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "display_name": "trogtwo", "hostname": "trogtwo", "state": "building", "launched_at": "", "node": "None", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "user_id": "2b8fbe55863d4dfab5310796202b2019", "image_ref_url": "http://10.0.2.15:9292/images/", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-05T22:04:17.297000", "message_id": "f904873c-fe1a-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.update", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "building", "old_state": "building", "old_task_state": "scheduling", "node": "None", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05T22:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 22:04:16", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "None", "audit_period_ending": "2013-08-05T22:04:17.295213", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-05T22:04:17.297000", "message_id": "f904873c-fe1a-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.update", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "building", "old_state": "building", "old_task_state": "scheduling", "node": "None", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05T22:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 22:04:16", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "None", "audit_period_ending": "2013-08-05T22:04:17.295213", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-05T22:04:17.297000", "message_id": "f904873c-fe1a-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.update", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "building", "old_state": "building", "old_task_state": "scheduling", "node": "None", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05T22:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 22:04:16", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "None", "audit_period_ending": "2013-08-05T22:04:17.295213", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-05T22:04:16.897000", "message_id": "f8b6a1e8-fe1a-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "scheduling", "event_type": "compute.instance.update", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "building", "old_state": "None", "old_task_state": "None", "node": "None", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "api.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05T22:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 22:04:16.779537", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "scheduling", "audit_period_ending": "2013-08-05T22:04:16.894089", "os_type": "None"}, "counter_type": "gauge"}], "http://localhost:8777/v2/meters/vcpus?q.field=resource_id&q.value=0a16330b-d457-425d-8249-a275fab9adea": [{"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-12T04:00:31.245000", "message_id": "bb674a48-0303-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-12 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-12T04:00:31.245000", "message_id": "bb674a48-0303-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-12 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-12T03:00:51.472000", "message_id": "65b7c526-02fb-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-12 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-12T03:00:51.472000", "message_id": "65b7c526-02fb-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-12 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-12T03:00:51.472000", "message_id": "65b7c526-02fb-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-12 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-12T02:00:27.736000", "message_id": "f5c6b072-02f2-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-12 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-12T02:00:27.736000", "message_id": "f5c6b072-02f2-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-12 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-12T02:00:27.736000", "message_id": "f5c6b072-02f2-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-12 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-12T01:00:47.126000", "message_id": "9faa65c4-02ea-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-12 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-12T00:00:24.830000", "message_id": "308b9328-02e2-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-11T23:00:42.366000", "message_id": "d91d7cc6-02d9-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-11T22:00:21.085000", "message_id": "6ab9e664-02d1-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-11T22:00:21.085000", "message_id": "6ab9e664-02d1-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-11T22:00:21.085000", "message_id": "6ab9e664-02d1-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-11T22:00:21.085000", "message_id": "6ab9e664-02d1-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-11T21:00:30.082000", "message_id": "0e520fee-02c9-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-11T20:00:18.172000", "message_id": "a57ce58c-02c0-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-11T20:00:18.172000", "message_id": "a57ce58c-02c0-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-11T19:00:11.861000", "message_id": "3fec7b9a-02b8-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-11T18:00:03.078000", "message_id": "d8f4277e-02af-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-11T18:00:03.078000", "message_id": "d8f4277e-02af-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-11T18:00:03.078000", "message_id": "d8f4277e-02af-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-11T17:00:49.790000", "message_id": "9308815e-02a7-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-11T17:00:49.790000", "message_id": "9308815e-02a7-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-11T17:00:49.790000", "message_id": "9308815e-02a7-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-11T16:00:45.755000", "message_id": "2ebc481e-029f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-11T15:00:36.758000", "message_id": "c7b464d8-0296-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-11T15:00:36.758000", "message_id": "c7b464d8-0296-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-11T15:00:36.758000", "message_id": "c7b464d8-0296-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-11T15:00:36.758000", "message_id": "c7b464d8-0296-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-11T14:00:28.007000", "message_id": "60bf9250-028e-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-11T13:00:20.296000", "message_id": "fa7097fe-0285-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-11T13:00:20.296000", "message_id": "fa7097fe-0285-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-11T12:00:11.600000", "message_id": "937b78b4-027d-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-11T11:00:02.954000", "message_id": "2c809872-0275-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-11T11:00:02.954000", "message_id": "2c809872-0275-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-11T10:00:29.428000", "message_id": "da828254-026c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-11T09:00:26.387000", "message_id": "76e88782-0264-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-11T09:00:26.387000", "message_id": "76e88782-0264-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-11T09:00:26.387000", "message_id": "76e88782-0264-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-11T08:00:23.284000", "message_id": "13488946-025c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-11T07:00:19.905000", "message_id": "af73de6e-0253-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-11T06:00:16.497000", "message_id": "4bc20a38-024b-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-11T05:00:05.353000", "message_id": "e35096ac-0242-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-11T04:00:09.262000", "message_id": "83e37a5c-023a-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-11T04:00:09.262000", "message_id": "83e37a5c-023a-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-11T04:00:09.262000", "message_id": "83e37a5c-023a-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-11T04:00:09.262000", "message_id": "83e37a5c-023a-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-11T03:00:02.197000", "message_id": "1ddd93f8-0232-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-11T02:00:02.936000", "message_id": "bc8e7c28-0229-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-11T02:00:02.936000", "message_id": "bc8e7c28-0229-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-11T02:00:02.936000", "message_id": "bc8e7c28-0229-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-11T01:00:00.685000", "message_id": "5981f4d2-0221-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-11T01:00:00.685000", "message_id": "5981f4d2-0221-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-11T01:00:00.685000", "message_id": "5981f4d2-0221-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-11T00:00:59.549000", "message_id": "1acd0a5e-0219-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-10T23:00:57.127000", "message_id": "b7a4a7f0-0210-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-10T22:00:51.301000", "message_id": "52553106-0208-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-10T21:00:44.073000", "message_id": "ec56ba30-01ff-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-10T21:00:44.073000", "message_id": "ec56ba30-01ff-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-10T21:00:44.073000", "message_id": "ec56ba30-01ff-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-10T20:00:38.932000", "message_id": "8761bff6-01f7-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-10T19:00:35.383000", "message_id": "23a10498-01ef-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-10T18:00:31.970000", "message_id": "bfcaf440-01e6-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-10T17:00:28.473000", "message_id": "5bf42084-01de-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-10T16:00:25.527000", "message_id": "f868f718-01d5-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-10T15:00:22.302000", "message_id": "94c5fe5c-01cd-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-10T14:00:19.221000", "message_id": "310a3aca-01c5-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-10T13:00:15.758000", "message_id": "cd466c82-01bc-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-10T13:00:15.758000", "message_id": "cd466c82-01bc-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-10T12:00:04.343000", "message_id": "64ba8ec6-01b4-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-10T11:00:00.358000", "message_id": "00766c12-01ac-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-10T10:00:57.892000", "message_id": "c12010e8-01a3-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-10T10:00:57.892000", "message_id": "c12010e8-01a3-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-10T09:00:54.347000", "message_id": "5d402674-019b-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-10T09:00:54.347000", "message_id": "5d402674-019b-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-10T08:00:51.401000", "message_id": "f9b11dc8-0192-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-10T08:00:51.401000", "message_id": "f9b11dc8-0192-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-10T08:00:51.401000", "message_id": "f9b11dc8-0192-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-10T07:00:47.712000", "message_id": "95c82278-018a-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-10T06:00:44.587000", "message_id": "31fa1952-0182-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-10T05:00:41.414000", "message_id": "ce83e0cc-0179-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-10T04:00:38.572000", "message_id": "6b0e86da-0171-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-10T04:00:38.572000", "message_id": "6b0e86da-0171-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-10T03:00:35.153000", "message_id": "0729ee0a-0169-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-10T03:00:35.153000", "message_id": "0729ee0a-0169-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-10T03:00:35.153000", "message_id": "0729ee0a-0169-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-10T03:00:35.153000", "message_id": "0729ee0a-0169-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-10T02:00:32.271000", "message_id": "a3c9e110-0160-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-10T02:00:32.271000", "message_id": "a3c9e110-0160-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-10T01:00:28.585000", "message_id": "3fbc9706-0158-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-10T00:00:24.334000", "message_id": "db5e5036-014f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-10T00:00:24.334000", "message_id": "db5e5036-014f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-10T00:00:24.334000", "message_id": "db5e5036-014f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-10T00:00:24.334000", "message_id": "db5e5036-014f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-09T23:00:20.607000", "message_id": "77754578-0147-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-09T22:00:17.081000", "message_id": "1388aef4-013f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-09T21:00:13.526000", "message_id": "afad53d8-0136-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-09T21:00:13.526000", "message_id": "afad53d8-0136-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-09T20:00:10.467000", "message_id": "4c23b7e2-012e-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-09T19:00:07.100000", "message_id": "e8421c1c-0125-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-09T18:00:05.458000", "message_id": "8570bea2-011d-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-09T17:00:01.599000", "message_id": "218315b4-0115-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-09T16:00:59.829000", "message_id": "e27b6ffe-010c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-09T16:00:59.829000", "message_id": "e27b6ffe-010c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-09T15:00:53.235000", "message_id": "7cbceeca-0104-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-09T14:00:42.388000", "message_id": "147f1f3e-00fc-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-09T13:00:32.052000", "message_id": "ac9a3fc8-00f3-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-09T12:00:21.755000", "message_id": "44b0f788-00eb-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-09T11:00:11.814000", "message_id": "dcdc2bf8-00e2-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-09T10:00:02.105000", "message_id": "757bf586-00da-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-09T09:00:53.801000", "message_id": "326aad62-00d2-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-09T08:00:44.870000", "message_id": "cb590ac2-00c9-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-09T07:00:35.725000", "message_id": "64342046-00c1-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-09T06:00:27.607000", "message_id": "fd74db64-00b8-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-09T05:00:17.975000", "message_id": "960c8cae-00b0-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-09T05:00:17.975000", "message_id": "960c8cae-00b0-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-09T05:00:17.975000", "message_id": "960c8cae-00b0-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-09T05:00:17.975000", "message_id": "960c8cae-00b0-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-09T04:00:02.450000", "message_id": "2af2f58c-00a8-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-09T03:00:53.145000", "message_id": "e7587e80-009f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-09T02:00:37.428000", "message_id": "7c57b694-0097-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-09T02:00:37.428000", "message_id": "7c57b694-0097-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-09T01:00:27.002000", "message_id": "144f8976-008f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-09T01:00:27.002000", "message_id": "144f8976-008f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-09T01:00:27.002000", "message_id": "144f8976-008f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-09T01:00:27.002000", "message_id": "144f8976-008f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-09T00:00:17.161000", "message_id": "acd2aba0-0086-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-08T23:00:07.694000", "message_id": "454e069e-007e-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-08T22:01:01.459000", "message_id": "0399b5fc-0076-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-08T21:00:52.407000", "message_id": "9c66bc5c-006d-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-08T20:00:43.635000", "message_id": "358b12e2-0065-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-08T20:00:43.635000", "message_id": "358b12e2-0065-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-08T19:00:36.916000", "message_id": "cfab41a2-005c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-08T18:00:29.499000", "message_id": "6981f2c0-0054-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-08T17:00:22.479000", "message_id": "038be370-004c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-08T16:00:14.093000", "message_id": "9caf31c8-0043-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-08T15:00:07.875000", "message_id": "3752b03c-003b-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-08T14:01:00.824000", "message_id": "f4f68da6-0032-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-08T13:00:51.788000", "message_id": "8debc480-002a-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-08T12:00:42.737000", "message_id": "26c4889e-0022-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-08T11:00:35.894000", "message_id": "c0e0aec0-0019-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-08T10:00:28.588000", "message_id": "5ad61866-0011-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-08T09:00:25.735000", "message_id": "f759a288-0008-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-08T08:00:23.364000", "message_id": "9425f4da-0000-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-08T07:00:21.413000", "message_id": "3146a312-fff8-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-08T06:00:19.476000", "message_id": "ce6337a4-ffef-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-08T05:00:17.635000", "message_id": "6b559b28-ffe7-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-08T04:00:16.052000", "message_id": "08c38310-ffdf-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-08T03:00:14.027000", "message_id": "a5b72612-ffd6-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-08T02:00:12.238000", "message_id": "42dd447a-ffce-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-08T01:00:10.311000", "message_id": "e0005700-ffc5-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-08T00:00:08.769000", "message_id": "7d5b6e8a-ffbd-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-08T00:00:08.769000", "message_id": "7d5b6e8a-ffbd-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-07T23:00:04.027000", "message_id": "18bde01e-ffb5-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-07T22:00:01.488000", "message_id": "b54a5600-ffac-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-07T21:00:58.494000", "message_id": "75924638-ffa4-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-07T20:00:55.879000", "message_id": "125aa220-ff9c-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-07T19:00:51.239000", "message_id": "adc4e3f0-ff93-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-07T18:00:49.736000", "message_id": "4b276c2a-ff8b-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-07T18:00:49.736000", "message_id": "4b276c2a-ff8b-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-07T18:00:49.736000", "message_id": "4b276c2a-ff8b-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-07T17:00:47.622000", "message_id": "e80df094-ff82-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-07T16:00:45.380000", "message_id": "84f7f9da-ff7a-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-07T16:00:45.380000", "message_id": "84f7f9da-ff7a-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-07T15:00:43.144000", "message_id": "21e25866-ff72-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-07T14:00:40.910000", "message_id": "bed20f80-ff69-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-07T14:00:40.910000", "message_id": "bed20f80-ff69-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-07T13:00:38.123000", "message_id": "5b55d3ae-ff61-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-07T12:00:35.684000", "message_id": "f81679fe-ff58-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-07T11:00:33.218000", "message_id": "94eac84c-ff50-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-07T10:00:29.002000", "message_id": "30aad866-ff48-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-07T10:00:29.002000", "message_id": "30aad866-ff48-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-07T10:00:29.002000", "message_id": "30aad866-ff48-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-07T09:00:26.254000", "message_id": "cd460d02-ff3f-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-07T09:00:26.254000", "message_id": "cd460d02-ff3f-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-07T09:00:26.254000", "message_id": "cd460d02-ff3f-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-07T09:00:26.254000", "message_id": "cd460d02-ff3f-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-07T08:00:23.839000", "message_id": "69ef94b0-ff37-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-07T07:00:21.779000", "message_id": "0704082a-ff2f-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-07T06:00:16.470000", "message_id": "a1fa1260-ff26-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-07T05:00:13.200000", "message_id": "3e617520-ff1e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-07T05:00:13.200000", "message_id": "3e617520-ff1e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-07T05:00:13.200000", "message_id": "3e617520-ff1e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-07T05:00:13.200000", "message_id": "3e617520-ff1e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-07T04:00:10.601000", "message_id": "db116d48-ff15-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-07T03:00:06.901000", "message_id": "770adf80-ff0d-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-07T02:00:04.058000", "message_id": "139badce-ff05-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-07T01:00:02.024000", "message_id": "b0a055c4-fefc-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-07T00:00:01.305000", "message_id": "4e6dd096-fef4-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-07T00:00:01.305000", "message_id": "4e6dd096-fef4-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-06T23:00:36.507000", "message_id": "01a13c38-feec-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-06T22:00:00.380000", "message_id": "8a6a3938-fee3-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-06T21:00:12.977000", "message_id": "3022e2d4-fedb-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-06T20:00:01.723000", "message_id": "c7ad9aee-fed2-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-06T20:00:01.723000", "message_id": "c7ad9aee-fed2-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-06T20:00:01.723000", "message_id": "c7ad9aee-fed2-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-06T20:00:01.723000", "message_id": "c7ad9aee-fed2-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-06T20:00:01.723000", "message_id": "c7ad9aee-fed2-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-06T19:00:52.391000", "message_id": "84186da2-feca-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-06T19:00:52.391000", "message_id": "84186da2-feca-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-06T18:00:46.021000", "message_id": "1e774566-fec2-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-06T18:00:46.021000", "message_id": "1e774566-fec2-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-06T18:00:46.021000", "message_id": "1e774566-fec2-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-06T18:00:46.021000", "message_id": "1e774566-fec2-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-06T17:00:34.491000", "message_id": "b5e348ea-feb9-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-06T16:00:25.336000", "message_id": "4e96f23e-feb1-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-06T15:00:16.324000", "message_id": "e77b6290-fea8-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-06T15:00:16.324000", "message_id": "e77b6290-fea8-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-06T15:00:16.324000", "message_id": "e77b6290-fea8-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-06T15:00:16.324000", "message_id": "e77b6290-fea8-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-06T14:00:07.371000", "message_id": "80620288-fea0-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-06T13:01:00.235000", "message_id": "3e10879a-fe98-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-06T12:00:51.015000", "message_id": "d6e03cee-fe8f-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-06T11:00:42.301000", "message_id": "6fc93a36-fe87-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-06T10:00:33.269000", "message_id": "08bd4768-fe7f-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-06T09:00:25.758000", "message_id": "a27a00de-fe76-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-06T08:00:15.508000", "message_id": "3aa95638-fe6e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-06T07:00:06.848000", "message_id": "d3b23dda-fe65-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-06T07:00:06.848000", "message_id": "d3b23dda-fe65-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-06T07:00:06.848000", "message_id": "d3b23dda-fe65-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-06T06:00:59.291000", "message_id": "912b08c8-fe5d-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-06T06:00:59.291000", "message_id": "912b08c8-fe5d-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-06T06:00:59.291000", "message_id": "912b08c8-fe5d-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-06T05:00:49.947000", "message_id": "29e36348-fe55-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-06T04:00:41.580000", "message_id": "c31eeef0-fe4c-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-06T03:00:32.625000", "message_id": "5bfa7a44-fe44-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-06T03:00:32.625000", "message_id": "5bfa7a44-fe44-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-06T02:00:23.233000", "message_id": "f4978200-fe3b-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-06T01:00:14.193000", "message_id": "8d568616-fe33-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-06T00:00:05.718000", "message_id": "26a72e82-fe2b-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-05T23:00:59.003000", "message_id": "e485af0e-fe22-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-05T22:04:25.488000", "message_id": "fdd26a54-fe1a-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.create.end", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "message": "Success", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.234146", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-05T22:04:25.312000", "message_id": "fdb7e7e2-fe1a-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.update", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "old_state": "building", "old_task_state": "spawning", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05T22:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 22:04:16", "launched_at": "2013-08-05T22:04:25.234146", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "None", "audit_period_ending": "2013-08-05T22:04:25.308737", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-05T22:04:19.675000", "message_id": "fa5b5480-fe1a-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "spawning", "event_type": "compute.instance.update", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "building", "old_state": "None", "old_task_state": "None", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05T22:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 22:04:16", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "spawning", "audit_period_ending": "2013-08-05T22:04:19.672662", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-05T22:04:18.771000", "message_id": "f9d9782a-fe1a-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "spawning", "event_type": "compute.instance.update", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "building", "old_state": "building", "old_task_state": "block_device_mapping", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05T22:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 22:04:16", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "spawning", "audit_period_ending": "2013-08-05T22:04:18.769031", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-05T22:04:17.888000", "message_id": "f94cbb24-fe1a-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "block_device_mapping", "event_type": "compute.instance.update", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "building", "old_state": "building", "old_task_state": "networking", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05T22:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 22:04:16", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "block_device_mapping", "audit_period_ending": "2013-08-05T22:04:17.883335", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-05T22:04:17.644000", "message_id": "f93a97f0-fe1a-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "networking", "event_type": "compute.instance.update", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "building", "old_state": "building", "old_task_state": "None", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05T22:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 22:04:16", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "networking", "audit_period_ending": "2013-08-05T22:04:17.642197", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-05T22:04:17.496000", "message_id": "f92bfeac-fe1a-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.update", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "building", "old_state": "None", "old_task_state": "None", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05T22:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 22:04:16", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "None", "audit_period_ending": "2013-08-05T22:04:17.490382", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-05T22:04:17.334000", "message_id": "f90e01e0-fe1a-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "scheduling", "event_type": "compute.instance.create.start", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "message": "", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "display_name": "trogtwo", "hostname": "trogtwo", "state": "building", "launched_at": "", "node": "None", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "user_id": "2b8fbe55863d4dfab5310796202b2019", "image_ref_url": "http://10.0.2.15:9292/images/", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-05T22:04:17.334000", "message_id": "f90e01e0-fe1a-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "scheduling", "event_type": "compute.instance.create.start", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "message": "", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "display_name": "trogtwo", "hostname": "trogtwo", "state": "building", "launched_at": "", "node": "None", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "user_id": "2b8fbe55863d4dfab5310796202b2019", "image_ref_url": "http://10.0.2.15:9292/images/", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-05T22:04:17.297000", "message_id": "f8fd049e-fe1a-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.update", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "building", "old_state": "building", "old_task_state": "scheduling", "node": "None", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05T22:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 22:04:16", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "None", "audit_period_ending": "2013-08-05T22:04:17.295213", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-05T22:04:17.297000", "message_id": "f8fd049e-fe1a-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.update", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "building", "old_state": "building", "old_task_state": "scheduling", "node": "None", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05T22:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 22:04:16", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "None", "audit_period_ending": "2013-08-05T22:04:17.295213", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-05T22:04:16.897000", "message_id": "f8b40730-fe1a-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "scheduling", "event_type": "compute.instance.update", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "building", "old_state": "None", "old_task_state": "None", "node": "None", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "api.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05T22:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 22:04:16.779537", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "scheduling", "audit_period_ending": "2013-08-05T22:04:16.894089", "os_type": "None"}, "counter_type": "gauge"}], "http://localhost:8777/v2/meters/disk.ephemeral.size?q.field=resource_id&q.value=0a16330b-d457-425d-8249-a275fab9adea": [{"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-12T04:00:31.245000", "message_id": "bb4c0594-0303-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-12 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-12T03:00:51.472000", "message_id": "6598c414-02fb-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-12 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-12T03:00:51.472000", "message_id": "6598c414-02fb-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-12 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-12T03:00:51.472000", "message_id": "6598c414-02fb-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-12 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-12T03:00:51.472000", "message_id": "6598c414-02fb-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-12 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-12T03:00:51.472000", "message_id": "6598c414-02fb-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-12 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-12T02:00:27.736000", "message_id": "f5aa670a-02f2-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-12 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-12T01:00:47.126000", "message_id": "9f775148-02ea-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-12 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-12T00:00:24.830000", "message_id": "306123b8-02e2-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-11T23:00:42.366000", "message_id": "d91a565e-02d9-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-11T22:00:21.085000", "message_id": "6a9ffc86-02d1-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-11T21:00:30.082000", "message_id": "0e496d1c-02c9-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-11T20:00:18.172000", "message_id": "a557f2f4-02c0-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-11T20:00:18.172000", "message_id": "a557f2f4-02c0-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-11T20:00:18.172000", "message_id": "a557f2f4-02c0-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-11T20:00:18.172000", "message_id": "a557f2f4-02c0-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-11T20:00:18.172000", "message_id": "a557f2f4-02c0-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-11T19:00:11.861000", "message_id": "3fceab6a-02b8-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-11T18:00:03.078000", "message_id": "d8d56370-02af-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-11T17:00:49.790000", "message_id": "92ecb6fe-02a7-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-11T17:00:49.790000", "message_id": "92ecb6fe-02a7-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-11T17:00:49.790000", "message_id": "92ecb6fe-02a7-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-11T17:00:49.790000", "message_id": "92ecb6fe-02a7-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-11T17:00:49.790000", "message_id": "92ecb6fe-02a7-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-11T16:00:45.755000", "message_id": "2eb759b2-029f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-11T15:00:36.758000", "message_id": "c79c33d6-0296-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-11T14:00:28.007000", "message_id": "60a91444-028e-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-11T13:00:20.296000", "message_id": "fa46b8c6-0285-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-11T12:00:11.600000", "message_id": "93527d92-027d-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-11T11:00:02.954000", "message_id": "2c694b7c-0275-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-11T10:00:29.428000", "message_id": "da649f32-026c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-11T09:00:26.387000", "message_id": "76cddf7c-0264-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-11T08:00:23.284000", "message_id": "1345a474-025c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-11T07:00:19.905000", "message_id": "af70b50e-0253-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-11T06:00:16.497000", "message_id": "4bafa672-024b-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-11T05:00:05.353000", "message_id": "e333070e-0242-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-11T04:00:09.262000", "message_id": "83c629de-023a-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-11T03:00:02.197000", "message_id": "1dd5f468-0232-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-11T02:00:02.936000", "message_id": "bc75e384-0229-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-11T01:00:00.685000", "message_id": "5961e912-0221-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-11 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-11T00:00:59.549000", "message_id": "1aaef870-0219-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-10T23:00:57.127000", "message_id": "b7746946-0210-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-10T22:00:51.301000", "message_id": "523539be-0208-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-10T21:00:44.073000", "message_id": "ec38d3d0-01ff-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-10T20:00:38.932000", "message_id": "875e62ca-01f7-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-10T19:00:35.383000", "message_id": "236ff4a2-01ef-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-10T18:00:31.970000", "message_id": "bfa2b962-01e6-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-10T18:00:31.970000", "message_id": "bfa2b962-01e6-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-10T18:00:31.970000", "message_id": "bfa2b962-01e6-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-10T18:00:31.970000", "message_id": "bfa2b962-01e6-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-10T18:00:31.970000", "message_id": "bfa2b962-01e6-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-10T17:00:28.473000", "message_id": "5be9f8de-01de-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-10T16:00:25.527000", "message_id": "f843f35a-01d5-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-10T15:00:22.302000", "message_id": "94993cdc-01cd-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-10T14:00:19.221000", "message_id": "30fff65a-01c5-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-10T14:00:19.221000", "message_id": "30fff65a-01c5-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-10T14:00:19.221000", "message_id": "30fff65a-01c5-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-10T14:00:19.221000", "message_id": "30fff65a-01c5-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-10T13:00:15.758000", "message_id": "cd23d154-01bc-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-10T12:00:04.343000", "message_id": "64a379e8-01b4-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-10T11:00:00.358000", "message_id": "00729e48-01ac-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-10T10:00:57.892000", "message_id": "c0fa324c-01a3-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-10T09:00:54.347000", "message_id": "5d193d8e-019b-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-10T09:00:54.347000", "message_id": "5d193d8e-019b-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-10T08:00:51.401000", "message_id": "f9911af0-0192-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-10T07:00:47.712000", "message_id": "95951ad6-018a-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-10T06:00:44.587000", "message_id": "31f7163a-0182-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-10T05:00:41.414000", "message_id": "ce4ad494-0179-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-10T04:00:38.572000", "message_id": "6ad8b2a8-0171-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-10T04:00:38.572000", "message_id": "6ad8b2a8-0171-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-10T04:00:38.572000", "message_id": "6ad8b2a8-0171-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-10T04:00:38.572000", "message_id": "6ad8b2a8-0171-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-10T04:00:38.572000", "message_id": "6ad8b2a8-0171-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-10T03:00:35.153000", "message_id": "07084002-0169-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-10T02:00:32.271000", "message_id": "a392416a-0160-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-10T01:00:28.585000", "message_id": "3f96dbf6-0158-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-10 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-10T00:00:24.334000", "message_id": "db437cde-014f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-09T23:00:20.607000", "message_id": "774d3308-0147-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-09T22:00:17.081000", "message_id": "137075e6-013f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-09T21:00:13.526000", "message_id": "af88e944-0136-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-09T20:00:10.467000", "message_id": "4bf5d25a-012e-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-09T19:00:07.100000", "message_id": "e8284a3a-0125-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-09T19:00:07.100000", "message_id": "e8284a3a-0125-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-09T19:00:07.100000", "message_id": "e8284a3a-0125-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-09T19:00:07.100000", "message_id": "e8284a3a-0125-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-09T19:00:07.100000", "message_id": "e8284a3a-0125-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-09T18:00:05.458000", "message_id": "856a92e8-011d-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-09T17:00:01.599000", "message_id": "215e3762-0115-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-09T17:00:01.599000", "message_id": "215e3762-0115-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-09T17:00:01.599000", "message_id": "215e3762-0115-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-09T17:00:01.599000", "message_id": "215e3762-0115-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-09T17:00:01.599000", "message_id": "215e3762-0115-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-09T16:00:59.829000", "message_id": "e24e3728-010c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-09T15:00:53.235000", "message_id": "7cb00a16-0104-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-09T14:00:42.388000", "message_id": "14601b20-00fc-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-09T13:00:32.052000", "message_id": "ac7a556e-00f3-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-09T12:00:21.755000", "message_id": "44893158-00eb-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-09T11:00:11.814000", "message_id": "dcd4f57c-00e2-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-09T10:00:02.105000", "message_id": "75557780-00da-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-09T10:00:02.105000", "message_id": "75557780-00da-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-09T10:00:02.105000", "message_id": "75557780-00da-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-09T09:00:53.801000", "message_id": "326738a8-00d2-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-09T08:00:44.870000", "message_id": "cb3c16b0-00c9-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-09T07:00:35.725000", "message_id": "64041450-00c1-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-09T06:00:27.607000", "message_id": "fd6fe8de-00b8-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-09T05:00:17.975000", "message_id": "95ee4096-00b0-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-09T04:00:02.450000", "message_id": "2ae1b236-00a8-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-09T03:00:53.145000", "message_id": "e7547862-009f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-09T02:00:37.428000", "message_id": "7c43f8d4-0097-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-09T01:00:27.002000", "message_id": "14371792-008f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-09 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-09T00:00:17.161000", "message_id": "ac9bc9aa-0086-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-08T23:00:07.694000", "message_id": "452924d2-007e-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-08T22:01:01.459000", "message_id": "037089a2-0076-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-08T21:00:52.407000", "message_id": "9c4b6678-006d-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-08T20:00:43.635000", "message_id": "355d40d8-0065-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-08T19:00:36.916000", "message_id": "cf8c5828-005c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-08T18:00:29.499000", "message_id": "6952eaf2-0054-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-08T17:00:22.479000", "message_id": "03652de8-004c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-08T16:00:14.093000", "message_id": "9cab7dc6-0043-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-08T15:00:07.875000", "message_id": "3728d906-003b-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-08T14:01:00.824000", "message_id": "f4f2f63c-0032-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-08T13:00:51.788000", "message_id": "8de7003a-002a-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-08T12:00:42.737000", "message_id": "269c0f18-0022-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-08T11:00:35.894000", "message_id": "c0c76c58-0019-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-08T11:00:35.894000", "message_id": "c0c76c58-0019-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-08T11:00:35.894000", "message_id": "c0c76c58-0019-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-08T11:00:35.894000", "message_id": "c0c76c58-0019-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-08T11:00:35.894000", "message_id": "c0c76c58-0019-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-08T10:00:28.588000", "message_id": "5aad3194-0011-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-08T09:00:25.735000", "message_id": "f7323306-0008-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-08T09:00:25.735000", "message_id": "f7323306-0008-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-08T09:00:25.735000", "message_id": "f7323306-0008-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-08T09:00:25.735000", "message_id": "f7323306-0008-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-08T08:00:23.364000", "message_id": "9401d8a2-0000-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-08T07:00:21.413000", "message_id": "311b610c-fff8-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-08T07:00:21.413000", "message_id": "311b610c-fff8-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-08T07:00:21.413000", "message_id": "311b610c-fff8-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-08T07:00:21.413000", "message_id": "311b610c-fff8-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-08T07:00:21.413000", "message_id": "311b610c-fff8-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-08T06:00:19.476000", "message_id": "ce3109fa-ffef-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-08T06:00:19.476000", "message_id": "ce3109fa-ffef-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-08T06:00:19.476000", "message_id": "ce3109fa-ffef-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-08T06:00:19.476000", "message_id": "ce3109fa-ffef-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-08T06:00:19.476000", "message_id": "ce3109fa-ffef-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-08T05:00:17.635000", "message_id": "6b4c6620-ffe7-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-08T04:00:16.052000", "message_id": "0899d45c-ffdf-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-08T04:00:16.052000", "message_id": "0899d45c-ffdf-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-08T04:00:16.052000", "message_id": "0899d45c-ffdf-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-08T04:00:16.052000", "message_id": "0899d45c-ffdf-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-08T04:00:16.052000", "message_id": "0899d45c-ffdf-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-08T03:00:14.027000", "message_id": "a5a1830c-ffd6-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-08T02:00:12.238000", "message_id": "42cc39f0-ffce-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-08T02:00:12.238000", "message_id": "42cc39f0-ffce-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-08T02:00:12.238000", "message_id": "42cc39f0-ffce-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-08T01:00:10.311000", "message_id": "dfdfc8dc-ffc5-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-08 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-08T00:00:08.769000", "message_id": "7d2d1ed6-ffbd-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-07T23:00:04.027000", "message_id": "189ca37c-ffb5-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-07T22:00:01.488000", "message_id": "b5470ae0-ffac-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-07T21:00:58.494000", "message_id": "7585799e-ffa4-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-07T20:00:55.879000", "message_id": "1239b006-ff9c-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-07T19:00:51.239000", "message_id": "ada6dd60-ff93-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-07T18:00:49.736000", "message_id": "4b0470d0-ff8b-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-07T17:00:47.622000", "message_id": "e7f651d2-ff82-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-07T16:00:45.380000", "message_id": "84db0406-ff7a-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-07T15:00:43.144000", "message_id": "21c4ba22-ff72-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-07T14:00:40.910000", "message_id": "bea79642-ff69-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-07T13:00:38.123000", "message_id": "5b35daae-ff61-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-07T13:00:38.123000", "message_id": "5b35daae-ff61-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-07T13:00:38.123000", "message_id": "5b35daae-ff61-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-07T13:00:38.123000", "message_id": "5b35daae-ff61-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-07T13:00:38.123000", "message_id": "5b35daae-ff61-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-07T12:00:35.684000", "message_id": "f80b359e-ff58-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-07T12:00:35.684000", "message_id": "f80b359e-ff58-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-07T11:00:33.218000", "message_id": "94c93d26-ff50-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-07T11:00:33.218000", "message_id": "94c93d26-ff50-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-07T11:00:33.218000", "message_id": "94c93d26-ff50-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-07T10:00:29.002000", "message_id": "30830c3c-ff48-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-07T10:00:29.002000", "message_id": "30830c3c-ff48-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-07T10:00:29.002000", "message_id": "30830c3c-ff48-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-07T10:00:29.002000", "message_id": "30830c3c-ff48-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-07T10:00:29.002000", "message_id": "30830c3c-ff48-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-07T09:00:26.254000", "message_id": "cd1bf68e-ff3f-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-07T08:00:23.839000", "message_id": "69dcdb18-ff37-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-07T08:00:23.839000", "message_id": "69dcdb18-ff37-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-07T08:00:23.839000", "message_id": "69dcdb18-ff37-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-07T07:00:21.779000", "message_id": "06e5ef20-ff2f-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-07T07:00:21.779000", "message_id": "06e5ef20-ff2f-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-07T07:00:21.779000", "message_id": "06e5ef20-ff2f-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-07T07:00:21.779000", "message_id": "06e5ef20-ff2f-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-07T07:00:21.779000", "message_id": "06e5ef20-ff2f-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-07T06:00:16.470000", "message_id": "a1f5ef14-ff26-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-07T05:00:13.200000", "message_id": "3e420ec4-ff1e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-07T04:00:10.601000", "message_id": "daec0292-ff15-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-07T03:00:06.901000", "message_id": "76f0977e-ff0d-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-07T02:00:04.058000", "message_id": "137ff980-ff05-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-07T01:00:02.024000", "message_id": "b085a1fc-fefc-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-07 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-07T00:00:01.305000", "message_id": "4e513ce2-fef4-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-07T00:00:01.305000", "message_id": "4e513ce2-fef4-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-07T00:00:01.305000", "message_id": "4e513ce2-fef4-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-07T00:00:01.305000", "message_id": "4e513ce2-fef4-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-07T00:00:01.305000", "message_id": "4e513ce2-fef4-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-06T23:00:36.507000", "message_id": "01824490-feec-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-06T23:00:36.507000", "message_id": "01824490-feec-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-06T23:00:36.507000", "message_id": "01824490-feec-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-06T23:00:36.507000", "message_id": "01824490-feec-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-06T23:00:36.507000", "message_id": "01824490-feec-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-06T22:00:00.380000", "message_id": "8a36a4b0-fee3-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-06T21:00:12.977000", "message_id": "2ff94cbc-fedb-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-06T21:00:12.977000", "message_id": "2ff94cbc-fedb-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-06T21:00:12.977000", "message_id": "2ff94cbc-fedb-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-06T21:00:12.977000", "message_id": "2ff94cbc-fedb-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-06T21:00:12.977000", "message_id": "2ff94cbc-fedb-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-06T20:00:01.723000", "message_id": "c782bacc-fed2-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-06T19:00:52.391000", "message_id": "83f24f14-feca-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-06T18:00:46.021000", "message_id": "1e58db80-fec2-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-06T17:00:34.491000", "message_id": "b5b6ced2-feb9-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-06T16:00:25.336000", "message_id": "4e93348c-feb1-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-06T15:00:16.324000", "message_id": "e7579f5e-fea8-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-06T15:00:16.324000", "message_id": "e7579f5e-fea8-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-06T15:00:16.324000", "message_id": "e7579f5e-fea8-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-06T15:00:16.324000", "message_id": "e7579f5e-fea8-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-06T15:00:16.324000", "message_id": "e7579f5e-fea8-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-06T14:00:07.371000", "message_id": "8043ca3e-fea0-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-06T13:01:00.235000", "message_id": "3dfc9df2-fe98-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-06T12:00:51.015000", "message_id": "d6ba3d78-fe8f-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-06T11:00:42.301000", "message_id": "6fc5b898-fe87-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-06T10:00:33.269000", "message_id": "089ed102-fe7f-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-06T09:00:25.758000", "message_id": "a25c6e7a-fe76-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-06T08:00:15.508000", "message_id": "3a7dbb4a-fe6e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-06T07:00:06.848000", "message_id": "d390a148-fe65-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-06T06:00:59.291000", "message_id": "910a5f10-fe5d-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-06T06:00:59.291000", "message_id": "910a5f10-fe5d-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-06T06:00:59.291000", "message_id": "910a5f10-fe5d-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-06T05:00:49.947000", "message_id": "29b95cce-fe55-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-06T04:00:41.580000", "message_id": "c3125f32-fe4c-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-06T04:00:41.580000", "message_id": "c3125f32-fe4c-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-06T03:00:32.625000", "message_id": "5be77458-fe44-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-06T02:00:23.233000", "message_id": "f49410fc-fe3b-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-06T01:00:14.193000", "message_id": "8d530270-fe33-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-06 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-06T00:00:05.718000", "message_id": "26837e60-fe2b-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-05T23:00:59.003000", "message_id": "e4821272-fe22-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-05T22:04:25.488000", "message_id": "fdcb9058-fe1a-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.create.end", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "message": "Success", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "launched_at": "2013-08-05T22:04:25.234146", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-05T22:04:25.312000", "message_id": "fdb08e8e-fe1a-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.update", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "active", "old_state": "building", "old_task_state": "spawning", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05T22:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 22:04:16", "launched_at": "2013-08-05T22:04:25.234146", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "None", "audit_period_ending": "2013-08-05T22:04:25.308737", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-05T22:04:19.675000", "message_id": "fa53c648-fe1a-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "spawning", "event_type": "compute.instance.update", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "building", "old_state": "None", "old_task_state": "None", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05T22:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 22:04:16", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "spawning", "audit_period_ending": "2013-08-05T22:04:19.672662", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-05T22:04:18.771000", "message_id": "f9cbde7c-fe1a-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "spawning", "event_type": "compute.instance.update", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "building", "old_state": "building", "old_task_state": "block_device_mapping", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05T22:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 22:04:16", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "spawning", "audit_period_ending": "2013-08-05T22:04:18.769031", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-05T22:04:17.888000", "message_id": "f9459574-fe1a-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "block_device_mapping", "event_type": "compute.instance.update", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "building", "old_state": "building", "old_task_state": "networking", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05T22:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 22:04:16", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "block_device_mapping", "audit_period_ending": "2013-08-05T22:04:17.883335", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-05T22:04:17.644000", "message_id": "f9245a12-fe1a-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "networking", "event_type": "compute.instance.update", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "building", "old_state": "building", "old_task_state": "None", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05T22:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 22:04:16", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "networking", "audit_period_ending": "2013-08-05T22:04:17.642197", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-05T22:04:17.496000", "message_id": "f90e92b8-fe1a-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.update", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "building", "old_state": "None", "old_task_state": "None", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05T22:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 22:04:16", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "None", "audit_period_ending": "2013-08-05T22:04:17.490382", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-05T22:04:17.334000", "message_id": "f8f28712-fe1a-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "scheduling", "event_type": "compute.instance.create.start", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "message": "", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "display_name": "trogtwo", "hostname": "trogtwo", "state": "building", "launched_at": "", "node": "None", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "user_id": "2b8fbe55863d4dfab5310796202b2019", "image_ref_url": "http://10.0.2.15:9292/images/", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-05T22:04:17.297000", "message_id": "f8ea25d6-fe1a-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.update", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "building", "old_state": "building", "old_task_state": "scheduling", "node": "None", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05T22:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 22:04:16", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "None", "audit_period_ending": "2013-08-05T22:04:17.295213", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "0a16330b-d457-425d-8249-a275fab9adea", "timestamp": "2013-08-05T22:04:16.897000", "message_id": "f8ac9b08-fe1a-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "scheduling", "event_type": "compute.instance.update", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "building", "old_state": "None", "old_task_state": "None", "node": "None", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "api.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-05T22:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 22:04:16.779537", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "scheduling", "audit_period_ending": "2013-08-05T22:04:16.894089", "os_type": "None"}, "counter_type": "gauge"}]} \ No newline at end of file diff --git a/tests/data/map_fixture_20.json b/tests/data/map_fixture_20.json new file mode 100644 index 0000000..3aea01b --- /dev/null +++ b/tests/data/map_fixture_20.json @@ -0,0 +1 @@ +{"http://localhost:8777/v2/meters/subnet.create?q.field=resource_id&q.value=a2777ed6-7442-42b8-bb86-5b554aad7f08": [{"counter_name": "subnet.create", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "a2777ed6-7442-42b8-bb86-5b554aad7f08", "timestamp": "2013-08-05T21:56:01.107000", "message_id": "d126f9da-fe19-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "subnet", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"name": "two", "enable_dhcp": "True", "network_id": "79b5e163-496c-4ab6-9c21-3b597ed632dc", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "host": "network.openstack", "gateway_ip": "192.168.0.1", "ip_version": "4", "cidr": "192.168.0.0/24", "id": "a2777ed6-7442-42b8-bb86-5b554aad7f08", "event_type": "subnet.create.end"}, "counter_type": "delta"}], "http://localhost:8777/v2/meters/subnet?q.field=resource_id&q.value=a2777ed6-7442-42b8-bb86-5b554aad7f08": [{"counter_name": "subnet", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "a2777ed6-7442-42b8-bb86-5b554aad7f08", "timestamp": "2013-08-05T21:56:01.107000", "message_id": "d1264c1a-fe19-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "subnet", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"name": "two", "enable_dhcp": "True", "network_id": "79b5e163-496c-4ab6-9c21-3b597ed632dc", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "host": "network.openstack", "gateway_ip": "192.168.0.1", "ip_version": "4", "cidr": "192.168.0.0/24", "id": "a2777ed6-7442-42b8-bb86-5b554aad7f08", "event_type": "subnet.create.end"}, "counter_type": "gauge"}]} \ No newline at end of file diff --git a/tests/data/map_fixture_21.json b/tests/data/map_fixture_21.json new file mode 100644 index 0000000..5497d27 --- /dev/null +++ b/tests/data/map_fixture_21.json @@ -0,0 +1 @@ +{"http://localhost:8777/v2/meters/volume?q.field=resource_id&q.value=a5696083-56d2-4e25-a0cb-2b51bd2ca90d": [{"counter_name": "volume", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "a5696083-56d2-4e25-a0cb-2b51bd2ca90d", "timestamp": "2013-08-05T03:50:05.084000", "message_id": "1d224d8c-fd82-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "volume", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"status": "available", "display_name": "tests", "event_type": "volume.create.end", "availability_zone": "nova", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 03:50:03", "volume_id": "a5696083-56d2-4e25-a0cb-2b51bd2ca90d", "volume_type": "2fbf14d8-e544-487e-aba7-98c1ebba8fcd", "host": "volume.openstack", "snapshot_id": "None", "user_id": "2b8fbe55863d4dfab5310796202b2019", "launched_at": "", "size": "1"}, "counter_type": "gauge"}], "http://localhost:8777/v2/meters/volume.size?q.field=resource_id&q.value=a5696083-56d2-4e25-a0cb-2b51bd2ca90d": [{"counter_name": "volume.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "a5696083-56d2-4e25-a0cb-2b51bd2ca90d", "timestamp": "2013-08-05T03:50:05.084000", "message_id": "1d244fd8-fd82-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"status": "available", "display_name": "tests", "event_type": "volume.create.end", "availability_zone": "nova", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 03:50:03", "volume_id": "a5696083-56d2-4e25-a0cb-2b51bd2ca90d", "volume_type": "2fbf14d8-e544-487e-aba7-98c1ebba8fcd", "host": "volume.openstack", "snapshot_id": "None", "user_id": "2b8fbe55863d4dfab5310796202b2019", "launched_at": "", "size": "1"}, "counter_type": "gauge"}]} \ No newline at end of file diff --git a/tests/data/map_fixture_22.json b/tests/data/map_fixture_22.json new file mode 100644 index 0000000..77e9c9e --- /dev/null +++ b/tests/data/map_fixture_22.json @@ -0,0 +1 @@ +{"http://localhost:8777/v2/meters/image.serve?q.field=resource_id&q.value=b23fbced-b272-41a6-8f48-be76b586bd00": [{"counter_name": "image.serve", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-04T23:58:50.453000", "message_id": "cf36854a-fd61-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"receiver_tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "destination_ip": "10.0.2.15", "event_type": "image.send", "bytes_sent": "3714968", "image_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "host": "openstack", "receiver_user_id": "2b8fbe55863d4dfab5310796202b2019", "owner_id": "0c5a6b84fd2a43999c8820060c57da30"}, "counter_type": "delta"}], "http://localhost:8777/v2/meters/image.size?q.field=resource_id&q.value=b23fbced-b272-41a6-8f48-be76b586bd00": [{"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-12T04:01:18", "message_id": "d74cd62e-0303-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-12T03:51:18", "message_id": "719fa12c-0302-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-12T03:41:18", "message_id": "0beeb440-0301-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-12T03:31:18", "message_id": "a64fd692-02ff-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-12T03:21:18", "message_id": "409fb8c2-02fe-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-12T03:11:17", "message_id": "daf625de-02fc-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-12T03:01:17", "message_id": "7539968c-02fb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-12T02:51:17", "message_id": "0f977bf6-02fa-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-12T02:41:17", "message_id": "a9d42018-02f8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-12T02:31:17", "message_id": "443435aa-02f7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-12T02:21:17", "message_id": "de7df850-02f5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-12T02:11:17", "message_id": "78cf93e8-02f4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-12T02:01:17", "message_id": "13249404-02f3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-12T01:51:17", "message_id": "ad792486-02f1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-12T01:41:17", "message_id": "47c25712-02f0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-12T01:31:17", "message_id": "e21950ba-02ee-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-12T01:21:16", "message_id": "7c6363c4-02ed-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-12T01:11:16", "message_id": "16b97474-02ec-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-12T01:01:16", "message_id": "b0fbb0f8-02ea-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-12T00:51:16", "message_id": "4b57e650-02e9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-12T00:41:16", "message_id": "e59f93b8-02e7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-12T00:31:16", "message_id": "7ff0d262-02e6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-12T00:21:16", "message_id": "1a6ce0b2-02e5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-12T00:11:16", "message_id": "b496022e-02e3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-12T00:01:16", "message_id": "4ee5ccee-02e2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T23:51:16", "message_id": "e93b79e4-02e0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T23:41:15", "message_id": "8396919c-02df-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T23:31:15", "message_id": "1debab26-02de-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T23:21:15", "message_id": "b8311bdc-02dc-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T23:11:15", "message_id": "528b8a84-02db-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T23:01:15", "message_id": "ed08b282-02d9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T22:51:15", "message_id": "872e4392-02d8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T22:41:15", "message_id": "217d331a-02d7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T22:31:15", "message_id": "bbd094cc-02d5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T22:21:15", "message_id": "561ee9cc-02d4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T22:11:15", "message_id": "f06decf0-02d2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T22:01:15", "message_id": "8ac44e7c-02d1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T21:51:15", "message_id": "251b7aba-02d0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T21:41:14", "message_id": "bf6f1fce-02ce-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T21:31:14", "message_id": "59bce6bc-02cd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T21:21:14", "message_id": "f411f98e-02cb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T21:11:14", "message_id": "8e618ace-02ca-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T21:01:14", "message_id": "28b1ea80-02c9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T20:51:14", "message_id": "c304ba42-02c7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T20:41:14", "message_id": "5d52a32c-02c6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T20:31:14", "message_id": "f7a7b428-02c4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T20:21:14", "message_id": "91fd1218-02c3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T20:11:14", "message_id": "2c57f140-02c2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T20:01:14", "message_id": "c6a15f5e-02c0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T19:51:14", "message_id": "60f8e70e-02bf-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T19:41:13", "message_id": "fb42f31a-02bd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T19:31:13", "message_id": "959c8c52-02bc-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T19:21:13", "message_id": "2febc2a2-02bb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T19:11:13", "message_id": "ca376606-02b9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T19:01:13", "message_id": "64828a6c-02b8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T18:51:13", "message_id": "fed23024-02b6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T18:41:13", "message_id": "99264f54-02b5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T18:31:13", "message_id": "33757208-02b4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T18:21:13", "message_id": "cdc5ce4a-02b2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T18:11:13", "message_id": "68190dec-02b1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T18:01:12", "message_id": "02665974-02b0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T17:51:12", "message_id": "9cbc9af8-02ae-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T17:41:12", "message_id": "370afdfe-02ad-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T17:31:12", "message_id": "d16078d6-02ab-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T17:21:12", "message_id": "6bacab28-02aa-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T17:11:12", "message_id": "05fd52a6-02a9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T17:01:12", "message_id": "a05f4888-02a7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T16:51:12", "message_id": "3aae4fa8-02a6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T16:41:12", "message_id": "d50b51c4-02a4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T16:31:12", "message_id": "6f5499ae-02a3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T16:21:12", "message_id": "099e6c94-02a2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T16:11:11", "message_id": "a3f3c304-02a0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T16:01:11", "message_id": "3e50dbe6-029f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T15:51:11", "message_id": "d89fa62a-029d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T15:41:11", "message_id": "72fdcc9e-029c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T15:31:11", "message_id": "0d58dfc4-029b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T15:21:11", "message_id": "a7b898fe-0299-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T15:11:11", "message_id": "4201cfe0-0298-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T15:01:11", "message_id": "dc516508-0296-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T14:51:11", "message_id": "769c944a-0295-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T14:41:11", "message_id": "10eff174-0294-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T14:31:11", "message_id": "ab400266-0292-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T14:21:11", "message_id": "458f2f06-0291-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T14:11:11", "message_id": "dfe0bd60-028f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T14:01:11", "message_id": "7a3c0376-028e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T13:51:10", "message_id": "148f3260-028d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T13:41:10", "message_id": "aee10444-028b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T13:31:10", "message_id": "49345642-028a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T13:21:10", "message_id": "e382a2be-0288-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T13:11:10", "message_id": "7ddbb406-0287-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T13:01:10", "message_id": "1831ce2a-0286-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T12:51:10", "message_id": "b279631e-0284-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T12:41:10", "message_id": "4ccf9e9e-0283-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T12:31:10", "message_id": "e71af770-0281-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T12:21:10", "message_id": "816ae6f2-0280-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T12:11:10", "message_id": "1bbd6920-027f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T12:01:09", "message_id": "b60a864a-027d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T11:51:09", "message_id": "506429c8-027c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T11:41:09", "message_id": "eaa728e8-027a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T11:31:09", "message_id": "84fd1382-0279-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T11:21:09", "message_id": "1f4c1db8-0278-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T11:11:09", "message_id": "b99dbb4e-0276-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T11:01:09", "message_id": "53efee4e-0275-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T10:51:09", "message_id": "ee3ceb48-0273-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T10:41:09", "message_id": "889322c2-0272-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T10:31:09", "message_id": "22e3b2da-0271-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T10:21:09", "message_id": "bd31d4e0-026f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T10:11:09", "message_id": "57936172-026e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T10:01:08", "message_id": "f1df4324-026c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T09:51:08", "message_id": "8c30d3e0-026b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T09:41:08", "message_id": "267f9212-026a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T09:31:08", "message_id": "c0d5a768-0268-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T09:21:08", "message_id": "5b261926-0267-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T09:11:08", "message_id": "f57eb20a-0265-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T09:01:08", "message_id": "8fcce73e-0264-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T08:51:08", "message_id": "2a2a6e3e-0263-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T08:41:08", "message_id": "c47fb568-0261-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T08:31:08", "message_id": "5ed357a2-0260-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T08:21:08", "message_id": "f9194f62-025e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T08:11:07", "message_id": "936b1034-025d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T08:01:07", "message_id": "2dbe1c82-025c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T07:51:07", "message_id": "c80e3062-025a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T07:41:07", "message_id": "62606ca4-0259-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T07:31:07", "message_id": "fcb728e4-0257-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T07:21:07", "message_id": "9706e9a4-0256-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T07:11:07", "message_id": "314ea2b0-0255-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T07:01:07", "message_id": "cba92684-0253-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T06:51:07", "message_id": "65f9126e-0252-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T06:41:07", "message_id": "0047a1ca-0251-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T06:31:07", "message_id": "9a9a260a-024f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T06:21:07", "message_id": "34f889aa-024e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T06:11:06", "message_id": "cf44c818-024c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T06:01:06", "message_id": "69aac5a8-024b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T05:51:06", "message_id": "03edcea0-024a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T05:41:06", "message_id": "9e4027a2-0248-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T05:31:06", "message_id": "3889d7d8-0247-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T05:21:06", "message_id": "d2d88962-0245-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T05:11:06", "message_id": "6d25f312-0244-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T05:01:06", "message_id": "077d1fd2-0243-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T04:51:06", "message_id": "a1d4ba1a-0241-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T04:41:06", "message_id": "3c226326-0240-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T04:31:06", "message_id": "d6768a44-023e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T04:21:06", "message_id": "70cdd932-023d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T04:11:05", "message_id": "0b144cee-023c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T04:01:05", "message_id": "a56ddd84-023a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T03:51:05", "message_id": "3fbfe262-0239-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T03:41:05", "message_id": "da1a207c-0237-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T03:31:05", "message_id": "7460595a-0236-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T03:21:05", "message_id": "0eaefb80-0235-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T03:11:05", "message_id": "a9021eda-0233-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T03:01:05", "message_id": "434c2f96-0232-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T02:51:05", "message_id": "dd99bd54-0230-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T02:41:04", "message_id": "77e2c13c-022f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T02:31:04", "message_id": "123da3b6-022e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T02:21:04", "message_id": "ac899bc0-022c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T02:11:04", "message_id": "46de0730-022b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T02:01:04", "message_id": "e13b4222-0229-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T01:51:04", "message_id": "7b82bf56-0228-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T01:41:04", "message_id": "15e42c3a-0227-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T01:31:04", "message_id": "b032302c-0225-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T01:21:04", "message_id": "4a6c931e-0224-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T01:11:04", "message_id": "e4bc74a4-0222-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T01:01:04", "message_id": "7f1923c8-0221-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T00:51:03", "message_id": "1961afba-0220-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T00:41:03", "message_id": "b3b4ad58-021e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T00:31:03", "message_id": "4e07045c-021d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T00:21:03", "message_id": "e855679e-021b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T00:11:03", "message_id": "82a63d84-021a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T00:01:03", "message_id": "1cfa7636-0219-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T23:51:03", "message_id": "b74b827c-0217-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T23:41:03", "message_id": "519b65e2-0216-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T23:31:03", "message_id": "ebf1bbb6-0214-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T23:21:03", "message_id": "86484dd0-0213-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T23:11:03", "message_id": "209167de-0212-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T23:01:03", "message_id": "bb2365b0-0210-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T22:51:02", "message_id": "55470338-020f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T22:41:07", "message_id": "f23e030a-020d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T22:31:02", "message_id": "89f27444-020c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T22:21:02", "message_id": "243bb314-020b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T22:11:02", "message_id": "be9b5132-0209-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T22:01:02", "message_id": "58d85d28-0208-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T21:51:02", "message_id": "f3427404-0206-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T21:41:02", "message_id": "8d8e247e-0205-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T21:31:02", "message_id": "27db34ce-0204-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T21:21:02", "message_id": "c23ba01e-0202-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T21:11:02", "message_id": "5c86c664-0201-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T21:01:02", "message_id": "f6cc8a4e-01ff-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T20:51:02", "message_id": "913b4e1e-01fe-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T20:41:01", "message_id": "2b7a8744-01fd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T20:31:01", "message_id": "c5e12f4c-01fb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T20:21:01", "message_id": "6019af32-01fa-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T20:11:01", "message_id": "fa5d8af2-01f8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T20:01:01", "message_id": "94baf67c-01f7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T19:51:01", "message_id": "2f07c8ba-01f6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T19:41:01", "message_id": "c95a0416-01f4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T19:31:01", "message_id": "63b93718-01f3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T19:21:01", "message_id": "fdeecc78-01f1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T19:11:01", "message_id": "984ee6ba-01f0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T19:01:00", "message_id": "329de93e-01ef-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T18:51:00", "message_id": "cce2b6ca-01ed-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T18:41:00", "message_id": "67456eee-01ec-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T18:31:00", "message_id": "01926d1e-01eb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T18:21:00", "message_id": "9be0c0ca-01e9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T18:11:00", "message_id": "362c6e4c-01e8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T18:01:00", "message_id": "d07d62aa-01e6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T17:51:00", "message_id": "6ad5341a-01e5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T17:41:00", "message_id": "052b622a-01e4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T17:31:00", "message_id": "9f760a30-01e2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T17:21:00", "message_id": "39cb1e1a-01e1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T17:10:59", "message_id": "d415aea6-01df-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T17:00:59", "message_id": "6e675aba-01de-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T16:50:59", "message_id": "08bc7e94-01dd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T16:40:59", "message_id": "a3092184-01db-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T16:30:59", "message_id": "3d5ecee8-01da-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T16:20:59", "message_id": "d7a9e1e2-01d8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T16:10:59", "message_id": "7203d3a8-01d7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T16:00:59", "message_id": "0c55e2a4-01d6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T15:50:59", "message_id": "a6ab1b32-01d4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T15:40:59", "message_id": "4107ce8e-01d3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T15:30:59", "message_id": "db587a94-01d1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T15:20:59", "message_id": "75ab5c08-01d0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T15:10:58", "message_id": "0ffb67d2-01cf-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T15:00:58", "message_id": "aa4f3252-01cd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T14:50:58", "message_id": "44a4f08c-01cc-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T14:40:58", "message_id": "dee8b478-01ca-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T14:30:58", "message_id": "79351744-01c9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T14:20:58", "message_id": "13851152-01c8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T14:10:58", "message_id": "addaa200-01c6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T14:00:58", "message_id": "48333350-01c5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T13:50:58", "message_id": "e282f9b0-01c3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T13:40:58", "message_id": "7ccc02de-01c2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T13:30:58", "message_id": "17289b32-01c1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T13:20:57", "message_id": "b17053da-01bf-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T13:10:57", "message_id": "4bc32720-01be-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T13:00:57", "message_id": "e6193dfc-01bc-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T12:50:57", "message_id": "80636718-01bb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T12:40:57", "message_id": "1ab96d5a-01ba-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T12:30:57", "message_id": "b5121cd2-01b8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T12:20:57", "message_id": "4f64e302-01b7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T12:10:57", "message_id": "e9bc197c-01b5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T12:00:57", "message_id": "84099010-01b4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T11:50:57", "message_id": "1e5a456c-01b3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T11:40:57", "message_id": "b8ade210-01b1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T11:30:56", "message_id": "52f896f0-01b0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T11:20:56", "message_id": "ed4a0042-01ae-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T11:10:56", "message_id": "87adc06c-01ad-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T11:00:56", "message_id": "21e5732a-01ac-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T10:50:56", "message_id": "bc4b743e-01aa-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T10:40:56", "message_id": "569bf4a2-01a9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T10:30:56", "message_id": "f0f36f64-01a7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T10:20:56", "message_id": "8b3a34d8-01a6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T10:10:56", "message_id": "25967bba-01a5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T10:00:56", "message_id": "bfe9d43e-01a3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T09:50:56", "message_id": "5a32c1c4-01a2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T09:40:56", "message_id": "f488f470-01a0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T09:30:56", "message_id": "8ee62936-019f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T09:20:55", "message_id": "292b9c30-019e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T09:10:55", "message_id": "c381950c-019c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T09:00:55", "message_id": "5dea2b24-019b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T08:50:55", "message_id": "f8240f18-0199-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T08:40:55", "message_id": "92848fe4-0198-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T08:30:55", "message_id": "2cb9e106-0197-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T08:20:55", "message_id": "c71858ce-0195-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T08:10:55", "message_id": "615a9aac-0194-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T08:00:55", "message_id": "fbae465a-0192-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T07:50:55", "message_id": "961082aa-0191-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T07:40:55", "message_id": "306600c0-0190-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T07:30:54", "message_id": "cab268c8-018e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T07:20:54", "message_id": "65086aa0-018d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T07:10:54", "message_id": "ff5ad8ce-018b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T07:00:54", "message_id": "99a73ee2-018a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T06:50:54", "message_id": "33fc32c4-0189-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T06:40:54", "message_id": "ce4fcfcc-0187-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T06:30:54", "message_id": "68a53e6a-0186-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T06:20:54", "message_id": "02f2703e-0185-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T06:10:54", "message_id": "9d3d384c-0183-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T06:00:54", "message_id": "378bf0e8-0182-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T05:50:54", "message_id": "d1e6944c-0180-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T05:40:53", "message_id": "6c377996-017f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T05:30:53", "message_id": "067ee6d0-017e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T05:20:53", "message_id": "a0d7aa66-017c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T05:10:53", "message_id": "3b298262-017b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T05:00:53", "message_id": "d584b78e-0179-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T04:50:53", "message_id": "6fc87684-0178-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T04:40:53", "message_id": "0a16c09e-0177-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T04:30:53", "message_id": "a467bb78-0175-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T04:20:53", "message_id": "3eb9254c-0174-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T04:10:53", "message_id": "d90a9c18-0172-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T04:00:53", "message_id": "73663404-0171-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T03:50:52", "message_id": "0db5eba0-0170-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T03:40:52", "message_id": "a80bbbb4-016e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T03:30:52", "message_id": "425caa54-016d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T03:20:52", "message_id": "dcaca7e6-016b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T03:10:52", "message_id": "76feb07a-016a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T03:00:52", "message_id": "11518a82-0169-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T02:50:52", "message_id": "aba20bea-0167-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T02:40:52", "message_id": "45efba3c-0166-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T02:30:52", "message_id": "e0410d4a-0164-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T02:20:52", "message_id": "7a9ff772-0163-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T02:10:52", "message_id": "14f4884e-0162-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T02:00:51", "message_id": "af403080-0160-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T01:50:52", "message_id": "49b30d6a-015f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T01:40:51", "message_id": "e3f63f20-015d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T01:30:51", "message_id": "7e41ddf2-015c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T01:20:51", "message_id": "18a237ae-015b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T01:10:51", "message_id": "b2f2ecec-0159-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T01:00:51", "message_id": "4d4cfbf4-0158-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T00:50:51", "message_id": "e7709580-0156-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T00:40:51", "message_id": "81ce5bfa-0155-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T00:30:51", "message_id": "1c1cc590-0154-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T00:20:51", "message_id": "b6677016-0152-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T00:10:51", "message_id": "50c104bc-0151-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T00:00:50", "message_id": "eb10a97a-014f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T23:50:50", "message_id": "855d2d70-014e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T23:40:50", "message_id": "1fab96c0-014d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T23:30:50", "message_id": "b9f56758-014b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T23:20:50", "message_id": "54546210-014a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T23:10:50", "message_id": "eea2eb04-0148-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T23:00:50", "message_id": "891d791c-0147-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T22:50:50", "message_id": "2346bb36-0146-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T22:40:50", "message_id": "bd900ff0-0144-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T22:30:50", "message_id": "57e562e6-0143-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T22:20:50", "message_id": "f2482d48-0141-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T22:10:49", "message_id": "8c85d678-0140-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T22:00:49", "message_id": "26e2c822-013f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T21:50:49", "message_id": "c137274e-013d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T21:40:49", "message_id": "5b883542-013c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T21:30:49", "message_id": "f5e1e9e6-013a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T21:20:49", "message_id": "903455da-0139-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T21:10:49", "message_id": "2a8d1d30-0138-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T21:00:49", "message_id": "c4e33dd0-0136-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T20:50:49", "message_id": "5f314366-0135-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T20:40:49", "message_id": "f9875574-0133-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T20:30:49", "message_id": "93cc1932-0132-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T20:20:49", "message_id": "2e33a37a-0131-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T20:10:48", "message_id": "c879c24a-012f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T20:00:48", "message_id": "62c65108-012e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T19:50:48", "message_id": "fd2225b2-012c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T19:40:48", "message_id": "976a728e-012b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T19:30:48", "message_id": "31c4a702-012a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T19:20:48", "message_id": "cc23d888-0128-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T19:10:48", "message_id": "66688666-0127-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T19:00:48", "message_id": "00b10a38-0126-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T18:50:48", "message_id": "9afabf32-0124-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T18:40:48", "message_id": "35516efc-0123-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T18:30:48", "message_id": "cfa108d4-0121-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T18:20:47", "message_id": "69eeeb6a-0120-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T18:10:47", "message_id": "043e16d4-011f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T18:00:47", "message_id": "9e89f728-011d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T17:50:47", "message_id": "38e039d8-011c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T17:40:47", "message_id": "d32e301e-011a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T17:30:47", "message_id": "6d7dbd44-0119-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T17:20:47", "message_id": "07d25046-0118-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T17:10:47", "message_id": "a2204de4-0116-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T17:00:47", "message_id": "3c75bea8-0115-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T16:50:47", "message_id": "d6c1281e-0113-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T16:40:46", "message_id": "71122cd0-0112-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T16:30:46", "message_id": "0b73d4ec-0111-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T16:20:46", "message_id": "a5b9ee4e-010f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T16:10:46", "message_id": "4012247c-010e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T16:00:46", "message_id": "da616a44-010c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T15:50:48", "message_id": "7608f7ca-010b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T15:40:47", "message_id": "0f5aa2b8-010a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T15:30:46", "message_id": "a9747eac-0108-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T15:20:46", "message_id": "43ad3e52-0107-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T15:10:46", "message_id": "de12bf32-0105-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T15:00:46", "message_id": "78551c68-0104-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T14:50:46", "message_id": "12a9a89e-0103-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T14:40:45", "message_id": "acf83a66-0101-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T14:30:45", "message_id": "474520f4-0100-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T14:20:45", "message_id": "e19a7106-00fe-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T14:10:45", "message_id": "7bf3d032-00fd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T14:00:45", "message_id": "1638674a-00fc-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T13:50:45", "message_id": "b09243b2-00fa-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T13:40:45", "message_id": "4ad893d8-00f9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T13:30:45", "message_id": "e52d6d7a-00f7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T13:20:45", "message_id": "7fd1c56c-00f6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T13:10:45", "message_id": "19c55cb2-00f5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T13:00:45", "message_id": "b41fd370-00f3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T12:50:44", "message_id": "4e67bd28-00f2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T12:40:44", "message_id": "e8c19058-00f0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T12:30:44", "message_id": "8315854e-00ef-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T12:20:44", "message_id": "1d61cff6-00ee-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T12:10:44", "message_id": "b7b54db4-00ec-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T12:00:44", "message_id": "520793c4-00eb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T11:50:44", "message_id": "ec56fb7e-00e9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T11:40:44", "message_id": "86a7f324-00e8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T11:30:44", "message_id": "21024700-00e7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T11:20:44", "message_id": "bb4f2fa0-00e5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T11:10:44", "message_id": "55a56332-00e4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T11:00:43", "message_id": "efee2b4c-00e2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T10:50:43", "message_id": "8a4204a4-00e1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T10:40:43", "message_id": "248fda4c-00e0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T10:30:43", "message_id": "bee7d380-00de-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T10:20:43", "message_id": "592fbcfc-00dd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T10:10:43", "message_id": "f38675fe-00db-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T10:00:43", "message_id": "8dea55cc-00da-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T09:50:43", "message_id": "282ab250-00d9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T09:40:43", "message_id": "c2813858-00d7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T09:30:43", "message_id": "5cd255ce-00d6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T09:20:43", "message_id": "f726902e-00d4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T09:10:43", "message_id": "917bf184-00d3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T09:00:42", "message_id": "2bcc5852-00d2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T08:50:42", "message_id": "c619aa42-00d0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T08:40:42", "message_id": "606e7340-00cf-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T08:30:42", "message_id": "fac73b40-00cd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T08:20:42", "message_id": "95185f3c-00cc-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T08:10:42", "message_id": "2f63b9f8-00cb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T08:00:42", "message_id": "c9b329dc-00c9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T07:50:42", "message_id": "6404c9d4-00c8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T07:40:42", "message_id": "fe6748f0-00c6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T07:30:42", "message_id": "98add570-00c5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T07:20:41", "message_id": "32f59d4a-00c4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T07:10:41", "message_id": "cd456d82-00c2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T07:00:41", "message_id": "6799f4d6-00c1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T06:50:41", "message_id": "01e74ebe-00c0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T06:40:41", "message_id": "9c3c4a02-00be-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T06:30:41", "message_id": "36907558-00bd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T06:20:41", "message_id": "d0da22fa-00bb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T06:10:41", "message_id": "6b2eb6ec-00ba-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T06:00:41", "message_id": "058e669e-00b9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T05:50:41", "message_id": "9fd7c3fa-00b7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T05:40:41", "message_id": "3a2d2352-00b6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T05:30:41", "message_id": "d47b5ab6-00b4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T05:20:40", "message_id": "6ecda5ee-00b3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T05:10:40", "message_id": "0920927a-00b2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T05:00:40", "message_id": "a3768e08-00b0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T04:50:40", "message_id": "3dd69972-00af-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T04:40:40", "message_id": "d82e35c2-00ad-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T04:30:40", "message_id": "728014b2-00ac-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T04:20:40", "message_id": "0cdb48a8-00ab-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T04:10:40", "message_id": "a73722d4-00a9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T04:00:40", "message_id": "419d66b4-00a8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T03:50:40", "message_id": "dc27968e-00a6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T03:40:40", "message_id": "763ea25a-00a5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T03:30:40", "message_id": "10b6ebbe-00a4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T03:20:40", "message_id": "aaea171c-00a2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T03:10:40", "message_id": "45425312-00a1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T03:00:40", "message_id": "df99bfec-009f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T02:50:40", "message_id": "79df9d62-009e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T02:40:40", "message_id": "14592608-009d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T02:30:39", "message_id": "ae869168-009b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T02:20:39", "message_id": "48dae9c8-009a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T02:10:39", "message_id": "e320d8fa-0098-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T02:00:39", "message_id": "7d820ba0-0097-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T01:50:39", "message_id": "17bc9570-0096-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T01:40:39", "message_id": "b20b4aec-0094-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T01:30:39", "message_id": "4c5f3452-0093-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T01:20:39", "message_id": "e6b75ca2-0091-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T01:10:39", "message_id": "8102c83e-0090-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T01:00:39", "message_id": "1b5cd476-008f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T00:50:38", "message_id": "b5a80d9a-008d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T00:40:38", "message_id": "4ff23710-008c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T00:30:38", "message_id": "ea4e3a0e-008a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T00:20:38", "message_id": "84a86f7c-0089-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T00:10:38", "message_id": "1ef44c4c-0088-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T00:00:38", "message_id": "b94485a2-0086-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T23:50:38", "message_id": "538f32f8-0085-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T23:40:38", "message_id": "ede6e79e-0083-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T23:30:38", "message_id": "88340a86-0082-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T23:20:38", "message_id": "227e7cae-0081-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T23:10:38", "message_id": "bcd57d0e-007f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T23:00:38", "message_id": "57531c30-007e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T22:50:37", "message_id": "f17804da-007c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T22:40:37", "message_id": "8bd05a70-007b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T22:30:37", "message_id": "261285e2-007a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T22:20:37", "message_id": "c06b7358-0078-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T22:10:37", "message_id": "5abd249e-0077-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T22:00:37", "message_id": "f50d6678-0075-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T21:50:37", "message_id": "8f5f38f2-0074-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T21:40:37", "message_id": "29b5065e-0073-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T21:30:37", "message_id": "c4073332-0071-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T21:20:37", "message_id": "5e64dfee-0070-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T21:10:36", "message_id": "f8add184-006e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T21:00:36", "message_id": "92f4fe22-006d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T20:50:36", "message_id": "2d481f42-006c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T20:40:36", "message_id": "c7988ab6-006a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T20:30:36", "message_id": "61f05b18-0069-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T20:20:36", "message_id": "fc399b96-0067-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T20:10:36", "message_id": "96955722-0066-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T20:00:36", "message_id": "30dc5788-0065-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T19:50:36", "message_id": "cb3393e8-0063-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T19:40:36", "message_id": "65828c4e-0062-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T19:30:35", "message_id": "ffcffd6a-0060-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T19:20:35", "message_id": "9a20498a-005f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T19:10:35", "message_id": "34744f4c-005e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T19:00:35", "message_id": "cec78020-005c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T18:50:35", "message_id": "6914aa4c-005b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T18:40:35", "message_id": "0366af02-005a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T18:30:35", "message_id": "9dc4db20-0058-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T18:20:35", "message_id": "38072afa-0057-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T18:10:35", "message_id": "d25d5356-0055-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T18:00:35", "message_id": "6cb4535c-0054-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T17:50:35", "message_id": "07080de2-0053-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T17:40:35", "message_id": "a15fec04-0051-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T17:30:35", "message_id": "3bb22562-0050-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T17:20:34", "message_id": "d60176ba-004e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T17:10:34", "message_id": "7051a9b2-004d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T17:00:34", "message_id": "0aa14f38-004c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T16:50:34", "message_id": "a4f3043e-004a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T16:40:34", "message_id": "3f4fac50-0049-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T16:30:34", "message_id": "d99f15a4-0047-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T16:20:34", "message_id": "73f3f1a8-0046-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T16:10:34", "message_id": "0e4301c4-0045-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T16:00:34", "message_id": "a89a120a-0043-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T15:50:34", "message_id": "42ed222c-0042-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T15:40:34", "message_id": "dd38d5e4-0040-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T15:30:33", "message_id": "778db4f4-003f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T15:20:33", "message_id": "11e2b682-003e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T15:10:33", "message_id": "ac344c48-003c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T15:00:33", "message_id": "467efeb2-003b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T14:50:33", "message_id": "e0d53ab4-0039-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T14:40:33", "message_id": "7b203d3c-0038-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T14:30:33", "message_id": "1577ef12-0037-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T14:20:33", "message_id": "afc624c8-0035-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T14:10:33", "message_id": "4a24e9ac-0034-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T14:00:33", "message_id": "e4928906-0032-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T13:50:33", "message_id": "7eba0740-0031-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T13:40:33", "message_id": "190ebaa4-0030-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T13:30:32", "message_id": "b36472ee-002e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T13:20:32", "message_id": "4dbc13f8-002d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T13:10:32", "message_id": "e807e696-002b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T13:00:32", "message_id": "8256bdf0-002a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T12:50:32", "message_id": "1cad76de-0029-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T12:40:32", "message_id": "b6f5872e-0027-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T12:30:32", "message_id": "514fa05e-0026-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T12:20:32", "message_id": "eb96844a-0024-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T12:10:32", "message_id": "85e350ac-0023-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T12:00:32", "message_id": "203d7526-0022-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T11:50:31", "message_id": "ba8c8fc4-0020-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T11:40:32", "message_id": "54f234bc-001f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T11:30:31", "message_id": "ef46b288-001d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T11:20:31", "message_id": "898dcc20-001c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T11:10:31", "message_id": "23f19e06-001b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T11:00:31", "message_id": "be39e7d6-0019-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T10:50:31", "message_id": "58905312-0018-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T10:40:31", "message_id": "f2ea2ce6-0016-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T10:30:31", "message_id": "8d4242b2-0015-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T10:20:31", "message_id": "27994b28-0014-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T10:10:31", "message_id": "c201eb0e-0012-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T10:00:31", "message_id": "5c2f1e2e-0011-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T09:50:31", "message_id": "f67ea3ac-000f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T09:40:30", "message_id": "90caccc6-000e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T09:30:30", "message_id": "2b23f178-000d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T09:20:30", "message_id": "c56df1ae-000b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T09:10:30", "message_id": "5fbc3934-000a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T09:00:30", "message_id": "fa140720-0008-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T08:50:30", "message_id": "9467a8c4-0007-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T08:40:30", "message_id": "2ebbf94a-0006-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T08:30:30", "message_id": "c9174168-0004-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T08:20:30", "message_id": "635c396a-0003-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T08:10:30", "message_id": "fdbd09fa-0001-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T08:00:30", "message_id": "98046384-0000-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T07:50:30", "message_id": "325011ec-ffff-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T07:40:29", "message_id": "cca2f838-fffd-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T07:30:29", "message_id": "66f36bb8-fffc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T07:20:29", "message_id": "014add6a-fffb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T07:10:29", "message_id": "9b964c30-fff9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T07:00:29", "message_id": "35e0ebe4-fff8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T06:50:29", "message_id": "d03e98d2-fff6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T06:40:29", "message_id": "6a889728-fff5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T06:30:29", "message_id": "04d76d38-fff4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T06:20:29", "message_id": "9f27af80-fff2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T06:10:29", "message_id": "397c8710-fff1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T06:00:29", "message_id": "d3d1c4d0-ffef-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T05:50:28", "message_id": "6e246fda-ffee-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T05:40:28", "message_id": "087ffaba-ffed-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T05:30:28", "message_id": "a2cd048e-ffeb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T05:20:28", "message_id": "3d16e5e8-ffea-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T05:10:28", "message_id": "d76bcb7e-ffe8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T05:00:28", "message_id": "71bf7a4c-ffe7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T04:50:28", "message_id": "0c06eeac-ffe6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T04:40:28", "message_id": "a663ceea-ffe4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T04:30:28", "message_id": "40aa4c88-ffe3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T04:20:28", "message_id": "db0471e8-ffe1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T04:10:28", "message_id": "754fc416-ffe0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T04:00:27", "message_id": "0f9cd3b2-ffdf-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T03:50:27", "message_id": "a9ea8a24-ffdd-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T03:40:27", "message_id": "44404f66-ffdc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T03:30:27", "message_id": "de92ae26-ffda-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T03:20:27", "message_id": "78e1fcb8-ffd9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T03:10:27", "message_id": "13371b4c-ffd8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T03:00:27", "message_id": "ad84b760-ffd6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T02:50:27", "message_id": "47d53c10-ffd5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T02:40:27", "message_id": "e222d360-ffd3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T02:30:27", "message_id": "7c794d1a-ffd2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T02:20:27", "message_id": "16d77afa-ffd1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T02:10:26", "message_id": "b1125768-ffcf-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T02:00:26", "message_id": "4b6ac9c8-ffce-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T01:50:26", "message_id": "e5b89250-ffcc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T01:40:26", "message_id": "800b90a2-ffcb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T01:30:26", "message_id": "1a59c356-ffca-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T01:20:26", "message_id": "b4b0a282-ffc8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T01:10:26", "message_id": "4f0499c6-ffc7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T01:00:26", "message_id": "e956d77a-ffc5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T00:50:26", "message_id": "83a8c93e-ffc4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T00:40:26", "message_id": "1dff75d4-ffc3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T00:30:26", "message_id": "b84b48cc-ffc1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T00:20:26", "message_id": "52e9b33e-ffc0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T00:10:25", "message_id": "ecee9ad2-ffbe-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T00:00:25", "message_id": "87563654-ffbd-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T23:50:25", "message_id": "21909ee6-ffbc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T23:40:25", "message_id": "bbeeaba6-ffba-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T23:30:25", "message_id": "5639a17c-ffb9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T23:20:25", "message_id": "f0b11c3c-ffb7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T23:10:25", "message_id": "8afd238c-ffb6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T23:00:25", "message_id": "255d3658-ffb5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T22:50:25", "message_id": "bf725428-ffb3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T22:40:25", "message_id": "59cd6ffa-ffb2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T22:30:24", "message_id": "f41ef85a-ffb0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T22:20:24", "message_id": "8e670832-ffaf-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T22:10:24", "message_id": "28c77e5e-ffae-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T22:00:24", "message_id": "c30fb172-ffac-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T21:50:24", "message_id": "5d53414c-ffab-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T21:40:24", "message_id": "f7acd94e-ffa9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T21:30:24", "message_id": "9209df48-ffa8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T21:20:24", "message_id": "2c49adf6-ffa7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T21:10:24", "message_id": "c693afe4-ffa5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T21:00:24", "message_id": "60ece080-ffa4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T20:50:23", "message_id": "fb3635da-ffa2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T20:40:23", "message_id": "95897216-ffa1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T20:30:23", "message_id": "2fe254d8-ffa0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T20:20:23", "message_id": "ca286b9c-ff9e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T20:10:23", "message_id": "6478688e-ff9d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T20:00:23", "message_id": "fecfb4de-ff9b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T19:50:23", "message_id": "991bb332-ff9a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T19:40:23", "message_id": "3370de00-ff99-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T19:30:23", "message_id": "cdc3ad22-ff97-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T19:20:23", "message_id": "6817a09c-ff96-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T19:10:22", "message_id": "02650416-ff95-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T19:00:22", "message_id": "9caf6306-ff93-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T18:50:22", "message_id": "370b52ea-ff92-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T18:40:22", "message_id": "d1579f7c-ff90-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T18:30:22", "message_id": "6b9fb0f8-ff8f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T18:20:22", "message_id": "05f1634c-ff8e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T18:10:22", "message_id": "a044dd5e-ff8c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T18:00:22", "message_id": "3a96380a-ff8b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T17:50:22", "message_id": "d4e6d54c-ff89-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T17:40:22", "message_id": "6f3ca4de-ff88-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T17:30:22", "message_id": "098da576-ff87-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T17:20:21", "message_id": "a3db2fba-ff85-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T17:10:21", "message_id": "3e31b9e6-ff84-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T17:00:21", "message_id": "d8785e9e-ff82-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T16:50:21", "message_id": "72c229be-ff81-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T16:40:21", "message_id": "0d16b748-ff80-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T16:30:21", "message_id": "a77218e8-ff7e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T16:20:21", "message_id": "41b5f4f8-ff7d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T16:10:21", "message_id": "dc110fc6-ff7b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T16:00:21", "message_id": "76652b90-ff7a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T15:50:21", "message_id": "10b4254a-ff79-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T15:40:20", "message_id": "ab048812-ff77-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T15:30:20", "message_id": "454ece52-ff76-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T15:20:20", "message_id": "dfa19acc-ff74-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T15:10:20", "message_id": "79f0cf5a-ff73-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T15:00:20", "message_id": "1441299e-ff72-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T14:50:20", "message_id": "ae9512c8-ff70-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T14:40:20", "message_id": "48e485e0-ff6f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T14:30:20", "message_id": "e349a02c-ff6d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T14:20:20", "message_id": "7d96b0ae-ff6c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T14:10:20", "message_id": "17e70b60-ff6b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T14:00:20", "message_id": "b236c144-ff69-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T13:50:20", "message_id": "4c8540d8-ff68-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T13:40:20", "message_id": "e6eaf994-ff66-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T13:30:19", "message_id": "81335ffc-ff65-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T13:20:19", "message_id": "1b83217a-ff64-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T13:10:19", "message_id": "b5d92406-ff62-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T13:00:19", "message_id": "50344adc-ff61-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T12:50:19", "message_id": "ea866e32-ff5f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T12:40:19", "message_id": "84d52908-ff5e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T12:30:19", "message_id": "1f3042aa-ff5d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T12:20:19", "message_id": "b97b3ae2-ff5b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T12:10:19", "message_id": "53c95860-ff5a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T12:00:19", "message_id": "ee196524-ff58-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T11:50:19", "message_id": "886c2f82-ff57-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T11:40:18", "message_id": "22c190f6-ff56-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T11:30:18", "message_id": "bd1341ec-ff54-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T11:20:18", "message_id": "576230fc-ff53-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T11:10:18", "message_id": "f1d23580-ff51-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T11:00:18", "message_id": "8c14f666-ff50-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T10:50:18", "message_id": "266a4718-ff4f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T10:40:18", "message_id": "c0c2dd18-ff4d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T10:30:18", "message_id": "5b0bb414-ff4c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T10:20:18", "message_id": "f5616ce0-ff4a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T10:10:18", "message_id": "8fbcd2d6-ff49-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T10:00:18", "message_id": "2a1b4c6a-ff48-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T09:50:18", "message_id": "c4563cce-ff46-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T09:40:18", "message_id": "5eaf98ee-ff45-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T09:30:17", "message_id": "f8f08a46-ff43-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T09:20:17", "message_id": "934bd3f4-ff42-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T09:10:17", "message_id": "2da07920-ff41-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T09:00:17", "message_id": "c7e37458-ff3f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T08:50:17", "message_id": "62359f6a-ff3e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T08:40:17", "message_id": "fc8e741c-ff3c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T08:30:17", "message_id": "96d6f244-ff3b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T08:20:17", "message_id": "311eceb4-ff3a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T08:10:17", "message_id": "cb71ecdc-ff38-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T08:00:16", "message_id": "65becbd6-ff37-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T07:50:16", "message_id": "000f1a9e-ff36-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T07:40:16", "message_id": "9a5e62fa-ff34-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T07:30:16", "message_id": "34bad376-ff33-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T07:20:16", "message_id": "cf00c938-ff31-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T07:10:16", "message_id": "694f5ac4-ff30-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T07:00:16", "message_id": "03a81b9e-ff2f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T06:50:16", "message_id": "9dfa1168-ff2d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T06:40:16", "message_id": "38464d6a-ff2c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T06:30:16", "message_id": "d294581e-ff2a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T06:20:16", "message_id": "6cf42c7e-ff29-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T06:10:16", "message_id": "074d58d8-ff28-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T06:00:15", "message_id": "a1911a58-ff26-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T05:50:15", "message_id": "3bea220e-ff25-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T05:40:15", "message_id": "d63236c8-ff23-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T05:30:15", "message_id": "70973b34-ff22-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T05:20:15", "message_id": "0ada2a0a-ff21-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T05:10:15", "message_id": "a522ebb2-ff1f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T05:00:15", "message_id": "3f7afd5a-ff1e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T04:50:15", "message_id": "d9cc4e7e-ff1c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T04:40:15", "message_id": "742020b0-ff1b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T04:30:15", "message_id": "0e7e2c62-ff1a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T04:20:15", "message_id": "a8c7d8b0-ff18-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T04:10:15", "message_id": "431fc226-ff17-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T04:00:14", "message_id": "dd6cd6c2-ff15-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T03:50:14", "message_id": "77bfd730-ff14-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T03:40:14", "message_id": "1217a486-ff13-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T03:30:14", "message_id": "ac5d0e02-ff11-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T03:20:14", "message_id": "46b248d4-ff10-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T03:10:14", "message_id": "e1189254-ff0e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T03:00:14", "message_id": "7b5bdc24-ff0d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T02:50:14", "message_id": "15c42520-ff0c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T02:40:14", "message_id": "b010e6ec-ff0a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T02:30:14", "message_id": "4a5efbe6-ff09-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T02:20:14", "message_id": "e4ab08b8-ff07-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T02:10:14", "message_id": "7efe44cc-ff06-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T02:00:13", "message_id": "1948c78e-ff05-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T01:50:13", "message_id": "b3a467d6-ff03-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T01:40:13", "message_id": "4dee1514-ff02-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T01:30:13", "message_id": "e843c192-ff00-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T01:20:13", "message_id": "829847a6-feff-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T01:10:13", "message_id": "1cec33a0-fefe-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T01:00:13", "message_id": "b7352108-fefc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T00:50:13", "message_id": "518ab94a-fefb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T00:40:13", "message_id": "ebe56672-fef9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T00:30:13", "message_id": "86251a40-fef8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T00:20:12", "message_id": "207a9a0e-fef7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T00:10:12", "message_id": "bacba8f2-fef5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T00:00:12", "message_id": "55164e32-fef4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T23:50:12", "message_id": "ef751a78-fef2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T23:40:12", "message_id": "89c8b42e-fef1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T23:30:12", "message_id": "241a71fe-fef0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T23:20:12", "message_id": "be77b272-feee-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T23:10:12", "message_id": "58b75a60-feed-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T23:00:12", "message_id": "f33cc8b0-feeb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T22:50:12", "message_id": "8d5cf836-feea-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T22:40:12", "message_id": "27b4b01a-fee9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T22:30:12", "message_id": "c206671e-fee7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T22:20:11", "message_id": "5c536e18-fee6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T22:10:11", "message_id": "f6b4bc20-fee4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T22:00:12", "message_id": "911bbac2-fee3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T21:50:11", "message_id": "2b547798-fee2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T21:40:11", "message_id": "c5af5bfc-fee0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T21:30:11", "message_id": "5ff59a3e-fedf-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T21:20:11", "message_id": "fa48277a-fedd-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T21:10:11", "message_id": "949b2cca-fedc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T21:00:11", "message_id": "2ee38748-fedb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T20:50:11", "message_id": "c93a2fd8-fed9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T20:40:11", "message_id": "63984350-fed8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T20:30:11", "message_id": "fde47084-fed6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T20:20:11", "message_id": "983d72b8-fed5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T20:10:10", "message_id": "3281ad78-fed4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T20:00:10", "message_id": "cceb77a6-fed2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T19:50:10", "message_id": "673256ec-fed1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T19:40:10", "message_id": "01898c9e-fed0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T19:30:10", "message_id": "9bdebdd4-fece-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T19:20:10", "message_id": "3628844e-fecd-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T19:10:10", "message_id": "d078cf2e-fecb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T19:00:10", "message_id": "6abd70aa-feca-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T18:50:10", "message_id": "052a3d14-fec9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T18:40:10", "message_id": "9f713ec4-fec7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T18:30:09", "message_id": "39b9bf3a-fec6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T18:20:09", "message_id": "d411428a-fec4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T18:10:09", "message_id": "6e5a3812-fec3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T18:00:09", "message_id": "08a175d6-fec2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T17:50:09", "message_id": "a2f82bf4-fec0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T17:40:09", "message_id": "3d537bf6-febf-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T17:30:09", "message_id": "d79b434e-febd-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T17:20:09", "message_id": "71f360b8-febc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T17:10:09", "message_id": "0c3aa0ac-febb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T17:00:09", "message_id": "a68c3050-feb9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T16:50:09", "message_id": "40e03e5a-feb8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T16:40:08", "message_id": "db2bcec2-feb6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T16:30:08", "message_id": "757f444c-feb5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T16:20:08", "message_id": "0fd11ef0-feb4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T16:10:08", "message_id": "aa2894b2-feb2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T16:00:08", "message_id": "447cc4c2-feb1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T15:50:08", "message_id": "dec7153e-feaf-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T15:40:08", "message_id": "79213b16-feae-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T15:30:08", "message_id": "13687916-fead-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T15:20:08", "message_id": "adba699a-feab-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T15:10:08", "message_id": "480a42f6-feaa-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T15:00:08", "message_id": "e25c9f90-fea8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T14:50:07", "message_id": "7cafad64-fea7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T14:40:07", "message_id": "17100414-fea6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T14:30:07", "message_id": "b16afff2-fea4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T14:20:07", "message_id": "4bba39bc-fea3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T14:10:07", "message_id": "e6088df4-fea1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T14:00:07", "message_id": "8073da12-fea0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T13:50:07", "message_id": "1ab92f84-fe9f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T13:40:07", "message_id": "b4fd73ea-fe9d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T13:30:07", "message_id": "4f508fba-fe9c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T13:20:07", "message_id": "e9a19a5c-fe9a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T13:10:07", "message_id": "83ed1908-fe99-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T13:00:07", "message_id": "1e489498-fe98-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T12:50:07", "message_id": "b89e96ac-fe96-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T12:40:07", "message_id": "52f8fbf4-fe95-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T12:30:06", "message_id": "ed41c828-fe93-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T12:20:06", "message_id": "878ed5b2-fe92-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T12:10:06", "message_id": "21e8fd2e-fe91-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T12:00:06", "message_id": "bc369f00-fe8f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T11:50:06", "message_id": "568cb8fc-fe8e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T11:40:06", "message_id": "f0e7a9b8-fe8c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T11:30:07", "message_id": "8baeec38-fe8b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T11:20:06", "message_id": "2581ded0-fe8a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T11:10:06", "message_id": "bfcc086e-fe88-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T11:00:06", "message_id": "5a22ec18-fe87-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T10:50:06", "message_id": "f4767db8-fe85-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T10:40:05", "message_id": "8ec9eb18-fe84-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T10:30:05", "message_id": "291897a2-fe83-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T10:20:05", "message_id": "c36a5978-fe81-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T10:10:05", "message_id": "5db4e298-fe80-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T10:00:05", "message_id": "f80d0f48-fe7e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T09:50:05", "message_id": "9258f53c-fe7d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T09:40:05", "message_id": "2cafe638-fe7c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T09:30:05", "message_id": "c70244a8-fe7a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T09:20:05", "message_id": "614c8b92-fe79-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T09:10:05", "message_id": "fba7b8e4-fe77-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T09:00:05", "message_id": "95f686ca-fe76-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T08:50:04", "message_id": "30470544-fe75-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T08:40:04", "message_id": "ca97c7a2-fe73-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T08:30:04", "message_id": "64e7bdd2-fe72-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T08:20:04", "message_id": "ff3d9ade-fe70-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T08:10:04", "message_id": "99909a98-fe6f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T08:00:04", "message_id": "33df59c4-fe6e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T07:50:04", "message_id": "ce324a9c-fe6c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T07:40:04", "message_id": "68906c9c-fe6b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T07:30:04", "message_id": "02e1fdb2-fe6a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T07:20:04", "message_id": "9d36589c-fe68-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T07:10:04", "message_id": "3787f0a6-fe67-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T07:00:04", "message_id": "d1d5e34a-fe65-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T06:50:03", "message_id": "6c2556ee-fe64-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T06:40:03", "message_id": "06818836-fe63-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T06:30:03", "message_id": "a0d3218a-fe61-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T06:20:03", "message_id": "3b213314-fe60-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T06:10:03", "message_id": "d56da4b8-fe5e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T06:00:03", "message_id": "6fbefe1a-fe5d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T05:50:03", "message_id": "0a122cfa-fe5c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T05:40:03", "message_id": "a45bed7a-fe5a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T05:30:03", "message_id": "3eafeec8-fe59-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T05:20:03", "message_id": "d905607c-fe57-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T05:10:03", "message_id": "73599d7a-fe56-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T05:00:02", "message_id": "0da747e4-fe55-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T04:50:02", "message_id": "a7f7ae80-fe53-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T04:40:02", "message_id": "424e7178-fe52-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T04:30:02", "message_id": "dca5121a-fe50-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T04:20:02", "message_id": "76eb61c8-fe4f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T04:10:02", "message_id": "113908ae-fe4e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T04:00:02", "message_id": "ab930c3a-fe4c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T03:50:02", "message_id": "45dff3c2-fe4b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T03:40:02", "message_id": "e0348944-fe49-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T03:30:02", "message_id": "7a7fd92e-fe48-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T03:20:01", "message_id": "14ccbb52-fe47-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T03:10:01", "message_id": "af29d2ae-fe45-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T03:00:01", "message_id": "49755524-fe44-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T02:50:01", "message_id": "e3c5f0e0-fe42-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T02:40:01", "message_id": "7e12b978-fe41-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T02:30:01", "message_id": "18725f84-fe40-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T02:20:01", "message_id": "b2c41548-fe3e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T02:10:01", "message_id": "4d126fb6-fe3d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T02:00:01", "message_id": "e768c51c-fe3b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T01:50:01", "message_id": "81b955ac-fe3a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T01:40:01", "message_id": "1c177a04-fe39-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T01:30:01", "message_id": "b669a084-fe37-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T01:20:01", "message_id": "50be9d58-fe36-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T01:10:00", "message_id": "eb0977ae-fe34-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T01:00:00", "message_id": "856390f2-fe33-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T00:50:00", "message_id": "1fabe27e-fe32-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T00:40:00", "message_id": "ba020bc0-fe30-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T00:30:00", "message_id": "544dee08-fe2f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T00:20:00", "message_id": "ee9cd746-fe2d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T00:10:00", "message_id": "88f41374-fe2c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T00:00:00", "message_id": "234238cc-fe2b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T23:50:00", "message_id": "bd968bd2-fe29-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T23:40:00", "message_id": "57eb8374-fe28-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T23:30:00", "message_id": "f23a4f66-fe26-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T23:20:00", "message_id": "8c992e80-fe25-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T23:10:00", "message_id": "270d047a-fe24-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T23:00:00", "message_id": "c1622f52-fe22-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T22:49:59", "message_id": "5b7e52e8-fe21-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T22:39:59", "message_id": "f5cdae22-fe1f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T22:29:59", "message_id": "9026e404-fe1e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T22:19:59", "message_id": "2a7925be-fe1d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T22:09:59", "message_id": "c4c5d4ac-fe1b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T21:59:59", "message_id": "5f17fd98-fe1a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T21:49:59", "message_id": "f966325e-fe18-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T21:39:59", "message_id": "93b37d8c-fe17-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T21:29:58", "message_id": "2e003b5c-fe16-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T21:19:58", "message_id": "c8563118-fe14-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T21:09:58", "message_id": "62a92ede-fe13-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T20:59:58", "message_id": "fcfd17c2-fe11-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T20:49:58", "message_id": "97462c8a-fe10-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T20:39:58", "message_id": "319679c2-fe0f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T20:29:58", "message_id": "cbe63e92-fe0d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T20:19:58", "message_id": "663ddbc8-fe0c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T20:09:58", "message_id": "008a4a88-fe0b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T19:59:58", "message_id": "9add27ba-fe09-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T19:49:58", "message_id": "3532ce7a-fe08-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T19:39:57", "message_id": "cf8d97c2-fe06-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T19:29:57", "message_id": "69da73b0-fe05-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T19:19:57", "message_id": "042c30ea-fe04-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T19:09:57", "message_id": "9e7ed6e0-fe02-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T18:59:57", "message_id": "38cef9a2-fe01-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T18:49:57", "message_id": "d3204288-fdff-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T18:39:57", "message_id": "6d77ad00-fdfe-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T18:29:57", "message_id": "07cc6302-fdfd-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T18:19:57", "message_id": "a21fab82-fdfb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T18:09:57", "message_id": "3c802ab4-fdfa-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T17:59:57", "message_id": "d6c6acda-fdf8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T17:49:57", "message_id": "711abbc0-fdf7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T17:39:57", "message_id": "0b6d8632-fdf6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T17:29:56", "message_id": "a5c39fca-fdf4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T17:19:56", "message_id": "4012a064-fdf3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T17:09:56", "message_id": "da67a0bc-fdf1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T16:59:56", "message_id": "74b8d6ba-fdf0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T16:49:56", "message_id": "0f09d5f4-fdef-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T16:39:56", "message_id": "a963526c-fded-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T16:29:56", "message_id": "43c28c76-fdec-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T16:19:56", "message_id": "de0f8402-fdea-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T16:09:56", "message_id": "786954f8-fde9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T15:59:56", "message_id": "12bcb164-fde8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T15:49:56", "message_id": "ad1684a8-fde6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T15:39:56", "message_id": "476824fa-fde5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T15:29:56", "message_id": "e1b77d64-fde3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T15:19:56", "message_id": "7c2dba04-fde2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T15:09:55", "message_id": "16573094-fde1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T14:59:55", "message_id": "b0a6d660-fddf-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T14:49:55", "message_id": "4b005d50-fdde-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T14:39:55", "message_id": "e54e4c2a-fddc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T14:29:55", "message_id": "7fa15eae-fddb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T14:19:55", "message_id": "19f06830-fdda-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T14:09:55", "message_id": "b445ee16-fdd8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T13:59:55", "message_id": "4e9281f2-fdd7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T13:49:55", "message_id": "e8e774f8-fdd5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T13:39:55", "message_id": "83353498-fdd4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T13:29:54", "message_id": "1d838b5a-fdd3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T13:19:54", "message_id": "b7d66af8-fdd1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T13:09:54", "message_id": "5228c5e4-fdd0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T12:59:54", "message_id": "ec7ba712-fdce-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T12:49:54", "message_id": "86cc0c32-fdcd-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T12:39:54", "message_id": "211c0f5a-fdcc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T12:29:54", "message_id": "bb6a9d6c-fdca-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T12:19:54", "message_id": "55be4b40-fdc9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T12:09:54", "message_id": "f007fe46-fdc7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T11:59:54", "message_id": "8a5e96dc-fdc6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T11:49:54", "message_id": "24b62ddc-fdc5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T11:39:54", "message_id": "bf0a1184-fdc3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T11:29:53", "message_id": "59592ea2-fdc2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T11:19:53", "message_id": "f3ad33b0-fdc0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T11:09:53", "message_id": "8e008ba8-fdbf-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T10:59:53", "message_id": "2852ac06-fdbe-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T10:49:53", "message_id": "c2a7fde4-fdbc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T10:39:53", "message_id": "5cf6148c-fdbb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T10:29:53", "message_id": "f751bb5a-fdb9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T10:19:53", "message_id": "91a050c4-fdb8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T10:09:53", "message_id": "2c019210-fdb7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T09:59:53", "message_id": "c6531b60-fdb5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T09:49:53", "message_id": "60aa0e82-fdb4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T09:39:53", "message_id": "fafa4242-fdb2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T09:29:53", "message_id": "954f20da-fdb1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T09:19:52", "message_id": "2f9f26b4-fdb0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T09:09:52", "message_id": "c9ebaec4-fdae-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T08:59:52", "message_id": "643d1a96-fdad-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T08:49:52", "message_id": "fea2c574-fdab-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T08:39:52", "message_id": "98e9e3d0-fdaa-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T08:29:52", "message_id": "3338d11e-fda9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T08:19:52", "message_id": "cd860ef0-fda7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T08:09:52", "message_id": "67efbb46-fda6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T07:59:52", "message_id": "022f11f4-fda5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T07:49:52", "message_id": "9c7f6dfa-fda3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T07:39:52", "message_id": "36d66bc6-fda2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T07:29:51", "message_id": "d122a43a-fda0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T07:19:51", "message_id": "6b768ff8-fd9f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T07:09:52", "message_id": "05ee3d08-fd9e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T06:59:51", "message_id": "a0147ffc-fd9c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T06:49:51", "message_id": "3a6a93a4-fd9b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T06:39:51", "message_id": "d4b179ac-fd99-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T06:29:51", "message_id": "6f067c66-fd98-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T06:19:51", "message_id": "0952fbe8-fd97-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T06:09:51", "message_id": "a3a97fca-fd95-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T05:59:51", "message_id": "3dfd2f06-fd94-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T05:49:51", "message_id": "d84eebd2-fd92-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T05:39:50", "message_id": "72a02342-fd91-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T05:29:50", "message_id": "0cf75714-fd90-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T05:19:50", "message_id": "a746d90e-fd8e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T05:09:50", "message_id": "4194cfae-fd8d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T04:59:50", "message_id": "dbe8d7e6-fd8b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T04:49:50", "message_id": "764aa17c-fd8a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T04:39:50", "message_id": "10a449dc-fd89-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T04:29:50", "message_id": "ab0522c8-fd87-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T04:19:50", "message_id": "453c17ae-fd86-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T04:09:50", "message_id": "df821298-fd84-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T03:59:49", "message_id": "79c2403c-fd83-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T03:49:49", "message_id": "14209d88-fd82-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T03:39:49", "message_id": "ae7954b2-fd80-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T03:29:49", "message_id": "48d3bec8-fd7f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T03:19:49", "message_id": "e33171ec-fd7d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T03:09:49", "message_id": "7d891242-fd7c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T02:59:49", "message_id": "17c8c4c6-fd7b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T02:49:49", "message_id": "b2083b9a-fd79-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T02:39:49", "message_id": "4c87633c-fd78-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T02:29:49", "message_id": "e6ccb764-fd76-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T02:19:49", "message_id": "812a0804-fd75-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T02:09:49", "message_id": "1b84ab40-fd74-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T01:59:49", "message_id": "b5c29e6c-fd72-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T01:49:49", "message_id": "5011b69e-fd71-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T01:39:49", "message_id": "ea62960c-fd6f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T01:29:49", "message_id": "84dc11d8-fd6e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T01:19:49", "message_id": "1f3d0f9a-fd6d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T01:09:48", "message_id": "b97d2f4c-fd6b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T00:59:48", "message_id": "53c7230c-fd6a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T00:49:48", "message_id": "ee08e2b8-fd68-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T00:39:48", "message_id": "886b0d92-fd67-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T00:29:48", "message_id": "22c9577e-fd66-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T00:19:48", "message_id": "bd1c1e80-fd64-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T00:09:48", "message_id": "578dfdf0-fd63-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-04T23:59:48", "message_id": "f1d30164-fd61-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-04T23:49:48", "message_id": "8c18b22a-fd60-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-04T23:39:06", "message_id": "0d65dfb2-fd5f-11e2-b8cf-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-04T23:29:06", "message_id": "a7d5ec88-fd5d-11e2-b8cf-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}], "http://localhost:8777/v2/meters/image.download?q.field=resource_id&q.value=b23fbced-b272-41a6-8f48-be76b586bd00": [{"counter_name": "image.download", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-04T23:58:50.453000", "message_id": "cf352c7c-fd61-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 3714968.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"receiver_tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "destination_ip": "10.0.2.15", "event_type": "image.send", "bytes_sent": "3714968", "image_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "host": "openstack", "receiver_user_id": "2b8fbe55863d4dfab5310796202b2019", "owner_id": "0c5a6b84fd2a43999c8820060c57da30"}, "counter_type": "delta"}], "http://localhost:8777/v2/meters/image?q.field=resource_id&q.value=b23fbced-b272-41a6-8f48-be76b586bd00": [{"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-12T04:01:18", "message_id": "d74be3ae-0303-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-12T03:51:18", "message_id": "719f0a5a-0302-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-12T03:41:18", "message_id": "0bee25fc-0301-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-12T03:31:18", "message_id": "a64f367e-02ff-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-12T03:21:18", "message_id": "409ee2b2-02fe-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-12T03:11:17", "message_id": "daf56784-02fc-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-12T03:01:17", "message_id": "7538d986-02fb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-12T02:51:17", "message_id": "0f96cfda-02fa-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-12T02:41:17", "message_id": "a9d36506-02f8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-12T02:31:17", "message_id": "44338006-02f7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-12T02:21:17", "message_id": "de7d1926-02f5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-12T02:11:17", "message_id": "78cef6a4-02f4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-12T02:01:17", "message_id": "1323bea8-02f3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-12T01:51:17", "message_id": "ad784fa2-02f1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-12T01:41:17", "message_id": "47c19322-02f0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-12T01:31:16", "message_id": "e21880b8-02ee-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-12T01:21:16", "message_id": "7c62ab5a-02ed-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-12T01:11:16", "message_id": "16b863cc-02ec-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-12T01:01:16", "message_id": "b0fb0c16-02ea-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-12T00:51:16", "message_id": "4b569642-02e9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-12T00:41:16", "message_id": "e59e6ad8-02e7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-12T00:31:16", "message_id": "7fefb4b8-02e6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-12T00:21:16", "message_id": "1a6c3054-02e5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-12T00:11:16", "message_id": "b494b7fc-02e3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-12T00:01:16", "message_id": "4ee500a2-02e2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T23:51:16", "message_id": "e93ab4d2-02e0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T23:41:15", "message_id": "8395e6b6-02df-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T23:31:15", "message_id": "1deaeb50-02de-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T23:21:15", "message_id": "b8305936-02dc-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T23:11:15", "message_id": "528acaa4-02db-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T23:01:15", "message_id": "ed080bf2-02d9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T22:51:15", "message_id": "872da2ca-02d8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T22:41:15", "message_id": "217c3910-02d7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T22:31:15", "message_id": "bbcfaabc-02d5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T22:21:15", "message_id": "561df9ea-02d4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T22:11:15", "message_id": "f06d183e-02d2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T22:01:15", "message_id": "8ac3301e-02d1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T21:51:15", "message_id": "251aa64e-02d0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T21:41:14", "message_id": "bf6e7204-02ce-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T21:31:14", "message_id": "59bc2efc-02cd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T21:21:14", "message_id": "f410d31a-02cb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T21:11:14", "message_id": "8e60d8f4-02ca-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T21:01:14", "message_id": "28b0bd90-02c9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T20:51:14", "message_id": "c303d276-02c7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T20:41:14", "message_id": "5d51d7bc-02c6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T20:31:14", "message_id": "f7a6be1a-02c4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T20:21:14", "message_id": "91fc05e4-02c3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T20:11:14", "message_id": "2c568f8a-02c2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T20:01:14", "message_id": "c6a09146-02c0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T19:51:14", "message_id": "60f80758-02bf-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T19:41:13", "message_id": "fb4232cc-02bd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T19:31:13", "message_id": "959bc8ee-02bc-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T19:21:13", "message_id": "2feaca32-02bb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T19:11:13", "message_id": "ca36bce2-02b9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T19:01:13", "message_id": "6481a156-02b8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T18:51:13", "message_id": "fed1a30c-02b6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T18:41:13", "message_id": "99257944-02b5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T18:31:13", "message_id": "3374c600-02b4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T18:21:13", "message_id": "cdc4b974-02b2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T18:11:13", "message_id": "681840f6-02b1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T18:01:12", "message_id": "02656dac-02b0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T17:51:12", "message_id": "9cbb98e2-02ae-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T17:41:12", "message_id": "370a2f64-02ad-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T17:31:12", "message_id": "d15fa37a-02ab-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T17:21:12", "message_id": "6bab942c-02aa-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T17:11:12", "message_id": "05fcb17a-02a9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T17:01:12", "message_id": "a05e316e-02a7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T16:51:12", "message_id": "3aad7e70-02a6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T16:41:12", "message_id": "d50a87ee-02a4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T16:31:12", "message_id": "6f5388a2-02a3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T16:21:12", "message_id": "099dc94c-02a2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T16:11:11", "message_id": "a3f2f64a-02a0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T16:01:11", "message_id": "3e500040-029f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T15:51:11", "message_id": "d89ee294-029d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T15:41:11", "message_id": "72fd1f60-029c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T15:31:11", "message_id": "0d582bec-029b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T15:21:11", "message_id": "a7b7f16a-0299-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T15:11:11", "message_id": "42011bcc-0298-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T15:01:11", "message_id": "dc5089f8-0296-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T14:51:11", "message_id": "769bf332-0295-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T14:41:11", "message_id": "10ef54d0-0294-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T14:31:11", "message_id": "ab3f6036-0292-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T14:21:11", "message_id": "458e4b68-0291-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T14:11:11", "message_id": "dfe00c76-028f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T14:01:11", "message_id": "7a3b4116-028e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T13:51:10", "message_id": "148e9616-028d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T13:41:10", "message_id": "aedfee60-028b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T13:31:10", "message_id": "4933ae40-028a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T13:21:10", "message_id": "e381db7c-0288-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T13:11:10", "message_id": "7ddabaa6-0287-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T13:01:10", "message_id": "183118f4-0286-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T12:51:10", "message_id": "b278bd88-0284-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T12:41:10", "message_id": "4cce571e-0283-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T12:31:10", "message_id": "e71a009a-0281-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T12:21:10", "message_id": "8169f468-0280-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T12:11:10", "message_id": "1bbcb28c-027f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T12:01:09", "message_id": "b6098c72-027d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T11:51:09", "message_id": "506359b2-027c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T11:41:09", "message_id": "eaa680be-027a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T11:31:09", "message_id": "84fc5a82-0279-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T11:21:09", "message_id": "1f4b3ae2-0278-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T11:11:09", "message_id": "b99d13c4-0276-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T11:01:09", "message_id": "53ef4872-0275-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T10:51:09", "message_id": "ee3c2b86-0273-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T10:41:09", "message_id": "88928650-0272-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T10:31:09", "message_id": "22e28d38-0271-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T10:21:08", "message_id": "bd30c1d6-026f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T10:11:09", "message_id": "57922bea-026e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T10:01:08", "message_id": "f1de7a98-026c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T09:51:08", "message_id": "8c2fae5c-026b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T09:41:08", "message_id": "267e71d4-026a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T09:31:08", "message_id": "c0d4fdc2-0268-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T09:21:08", "message_id": "5b25595a-0267-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T09:11:08", "message_id": "f57deda2-0265-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T09:01:08", "message_id": "8fcbe8b6-0264-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T08:51:08", "message_id": "2a298c80-0263-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T08:41:08", "message_id": "c47ed7ce-0261-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T08:31:08", "message_id": "5ed29632-0260-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T08:21:08", "message_id": "f918a58a-025e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T08:11:07", "message_id": "9369ff96-025d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T08:01:07", "message_id": "2dbd5554-025c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T07:51:07", "message_id": "c80d693e-025a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T07:41:07", "message_id": "625fc650-0259-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T07:31:07", "message_id": "fcb66a9e-0257-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T07:21:07", "message_id": "97055e72-0256-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T07:11:07", "message_id": "314de7a8-0255-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T07:01:07", "message_id": "cba66bd8-0253-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T06:51:07", "message_id": "65f84974-0252-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T06:41:07", "message_id": "0046df1a-0251-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T06:31:07", "message_id": "9a994bb8-024f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T06:21:07", "message_id": "34f7d5be-024e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T06:11:06", "message_id": "cf43ebaa-024c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T06:01:06", "message_id": "69a9eec6-024b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T05:51:06", "message_id": "03ecd630-024a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T05:41:06", "message_id": "9e3f7532-0248-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T05:31:06", "message_id": "38892d6a-0247-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T05:21:06", "message_id": "d2d7ae84-0245-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T05:11:06", "message_id": "6d24f598-0244-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T05:01:06", "message_id": "077bc66e-0243-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T04:51:06", "message_id": "a1d399f0-0241-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T04:41:06", "message_id": "3c218c44-0240-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T04:31:06", "message_id": "d675b16e-023e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T04:21:05", "message_id": "70cd1ca4-023d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T04:11:05", "message_id": "0b13a0f0-023c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T04:01:05", "message_id": "a56ce726-023a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T03:51:05", "message_id": "3fbef802-0239-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T03:41:05", "message_id": "da19219a-0237-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T03:31:05", "message_id": "745f41dc-0236-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T03:21:05", "message_id": "0eadb63a-0235-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T03:11:05", "message_id": "a9011864-0233-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T03:01:05", "message_id": "434b8e2e-0232-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T02:51:05", "message_id": "dd989172-0230-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T02:41:04", "message_id": "77e1cf66-022f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T02:31:04", "message_id": "123cc478-022e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T02:21:04", "message_id": "ac88edce-022c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T02:11:04", "message_id": "46dcea94-022b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T02:01:04", "message_id": "e135a290-0229-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T01:51:04", "message_id": "7b822eec-0228-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T01:41:04", "message_id": "15e2e3d4-0227-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T01:31:04", "message_id": "b0311660-0225-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T01:21:04", "message_id": "4a6bfa1c-0224-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T01:11:04", "message_id": "e4bbbe06-0222-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T01:01:04", "message_id": "7f1858bc-0221-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T00:51:03", "message_id": "196093d2-0220-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T00:41:03", "message_id": "b3b3f1c4-021e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T00:31:03", "message_id": "4e06528c-021d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T00:21:03", "message_id": "e854927e-021b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T00:11:03", "message_id": "82a59852-021a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-11T00:01:03", "message_id": "1cf96070-0219-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T23:51:03", "message_id": "b74ad296-0217-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T23:41:03", "message_id": "519a9f90-0216-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T23:31:03", "message_id": "ebf0cd6e-0214-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T23:21:03", "message_id": "8646c5be-0213-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T23:11:03", "message_id": "2090d044-0212-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T23:01:03", "message_id": "bb2207e2-0210-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T22:51:02", "message_id": "55462de6-020f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T22:41:07", "message_id": "f23c54d8-020d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T22:31:02", "message_id": "89f126f2-020c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T22:21:02", "message_id": "243ac49a-020b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T22:11:02", "message_id": "be99b818-0209-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T22:01:02", "message_id": "58d7b81e-0208-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T21:51:02", "message_id": "f341b672-0206-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T21:41:02", "message_id": "8d8d64f8-0205-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T21:31:02", "message_id": "27d9f6cc-0204-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T21:21:02", "message_id": "c23ac89c-0202-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T21:11:02", "message_id": "5c85f770-0201-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T21:01:02", "message_id": "f6cb82ac-01ff-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T20:51:02", "message_id": "913a1bd4-01fe-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T20:41:01", "message_id": "2b79df60-01fd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T20:31:01", "message_id": "c5df0960-01fb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T20:21:01", "message_id": "60186fbe-01fa-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T20:11:01", "message_id": "fa5cd27e-01f8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T20:01:01", "message_id": "94ba468c-01f7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T19:51:01", "message_id": "2f072d88-01f6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T19:41:01", "message_id": "c9590e9e-01f4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T19:31:01", "message_id": "63b8510e-01f3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T19:21:01", "message_id": "fdee195e-01f1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T19:11:01", "message_id": "984dbab0-01f0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T19:01:00", "message_id": "329d4498-01ef-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T18:51:00", "message_id": "cce19ae2-01ed-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T18:41:00", "message_id": "67448f7e-01ec-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T18:31:00", "message_id": "0191b7f2-01eb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T18:21:00", "message_id": "9be015a8-01e9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T18:11:00", "message_id": "362bd2e8-01e8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T18:01:00", "message_id": "d07cb616-01e6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T17:51:00", "message_id": "6ad47e26-01e5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T17:41:00", "message_id": "052ac464-01e4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T17:31:00", "message_id": "9f752d72-01e2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T17:21:00", "message_id": "39ca2a32-01e1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T17:10:59", "message_id": "d414be60-01df-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T17:00:59", "message_id": "6e668af4-01de-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T16:50:59", "message_id": "08bbddcc-01dd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T16:40:59", "message_id": "a3077398-01db-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T16:30:59", "message_id": "3d5ded7a-01da-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T16:20:59", "message_id": "d7a89d46-01d8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T16:10:59", "message_id": "72029876-01d7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T16:00:59", "message_id": "0c54f966-01d6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T15:50:59", "message_id": "a6aa4c34-01d4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T15:40:59", "message_id": "4106fda6-01d3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T15:30:59", "message_id": "db578ad0-01d1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T15:20:59", "message_id": "75aab5d2-01d0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T15:10:58", "message_id": "0ffa5734-01cf-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T15:00:58", "message_id": "aa4d17ce-01cd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T14:50:58", "message_id": "44a42080-01cc-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T14:40:58", "message_id": "dee7bf78-01ca-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T14:30:58", "message_id": "79341c9a-01c9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T14:20:58", "message_id": "138443b2-01c8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T14:10:58", "message_id": "adda0ec6-01c6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T14:00:58", "message_id": "48328702-01c5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T13:50:58", "message_id": "e2822e5e-01c3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T13:40:58", "message_id": "7ccafe70-01c2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T13:30:58", "message_id": "17277c16-01c1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T13:20:57", "message_id": "b16ec682-01bf-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T13:10:57", "message_id": "4bc259a8-01be-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T13:00:57", "message_id": "e618578e-01bc-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T12:50:57", "message_id": "80628758-01bb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T12:40:57", "message_id": "1ab8a3d4-01ba-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T12:30:57", "message_id": "b511581a-01b8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T12:20:57", "message_id": "4f61feee-01b7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T12:10:57", "message_id": "e9baf718-01b5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T12:00:57", "message_id": "8408a77c-01b4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T11:50:57", "message_id": "1e59a8dc-01b3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T11:40:57", "message_id": "b8ad20be-01b1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T11:30:56", "message_id": "52f78f80-01b0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T11:20:56", "message_id": "ed49472e-01ae-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T11:10:56", "message_id": "87acf178-01ad-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T11:00:56", "message_id": "21e4116a-01ac-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T10:50:56", "message_id": "bc49ec04-01aa-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T10:40:56", "message_id": "569b411a-01a9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T10:30:56", "message_id": "f0f298a0-01a7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T10:20:56", "message_id": "8b39743a-01a6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T10:10:56", "message_id": "2595d11a-01a5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T10:00:56", "message_id": "bfe92336-01a3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T09:50:56", "message_id": "5a31e3da-01a2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T09:40:56", "message_id": "f486c164-01a0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T09:30:55", "message_id": "8ee56974-019f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T09:20:55", "message_id": "292afc80-019e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T09:10:55", "message_id": "c3806e98-019c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T09:00:55", "message_id": "5de90c8a-019b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T08:50:55", "message_id": "f82268d4-0199-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T08:40:55", "message_id": "9283a282-0198-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T08:30:55", "message_id": "2cb8eee0-0197-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T08:20:55", "message_id": "c717a41a-0195-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T08:10:55", "message_id": "6159cbe0-0194-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T08:00:55", "message_id": "fbad9340-0192-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T07:50:55", "message_id": "960fc93c-0191-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T07:40:55", "message_id": "306550b2-0190-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T07:30:54", "message_id": "cab1a500-018e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T07:20:54", "message_id": "6507a28c-018d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T07:10:54", "message_id": "ff58791c-018b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T07:00:54", "message_id": "99a687c2-018a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T06:50:54", "message_id": "33fb8b4e-0189-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T06:40:54", "message_id": "ce4f23d8-0187-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T06:30:54", "message_id": "68a47e62-0186-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T06:20:54", "message_id": "02f16c70-0185-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T06:10:54", "message_id": "9d3c4f18-0183-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T06:00:54", "message_id": "378b2186-0182-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T05:50:54", "message_id": "d1e563d8-0180-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T05:40:53", "message_id": "6c36cafa-017f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T05:30:53", "message_id": "067dd056-017e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T05:20:53", "message_id": "a0d6e306-017c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T05:10:53", "message_id": "3b28bc06-017b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T05:00:53", "message_id": "d584083e-0179-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T04:50:53", "message_id": "6fc7df76-0178-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T04:40:53", "message_id": "0a1603a2-0177-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T04:30:53", "message_id": "a467069c-0175-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T04:20:53", "message_id": "3eb869c2-0174-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T04:10:53", "message_id": "d9099f8e-0172-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T04:00:53", "message_id": "73653158-0171-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T03:50:52", "message_id": "0db530d4-0170-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T03:40:52", "message_id": "a80a6142-016e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T03:30:52", "message_id": "425bf8de-016d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T03:20:52", "message_id": "dcac00c0-016b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T03:10:52", "message_id": "76fde19a-016a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T03:00:52", "message_id": "1150f18a-0169-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T02:50:52", "message_id": "aba1407a-0167-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T02:40:52", "message_id": "45eef192-0166-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T02:30:52", "message_id": "e0405ff8-0164-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T02:20:52", "message_id": "7a9f13c0-0163-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T02:10:52", "message_id": "14f39150-0162-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T02:00:51", "message_id": "af3f5070-0160-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T01:50:52", "message_id": "49b253f2-015f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T01:40:51", "message_id": "e3f59c8c-015d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T01:30:51", "message_id": "7e40aa7c-015c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T01:20:51", "message_id": "18a1398a-015b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T01:10:51", "message_id": "b2f1c8c6-0159-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T01:00:51", "message_id": "4d49315e-0158-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T00:50:51", "message_id": "e76f93e2-0156-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T00:40:51", "message_id": "81cd96fc-0155-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T00:30:51", "message_id": "1c19f6da-0154-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T00:20:51", "message_id": "b666b16c-0152-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T00:10:50", "message_id": "50c05800-0151-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-10T00:00:50", "message_id": "eb0fd1e4-014f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T23:50:50", "message_id": "855c4414-014e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T23:40:50", "message_id": "1faa7a88-014d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T23:30:50", "message_id": "b9f4ab60-014b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T23:20:50", "message_id": "54539556-014a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T23:10:50", "message_id": "eea1bd38-0148-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T23:00:50", "message_id": "891ccf08-0147-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T22:50:50", "message_id": "2345a912-0146-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T22:40:50", "message_id": "bd8f45ca-0144-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T22:30:50", "message_id": "57e4ce80-0143-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T22:20:50", "message_id": "f246ea3c-0141-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T22:10:49", "message_id": "8c84eaf6-0140-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T22:00:49", "message_id": "26e165c2-013f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T21:50:49", "message_id": "c1367da8-013d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T21:40:49", "message_id": "5b876784-013c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T21:30:49", "message_id": "f5e12bc8-013a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T21:20:49", "message_id": "90336a62-0139-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T21:10:49", "message_id": "2a8c03be-0138-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T21:00:49", "message_id": "c4e216e4-0136-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T20:50:49", "message_id": "5f30902e-0135-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T20:40:49", "message_id": "f986926a-0133-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T20:30:49", "message_id": "93cb6f78-0132-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T20:20:49", "message_id": "2e32d99a-0131-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T20:10:48", "message_id": "c878f70c-012f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T20:00:48", "message_id": "62c41e24-012e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T19:50:48", "message_id": "fd2124b4-012c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T19:40:48", "message_id": "9769cb36-012b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T19:30:48", "message_id": "31c411b6-012a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T19:20:48", "message_id": "cc22ae90-0128-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T19:10:48", "message_id": "6667ce06-0127-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T19:00:48", "message_id": "00b0660a-0126-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T18:50:48", "message_id": "9af97b22-0124-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T18:40:48", "message_id": "3550aac6-0123-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T18:30:48", "message_id": "cf9fd1d0-0121-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T18:20:47", "message_id": "69ed8234-0120-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T18:10:47", "message_id": "043c6db6-011f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T18:00:47", "message_id": "9e8932ac-011d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T17:50:47", "message_id": "38df8aa6-011c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T17:40:47", "message_id": "d32d5f68-011a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T17:30:47", "message_id": "6d7d1c4a-0119-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T17:20:47", "message_id": "07d1ab46-0118-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T17:10:47", "message_id": "a21fa0c4-0116-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T17:00:47", "message_id": "3c74e19a-0115-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T16:50:47", "message_id": "d6c03eea-0113-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T16:40:46", "message_id": "71115f94-0112-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T16:30:46", "message_id": "0b7300d0-0111-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T16:20:46", "message_id": "a5b904e8-010f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T16:10:46", "message_id": "401161b8-010e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T16:00:46", "message_id": "da60bab8-010c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T15:50:48", "message_id": "7605b6a0-010b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T15:40:46", "message_id": "0f57be68-010a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T15:30:46", "message_id": "a97217de-0108-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T15:20:46", "message_id": "43ac9a38-0107-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T15:10:46", "message_id": "de1162e0-0105-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T15:00:46", "message_id": "78540328-0104-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T14:50:46", "message_id": "12a85048-0103-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T14:40:45", "message_id": "acf72342-0101-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T14:30:45", "message_id": "4744660a-0100-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T14:20:45", "message_id": "e199a064-00fe-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T14:10:45", "message_id": "7bf2cb24-00fd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T14:00:45", "message_id": "1637416c-00fc-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T13:50:45", "message_id": "b0918756-00fa-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T13:40:45", "message_id": "4ad7438e-00f9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T13:30:45", "message_id": "e52cc1f4-00f7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T13:20:45", "message_id": "7fd0f600-00f6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T13:10:45", "message_id": "19c4a434-00f5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T13:00:45", "message_id": "b41ecb74-00f3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T12:50:44", "message_id": "4e670dd8-00f2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T12:40:44", "message_id": "e8c048d8-00f0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T12:30:44", "message_id": "8314dc98-00ef-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T12:20:44", "message_id": "1d6102d8-00ee-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T12:10:44", "message_id": "b7b3c9b2-00ec-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T12:00:44", "message_id": "5206ef00-00eb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T11:50:44", "message_id": "ec561998-00e9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T11:40:44", "message_id": "86a70ff4-00e8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T11:30:44", "message_id": "21010372-00e7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T11:20:44", "message_id": "bb4e34ce-00e5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T11:10:44", "message_id": "55a4add4-00e4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T11:00:43", "message_id": "efed3c1e-00e2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T10:50:43", "message_id": "8a4147e4-00e1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T10:40:43", "message_id": "248ed156-00e0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T10:30:43", "message_id": "bee6f7e4-00de-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T10:20:43", "message_id": "592ee96c-00dd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T10:10:43", "message_id": "f385b8b2-00db-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T10:00:43", "message_id": "8de99934-00da-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T09:50:43", "message_id": "2829e12c-00d9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T09:40:43", "message_id": "c2801f40-00d7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T09:30:43", "message_id": "5cd168b2-00d6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T09:20:43", "message_id": "f725ab0a-00d4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T09:10:43", "message_id": "917b1d68-00d3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T09:00:42", "message_id": "2bcbc1a8-00d2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T08:50:42", "message_id": "c6191096-00d0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T08:40:42", "message_id": "606cf3da-00cf-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T08:30:42", "message_id": "fac686a0-00cd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T08:20:42", "message_id": "95178bac-00cc-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T08:10:42", "message_id": "2f630ab2-00cb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T08:00:42", "message_id": "c9b22a8c-00c9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T07:50:42", "message_id": "64039460-00c8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T07:40:42", "message_id": "fe6678a8-00c6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T07:30:42", "message_id": "98ad13ec-00c5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T07:20:41", "message_id": "32f4f12e-00c4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T07:10:41", "message_id": "cd443606-00c2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T07:00:41", "message_id": "67994658-00c1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T06:50:41", "message_id": "01e5ca3a-00c0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T06:40:41", "message_id": "9c3b7faa-00be-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T06:30:41", "message_id": "368fd864-00bd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T06:20:41", "message_id": "d0d9733c-00bb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T06:10:41", "message_id": "6b2e09e0-00ba-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T06:00:41", "message_id": "058d2f2c-00b9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T05:50:41", "message_id": "9fd6f902-00b7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T05:40:41", "message_id": "3a2c658e-00b6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T05:30:41", "message_id": "d47a7fa6-00b4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T05:20:40", "message_id": "6ecce0c8-00b3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T05:10:40", "message_id": "091f7e58-00b2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T05:00:40", "message_id": "a375c860-00b0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T04:50:40", "message_id": "3dd5e20c-00af-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T04:40:40", "message_id": "d82ce6c2-00ad-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T04:30:40", "message_id": "727e8124-00ac-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T04:20:40", "message_id": "0cda7d88-00ab-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T04:10:40", "message_id": "a7364468-00a9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T04:00:40", "message_id": "419c6caa-00a8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T03:50:40", "message_id": "dc25f022-00a6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T03:40:40", "message_id": "763d545e-00a5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T03:30:40", "message_id": "10b5c9c8-00a4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T03:20:40", "message_id": "aae96628-00a2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T03:10:40", "message_id": "453bf1ca-00a1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T03:00:40", "message_id": "df9902e6-009f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T02:50:40", "message_id": "79deda94-009e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T02:40:40", "message_id": "145826cc-009d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T02:30:39", "message_id": "ae85f5f0-009b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T02:20:39", "message_id": "48da1dcc-009a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T02:10:39", "message_id": "e3202982-0098-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T02:00:39", "message_id": "7d812eec-0097-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T01:50:39", "message_id": "17bbffca-0096-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T01:40:39", "message_id": "b20a895e-0094-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T01:30:39", "message_id": "4c5e5492-0093-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T01:20:39", "message_id": "e6b6a1e0-0091-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T01:10:39", "message_id": "8101ec8e-0090-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T01:00:39", "message_id": "1b5c21ac-008f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T00:50:38", "message_id": "b5a6fe78-008d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T00:40:38", "message_id": "4ff15a52-008c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T00:30:38", "message_id": "ea4d5d46-008a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T00:20:38", "message_id": "84a7be2e-0089-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T00:10:38", "message_id": "1ef3a922-0088-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-09T00:00:38", "message_id": "b943b8b6-0086-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T23:50:38", "message_id": "538e343e-0085-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T23:40:38", "message_id": "ede62af2-0083-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T23:30:38", "message_id": "8832bfbe-0082-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T23:20:38", "message_id": "227d74f8-0081-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T23:10:38", "message_id": "bcd495c4-007f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T23:00:38", "message_id": "57525232-007e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T22:50:37", "message_id": "f1771a8e-007c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T22:40:37", "message_id": "8bcedd80-007b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T22:30:37", "message_id": "2611d1ce-007a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T22:20:37", "message_id": "c06aa5a4-0078-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T22:10:37", "message_id": "5abc8bb0-0077-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T22:00:37", "message_id": "f50c69c6-0075-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T21:50:37", "message_id": "8f5e8f38-0074-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T21:40:37", "message_id": "29b40e5c-0073-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T21:30:37", "message_id": "c40685e0-0071-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T21:20:37", "message_id": "5e6406a0-0070-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T21:10:36", "message_id": "f8ad19ec-006e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T21:00:36", "message_id": "92f4068e-006d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T20:50:36", "message_id": "2d478aa0-006c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T20:40:36", "message_id": "c797bca8-006a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T20:30:36", "message_id": "61efa696-0069-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T20:20:36", "message_id": "fc38c2c0-0067-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T20:10:36", "message_id": "9694b128-0066-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T20:00:36", "message_id": "30dae02e-0065-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T19:50:36", "message_id": "cb319c3c-0063-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T19:40:36", "message_id": "6581176a-0062-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T19:30:35", "message_id": "ffcf3614-0060-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T19:20:35", "message_id": "9a1f9184-005f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T19:10:35", "message_id": "347259f8-005e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T19:00:35", "message_id": "cec6a4c0-005c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T18:50:35", "message_id": "69134472-005b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T18:40:35", "message_id": "036576dc-005a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T18:30:35", "message_id": "9dc445ca-0058-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T18:20:35", "message_id": "3805ecd0-0057-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T18:10:35", "message_id": "d25c736e-0055-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T18:00:35", "message_id": "6cb357ae-0054-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T17:50:35", "message_id": "07075406-0053-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T17:40:35", "message_id": "a15eb9b0-0051-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T17:30:35", "message_id": "3bb0dc8e-0050-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T17:20:34", "message_id": "d6009876-004e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T17:10:34", "message_id": "7050f2c4-004d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T17:00:34", "message_id": "0a9fafc0-004c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T16:50:34", "message_id": "a4f25354-004a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T16:40:34", "message_id": "3f4ec6d2-0049-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T16:30:34", "message_id": "d99d28b6-0047-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T16:20:34", "message_id": "73f32f7a-0046-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T16:10:34", "message_id": "0e42326c-0045-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T16:00:34", "message_id": "a899527a-0043-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T15:50:34", "message_id": "42ec48a2-0042-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T15:40:34", "message_id": "dd379814-0040-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T15:30:33", "message_id": "778c4f92-003f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T15:20:33", "message_id": "11e169e4-003e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T15:10:33", "message_id": "ac33a464-003c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T15:00:33", "message_id": "467e4eae-003b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T14:50:33", "message_id": "e0d41896-0039-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T14:40:33", "message_id": "7b1f89d2-0038-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T14:30:33", "message_id": "157750c0-0037-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T14:20:33", "message_id": "afc53c98-0035-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T14:10:33", "message_id": "4a24303e-0034-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T14:00:33", "message_id": "e48fbb18-0032-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T13:50:33", "message_id": "7eb94b5c-0031-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T13:40:32", "message_id": "190e17de-0030-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T13:30:32", "message_id": "b3639446-002e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T13:20:32", "message_id": "4dba8902-002d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T13:10:32", "message_id": "e8074e3e-002b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T13:00:32", "message_id": "82560f2c-002a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T12:50:32", "message_id": "1cacc84c-0029-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T12:40:32", "message_id": "b6f4a4d0-0027-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T12:30:32", "message_id": "514eeba0-0026-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T12:20:32", "message_id": "eb958ebe-0024-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T12:10:32", "message_id": "85e22b78-0023-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T12:00:32", "message_id": "203ba96c-0022-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T11:50:31", "message_id": "ba8b7562-0020-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T11:40:32", "message_id": "54f1660e-001f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T11:30:31", "message_id": "ef45f870-001d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T11:20:31", "message_id": "898cd900-001c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T11:10:31", "message_id": "23f07f9e-001b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T11:00:31", "message_id": "be391662-0019-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T10:50:31", "message_id": "588f9328-0018-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T10:40:31", "message_id": "f2e9745e-0016-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T10:30:31", "message_id": "8d416d42-0015-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T10:20:31", "message_id": "2798a858-0014-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T10:10:31", "message_id": "c200c4c2-0012-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T10:00:31", "message_id": "5c2e7bb8-0011-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T09:50:31", "message_id": "f67defde-000f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T09:40:30", "message_id": "90ca2f00-000e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T09:30:30", "message_id": "2b233c6a-000d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T09:20:30", "message_id": "c56d5708-000b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T09:10:30", "message_id": "5fbb7d50-000a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T09:00:30", "message_id": "fa13132e-0008-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T08:50:30", "message_id": "9466e0ba-0007-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T08:40:30", "message_id": "2ebb42ca-0006-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T08:30:30", "message_id": "c916acb2-0004-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T08:20:30", "message_id": "635b3682-0003-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T08:10:30", "message_id": "fdbc5a8c-0001-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T08:00:30", "message_id": "9803bf42-0000-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T07:50:30", "message_id": "324f3c22-ffff-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T07:40:29", "message_id": "cca2384e-fffd-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T07:30:29", "message_id": "66f2b0d8-fffc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T07:20:29", "message_id": "014a0d5e-fffb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T07:10:29", "message_id": "9b959c04-fff9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T07:00:29", "message_id": "35e04cf2-fff8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T06:50:29", "message_id": "d03deb9e-fff6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T06:40:29", "message_id": "6a87bec0-fff5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T06:30:29", "message_id": "04d6a25e-fff4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T06:20:29", "message_id": "9f26df88-fff2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T06:10:29", "message_id": "397b4616-fff1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T06:00:29", "message_id": "d3d11b70-ffef-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T05:50:28", "message_id": "6e23adac-ffee-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T05:40:28", "message_id": "087f1262-ffed-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T05:30:28", "message_id": "a2cc5408-ffeb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T05:20:28", "message_id": "3d160f88-ffea-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T05:10:28", "message_id": "d76b250c-ffe8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T05:00:28", "message_id": "71be4910-ffe7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T04:50:28", "message_id": "0c06440c-ffe6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T04:40:28", "message_id": "a6632cc4-ffe4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T04:30:28", "message_id": "40a9a350-ffe3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T04:20:28", "message_id": "db033c10-ffe1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T04:10:28", "message_id": "754e7e3a-ffe0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T04:00:27", "message_id": "0f9c06ee-ffdf-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T03:50:27", "message_id": "a9e9e5ba-ffdd-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T03:40:27", "message_id": "443f372a-ffdc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T03:30:27", "message_id": "de91d140-ffda-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T03:20:27", "message_id": "78e1504c-ffd9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T03:10:27", "message_id": "13364d3e-ffd8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T03:00:27", "message_id": "ad83712a-ffd6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T02:50:27", "message_id": "47d47dac-ffd5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T02:40:27", "message_id": "e2222938-ffd3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T02:30:27", "message_id": "7c788ad8-ffd2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T02:20:27", "message_id": "16d6de24-ffd1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T02:10:26", "message_id": "b111159c-ffcf-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T02:00:26", "message_id": "4b696d8a-ffce-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T01:50:26", "message_id": "e5b7e760-ffcc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T01:40:26", "message_id": "800a72bc-ffcb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T01:30:26", "message_id": "1a58a516-ffca-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T01:20:26", "message_id": "b4afd0b4-ffc8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T01:10:26", "message_id": "4f03bf56-ffc7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T01:00:26", "message_id": "e955e522-ffc5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T00:50:26", "message_id": "83a7d664-ffc4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T00:40:26", "message_id": "1dfe1298-ffc3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T00:30:26", "message_id": "b84a7992-ffc1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T00:20:26", "message_id": "52e8dd24-ffc0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T00:10:25", "message_id": "ecedbcac-ffbe-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-08T00:00:25", "message_id": "8754bcf2-ffbd-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T23:50:25", "message_id": "218f0f68-ffbc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T23:40:25", "message_id": "bbedbb56-ffba-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T23:30:25", "message_id": "5638d99a-ffb9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T23:20:25", "message_id": "f0b041a4-ffb7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T23:10:25", "message_id": "8afb5a52-ffb6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T23:00:25", "message_id": "255bc9a8-ffb5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T22:50:25", "message_id": "bf7105dc-ffb3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T22:40:25", "message_id": "59cc1d12-ffb2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T22:30:24", "message_id": "f41dfd2e-ffb0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T22:20:24", "message_id": "8e661af8-ffaf-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T22:10:24", "message_id": "28c6a4fc-ffae-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T22:00:24", "message_id": "c30e6380-ffac-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T21:50:24", "message_id": "5d52921a-ffab-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T21:40:24", "message_id": "f7ac4222-ffa9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T21:30:24", "message_id": "92068ef6-ffa8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T21:20:24", "message_id": "2c48fc30-ffa7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T21:10:24", "message_id": "c693081e-ffa5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T21:00:24", "message_id": "60ec4620-ffa4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T20:50:23", "message_id": "fb352a14-ffa2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T20:40:23", "message_id": "95880a66-ffa1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T20:30:23", "message_id": "2fe18774-ffa0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T20:20:23", "message_id": "ca27af04-ff9e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T20:10:23", "message_id": "64770034-ff9d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T20:00:23", "message_id": "fece42e8-ff9b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T19:50:23", "message_id": "991ac79c-ff9a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T19:40:23", "message_id": "337002b4-ff99-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T19:30:23", "message_id": "cdc3071e-ff97-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T19:20:23", "message_id": "68169d6e-ff96-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T19:10:22", "message_id": "026448be-ff95-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T19:00:22", "message_id": "9caea6f0-ff93-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T18:50:22", "message_id": "370a4a76-ff92-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T18:40:22", "message_id": "d156be22-ff90-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T18:30:22", "message_id": "6b9efc3a-ff8f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T18:20:22", "message_id": "05f0ab96-ff8e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T18:10:22", "message_id": "a04429cc-ff8c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T18:00:22", "message_id": "3a9593aa-ff8b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T17:50:22", "message_id": "d4e5c1de-ff89-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T17:40:22", "message_id": "6f3beabc-ff88-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T17:30:22", "message_id": "098cf040-ff87-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T17:20:21", "message_id": "a3da6f4e-ff85-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T17:10:21", "message_id": "3e306ac8-ff84-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T17:00:21", "message_id": "d8779964-ff82-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T16:50:21", "message_id": "72c12a5a-ff81-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T16:40:21", "message_id": "0d161ce8-ff80-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T16:30:21", "message_id": "a77148b4-ff7e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T16:20:21", "message_id": "41b4ef72-ff7d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T16:10:21", "message_id": "dc1005fe-ff7b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T16:00:21", "message_id": "76643834-ff7a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T15:50:21", "message_id": "10b3837e-ff79-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T15:40:20", "message_id": "ab03b09a-ff77-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T15:30:20", "message_id": "454e3cda-ff76-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T15:20:20", "message_id": "dfa0bee0-ff74-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T15:10:20", "message_id": "79f01a92-ff73-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T15:00:20", "message_id": "14405fd2-ff72-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T14:50:20", "message_id": "ae9474d0-ff70-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T14:40:20", "message_id": "48e3ca74-ff6f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T14:30:20", "message_id": "e348bab8-ff6d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T14:20:20", "message_id": "7d954912-ff6c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T14:10:20", "message_id": "17e63b5e-ff6b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T14:00:20", "message_id": "b235c87a-ff69-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T13:50:19", "message_id": "4c8495ac-ff68-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T13:40:20", "message_id": "e6ea5836-ff66-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T13:30:19", "message_id": "8132b7f0-ff65-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T13:20:19", "message_id": "1b8239e0-ff64-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T13:10:19", "message_id": "b5d857a6-ff62-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T13:00:19", "message_id": "50335640-ff61-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T12:50:19", "message_id": "ea85394a-ff5f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T12:40:19", "message_id": "84d44344-ff5e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T12:30:19", "message_id": "1f2e7c36-ff5d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T12:20:19", "message_id": "b97a4dd0-ff5b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T12:10:19", "message_id": "53c8b7a2-ff5a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T12:00:19", "message_id": "ee185fee-ff58-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T11:50:19", "message_id": "886b7e34-ff57-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T11:40:18", "message_id": "22c0e1e2-ff56-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T11:30:18", "message_id": "bd12113c-ff54-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T11:20:18", "message_id": "57617428-ff53-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T11:10:18", "message_id": "f1d099e6-ff51-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T11:00:18", "message_id": "8c144554-ff50-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T10:50:18", "message_id": "26697ea0-ff4f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T10:40:18", "message_id": "c0c23764-ff4d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T10:30:18", "message_id": "5b0aa434-ff4c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T10:20:18", "message_id": "f560641c-ff4a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T10:10:18", "message_id": "8fbba762-ff49-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T10:00:18", "message_id": "2a1a7aec-ff48-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T09:50:18", "message_id": "c4557d8e-ff46-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T09:40:18", "message_id": "5eaee9a8-ff45-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T09:30:17", "message_id": "f8efd312-ff43-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T09:20:17", "message_id": "934a7b9e-ff42-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T09:10:17", "message_id": "2d9f88ee-ff41-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T09:00:17", "message_id": "c7e2d264-ff3f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T08:50:17", "message_id": "6234863e-ff3e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T08:40:17", "message_id": "fc8d9114-ff3c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T08:30:17", "message_id": "96d61ee6-ff3b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T08:20:17", "message_id": "311e03f8-ff3a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T08:10:17", "message_id": "cb71278e-ff38-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T08:00:16", "message_id": "65be1ee8-ff37-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T07:50:16", "message_id": "000e76a2-ff36-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T07:40:16", "message_id": "9a5daed2-ff34-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T07:30:16", "message_id": "34b9e7e0-ff33-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T07:20:16", "message_id": "ceffe4b4-ff31-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T07:10:16", "message_id": "694e49c2-ff30-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T07:00:16", "message_id": "03a7034e-ff2f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T06:50:16", "message_id": "9df95070-ff2d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T06:40:16", "message_id": "38459794-ff2c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T06:30:16", "message_id": "d2939ae6-ff2a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T06:20:16", "message_id": "6cf378b0-ff29-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T06:10:16", "message_id": "074c7f26-ff28-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T06:00:15", "message_id": "a190673e-ff26-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T05:50:15", "message_id": "3be93d4e-ff25-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T05:40:15", "message_id": "d6317058-ff23-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T05:30:15", "message_id": "709481be-ff22-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T05:20:15", "message_id": "0ad8cf20-ff21-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T05:10:15", "message_id": "a5222f60-ff1f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T05:00:15", "message_id": "3f7a73a8-ff1e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T04:50:15", "message_id": "d9cb0758-ff1c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T04:40:15", "message_id": "741f6882-ff1b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T04:30:15", "message_id": "0e7d6390-ff1a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T04:20:15", "message_id": "a8c72136-ff18-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T04:10:14", "message_id": "431f1b6e-ff17-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T04:00:14", "message_id": "dd6c35f0-ff15-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T03:50:14", "message_id": "77bebe9a-ff14-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T03:40:14", "message_id": "1216cdf4-ff13-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T03:30:14", "message_id": "ac5c5a7a-ff11-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T03:20:14", "message_id": "46b17d46-ff10-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T03:10:14", "message_id": "e117d1a2-ff0e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T03:00:14", "message_id": "7b5b22a2-ff0d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T02:50:14", "message_id": "15c3369c-ff0c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T02:40:14", "message_id": "b00ffd04-ff0a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T02:30:14", "message_id": "4a5e1e06-ff09-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T02:20:14", "message_id": "e4aa4040-ff07-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T02:10:13", "message_id": "7efd9fcc-ff06-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T02:00:13", "message_id": "19480b32-ff05-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T01:50:13", "message_id": "b3a39842-ff03-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T01:40:13", "message_id": "4decc736-ff02-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T01:30:13", "message_id": "e8431850-ff00-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T01:20:13", "message_id": "829722ae-feff-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T01:10:13", "message_id": "1ceb840a-fefe-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T01:00:13", "message_id": "b73466c8-fefc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T00:50:13", "message_id": "5189e1fa-fefb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T00:40:13", "message_id": "ebe4926a-fef9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T00:30:13", "message_id": "86242a40-fef8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T00:20:12", "message_id": "2079a978-fef7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T00:10:12", "message_id": "bacac4dc-fef5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-07T00:00:12", "message_id": "55156fb2-fef4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T23:50:12", "message_id": "ef747d66-fef2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T23:40:12", "message_id": "89c7f854-fef1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T23:30:12", "message_id": "24197ca4-fef0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T23:20:12", "message_id": "be76b958-feee-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T23:10:12", "message_id": "58b69544-feed-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T23:00:12", "message_id": "f33b9f30-feeb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T22:50:12", "message_id": "8d5c2f5a-feea-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T22:40:12", "message_id": "27b3eaf4-fee9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T22:30:12", "message_id": "c205ae6e-fee7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T22:20:11", "message_id": "5c5298e4-fee6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T22:10:11", "message_id": "f6b3ce96-fee4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T22:00:11", "message_id": "911a5c7c-fee3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T21:50:11", "message_id": "2b539f44-fee2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T21:40:11", "message_id": "c5ae0c34-fee0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T21:30:11", "message_id": "5ff430d6-fedf-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T21:20:11", "message_id": "fa474f8a-fedd-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T21:10:11", "message_id": "949a8720-fedc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T21:00:11", "message_id": "2ee2ed74-fedb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T20:50:11", "message_id": "c93962a6-fed9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T20:40:11", "message_id": "6397a8f0-fed8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T20:30:11", "message_id": "fde380f2-fed6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T20:20:11", "message_id": "983ca248-fed5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T20:10:10", "message_id": "3280dd6c-fed4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T20:00:10", "message_id": "ccea8a30-fed2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T19:50:10", "message_id": "6731351e-fed1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T19:40:10", "message_id": "0188cb88-fed0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T19:30:10", "message_id": "9bde07cc-fece-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T19:20:10", "message_id": "362727a2-fecd-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T19:10:10", "message_id": "d078284e-fecb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T19:00:10", "message_id": "6abc669c-feca-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T18:50:10", "message_id": "0528515c-fec9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T18:40:10", "message_id": "9f7075ac-fec7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T18:30:09", "message_id": "39b8ebe6-fec6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T18:20:09", "message_id": "d4107ac6-fec4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T18:10:09", "message_id": "6e597968-fec3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T18:00:09", "message_id": "08a0d14e-fec2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T17:50:09", "message_id": "a2f7439c-fec0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T17:40:09", "message_id": "3d527dbe-febf-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T17:30:09", "message_id": "d79a6de8-febd-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T17:20:09", "message_id": "71f26ece-febc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T17:10:09", "message_id": "0c3a005c-febb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T17:00:09", "message_id": "a68ad2be-feb9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T16:50:09", "message_id": "40decaa2-feb8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T16:40:08", "message_id": "db2b125c-feb6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T16:30:08", "message_id": "757e7710-feb5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T16:20:08", "message_id": "0fd043fe-feb4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T16:10:08", "message_id": "aa276b5a-feb2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T16:00:08", "message_id": "447c14d2-feb1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T15:50:08", "message_id": "dec6129c-feaf-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T15:40:08", "message_id": "79207a5a-feae-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T15:30:08", "message_id": "1367bda0-fead-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T15:20:08", "message_id": "adb9bea0-feab-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T15:10:08", "message_id": "48090ff8-feaa-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T15:00:08", "message_id": "e25b762e-fea8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T14:50:07", "message_id": "7caec05c-fea7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T14:40:07", "message_id": "170f2e7c-fea6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T14:30:07", "message_id": "b16a39a0-fea4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T14:20:07", "message_id": "4bb99084-fea3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T14:10:07", "message_id": "e607d3be-fea1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T14:00:07", "message_id": "8072bea2-fea0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T13:50:07", "message_id": "1ab867b6-fe9f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T13:40:07", "message_id": "b4fccfa8-fe9d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T13:30:07", "message_id": "4f4ffa5a-fe9c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T13:20:07", "message_id": "e9a0f44e-fe9a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T13:10:07", "message_id": "83ec6b16-fe99-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T13:00:07", "message_id": "1e47ec6e-fe98-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T12:50:07", "message_id": "b89d26dc-fe96-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T12:40:07", "message_id": "52f81fcc-fe95-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T12:30:06", "message_id": "ed41364c-fe93-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T12:20:06", "message_id": "878e4b9c-fe92-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T12:10:06", "message_id": "21e81cc4-fe91-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T12:00:06", "message_id": "bc356360-fe8f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T11:50:06", "message_id": "568bce74-fe8e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T11:40:06", "message_id": "f0e6d150-fe8c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T11:30:07", "message_id": "8bae2f46-fe8b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T11:20:06", "message_id": "25813ffc-fe8a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T11:10:06", "message_id": "bfcabd1a-fe88-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T11:00:06", "message_id": "5a2231a6-fe87-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T10:50:05", "message_id": "f474e6b0-fe85-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T10:40:05", "message_id": "8ec8ded0-fe84-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T10:30:05", "message_id": "291772dc-fe83-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T10:20:05", "message_id": "c369bd92-fe81-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T10:10:05", "message_id": "5db3bdfa-fe80-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T10:00:05", "message_id": "f80c3bea-fe7e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T09:50:05", "message_id": "92581450-fe7d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T09:40:05", "message_id": "2caeb4b6-fe7c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T09:30:05", "message_id": "c70168e4-fe7a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T09:20:05", "message_id": "614bdeb8-fe79-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T09:10:05", "message_id": "fba6206a-fe77-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T09:00:05", "message_id": "95f5b574-fe76-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T08:50:04", "message_id": "30464636-fe75-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T08:40:04", "message_id": "ca970a88-fe73-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T08:30:04", "message_id": "64e6faf0-fe72-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T08:20:04", "message_id": "ff3cd9fa-fe70-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T08:10:04", "message_id": "998fbbfa-fe6f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T08:00:04", "message_id": "33de7fa4-fe6e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T07:50:04", "message_id": "ce3136c0-fe6c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T07:40:04", "message_id": "688f972c-fe6b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T07:30:04", "message_id": "02e15574-fe6a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T07:20:04", "message_id": "9d35a032-fe68-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T07:10:04", "message_id": "378710b4-fe67-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T07:00:04", "message_id": "d1d5421e-fe65-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T06:50:03", "message_id": "6c2405c8-fe64-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T06:40:03", "message_id": "06808daa-fe63-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T06:30:03", "message_id": "a0d2557a-fe61-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T06:20:03", "message_id": "3b208888-fe60-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T06:10:03", "message_id": "d56cdc18-fe5e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T06:00:03", "message_id": "6fbe299a-fe5d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T05:50:03", "message_id": "0a1107c6-fe5c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T05:40:03", "message_id": "a45b37ea-fe5a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T05:30:03", "message_id": "3eaf42e8-fe59-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T05:20:03", "message_id": "d9048e2c-fe57-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T05:10:03", "message_id": "73580d16-fe56-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T05:00:02", "message_id": "0da64d6c-fe55-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T04:50:02", "message_id": "a7f6ccf4-fe53-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T04:40:02", "message_id": "424da892-fe52-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T04:30:02", "message_id": "dca44f06-fe50-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T04:20:02", "message_id": "76eaad3c-fe4f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T04:10:02", "message_id": "11386426-fe4e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T04:00:02", "message_id": "ab91ae58-fe4c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T03:50:02", "message_id": "45de92b6-fe4b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T03:40:02", "message_id": "e0328e50-fe49-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T03:30:02", "message_id": "7a7f2330-fe48-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T03:20:01", "message_id": "14cbaa64-fe47-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T03:10:01", "message_id": "af292ce6-fe45-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T03:00:01", "message_id": "49745f3e-fe44-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T02:50:01", "message_id": "e3c543de-fe42-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T02:40:01", "message_id": "7e11e0f2-fe41-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T02:30:01", "message_id": "1870f086-fe40-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T02:20:01", "message_id": "b2c35d6a-fe3e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T02:10:01", "message_id": "4d10f29e-fe3d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T02:00:01", "message_id": "e7679e76-fe3b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T01:50:01", "message_id": "81b8931a-fe3a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T01:40:01", "message_id": "1c156a3e-fe39-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T01:30:01", "message_id": "b668f468-fe37-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T01:20:01", "message_id": "50bde46c-fe36-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T01:10:00", "message_id": "eb08d5ce-fe34-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T01:00:00", "message_id": "8562d644-fe33-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T00:50:00", "message_id": "1fab2474-fe32-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T00:40:00", "message_id": "ba0080f2-fe30-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T00:30:00", "message_id": "544d38e6-fe2f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T00:20:00", "message_id": "ee9c189c-fe2d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T00:10:00", "message_id": "88f34d9a-fe2c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-06T00:00:00", "message_id": "234138b4-fe2b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T23:50:00", "message_id": "bd95e524-fe29-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T23:40:00", "message_id": "57ea9dd8-fe28-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T23:30:00", "message_id": "f2399530-fe26-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T23:20:00", "message_id": "8c984830-fe25-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T23:10:00", "message_id": "270c1038-fe24-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T23:00:00", "message_id": "c16185a2-fe22-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T22:49:59", "message_id": "5b7d9cae-fe21-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T22:39:59", "message_id": "f5cd0cd8-fe1f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T22:29:59", "message_id": "9026395a-fe1e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T22:19:59", "message_id": "2a781160-fe1d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T22:09:59", "message_id": "c4c50b12-fe1b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T21:59:59", "message_id": "5f1758e8-fe1a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T21:49:59", "message_id": "f9657fa8-fe18-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T21:39:59", "message_id": "93b2c504-fe17-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T21:29:58", "message_id": "2dff8996-fe16-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T21:19:58", "message_id": "c85579da-fe14-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T21:09:58", "message_id": "62a88aec-fe13-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T20:59:58", "message_id": "fcfc763c-fe11-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T20:49:58", "message_id": "9745913a-fe10-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T20:39:58", "message_id": "3195dfb2-fe0f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T20:29:58", "message_id": "cbe5988e-fe0d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T20:19:58", "message_id": "663d156c-fe0c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T20:09:58", "message_id": "008941f6-fe0b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T19:59:58", "message_id": "9adc7284-fe09-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T19:49:58", "message_id": "35319960-fe08-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T19:39:57", "message_id": "cf8ce34a-fe06-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T19:29:57", "message_id": "69d9953a-fe05-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T19:19:57", "message_id": "042b821c-fe04-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T19:09:57", "message_id": "9e7dfd06-fe02-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T18:59:57", "message_id": "38ce0d76-fe01-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T18:49:57", "message_id": "d31f71fa-fdff-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T18:39:57", "message_id": "6d76fbd0-fdfe-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T18:29:57", "message_id": "07cbb006-fdfd-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T18:19:57", "message_id": "a21ec1cc-fdfb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T18:09:57", "message_id": "3c7f1dcc-fdfa-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T17:59:57", "message_id": "d6c5d47c-fdf8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T17:49:57", "message_id": "7119bcc0-fdf7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T17:39:56", "message_id": "0b6ca0f0-fdf6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T17:29:56", "message_id": "a5c2d39c-fdf4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T17:19:56", "message_id": "4011fb8c-fdf3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T17:09:56", "message_id": "da66e9ce-fdf1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T16:59:56", "message_id": "74b80668-fdf0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T16:49:56", "message_id": "0f0927ee-fdef-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T16:39:56", "message_id": "a9627b8a-fded-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T16:29:56", "message_id": "43c1e852-fdec-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T16:19:56", "message_id": "de0ebeaa-fdea-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T16:09:56", "message_id": "7867d40c-fde9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T15:59:56", "message_id": "12bc1f2e-fde8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T15:49:56", "message_id": "ad15e93a-fde6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T15:39:56", "message_id": "4766f328-fde5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T15:29:56", "message_id": "e1b6be24-fde3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T15:19:56", "message_id": "7c2cd116-fde2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T15:09:55", "message_id": "16568d24-fde1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T14:59:55", "message_id": "b0a59b88-fddf-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T14:49:55", "message_id": "4affb4d6-fdde-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T14:39:55", "message_id": "e54dacf2-fddc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T14:29:55", "message_id": "7fa0720a-fddb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T14:19:55", "message_id": "19efa1e8-fdda-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T14:09:55", "message_id": "b44535c0-fdd8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T13:59:55", "message_id": "4e91d9f0-fdd7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T13:49:55", "message_id": "e8e59584-fdd5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T13:39:55", "message_id": "83348e12-fdd4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T13:29:54", "message_id": "1d82ac4e-fdd3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T13:19:54", "message_id": "b7d5b748-fdd1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T13:09:54", "message_id": "5227f24a-fdd0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T12:59:54", "message_id": "ec7b0988-fdce-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T12:49:54", "message_id": "86cb55bc-fdcd-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T12:39:54", "message_id": "211b45f2-fdcc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T12:29:54", "message_id": "bb69e962-fdca-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T12:19:54", "message_id": "55bd19dc-fdc9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T12:09:54", "message_id": "f007363c-fdc7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T11:59:54", "message_id": "8a5debc4-fdc6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T11:49:54", "message_id": "24b54eda-fdc5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T11:39:54", "message_id": "bf094704-fdc3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T11:29:53", "message_id": "5958906e-fdc2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T11:19:53", "message_id": "f3ac84b0-fdc0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T11:09:53", "message_id": "8dff9874-fdbf-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T10:59:53", "message_id": "28520828-fdbe-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T10:49:53", "message_id": "c2a754fc-fdbc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T10:39:53", "message_id": "5cf54db8-fdbb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T10:29:53", "message_id": "f74ff19e-fdb9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T10:19:53", "message_id": "919f5048-fdb8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T10:09:53", "message_id": "2c00a7d8-fdb7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T09:59:53", "message_id": "c6525c48-fdb5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T09:49:53", "message_id": "60a95938-fdb4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T09:39:53", "message_id": "faf98168-fdb2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T09:29:53", "message_id": "954e128a-fdb1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T09:19:52", "message_id": "2f9e3bd2-fdb0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T09:09:52", "message_id": "c9eb0bb8-fdae-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T08:59:52", "message_id": "643c5b42-fdad-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T08:49:52", "message_id": "fea20f76-fdab-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T08:39:52", "message_id": "98e9498e-fdaa-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T08:29:52", "message_id": "3337d87c-fda9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T08:19:52", "message_id": "cd85643c-fda7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T08:09:52", "message_id": "67ef1ce0-fda6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T07:59:52", "message_id": "022e0606-fda5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T07:49:52", "message_id": "9c7ec3b4-fda3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T07:39:52", "message_id": "36d5b62c-fda2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T07:29:51", "message_id": "d1220d0e-fda0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T07:19:51", "message_id": "6b75cfd2-fd9f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T07:09:52", "message_id": "05ed6234-fd9e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T06:59:51", "message_id": "a01387fa-fd9c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T06:49:51", "message_id": "3a69cadc-fd9b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T06:39:51", "message_id": "d4b0deb6-fd99-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T06:29:51", "message_id": "6f05bf7e-fd98-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T06:19:51", "message_id": "095249fa-fd97-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T06:09:51", "message_id": "a3a8989e-fd95-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T05:59:51", "message_id": "3dfc81c8-fd94-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T05:49:51", "message_id": "d84e47cc-fd92-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T05:39:50", "message_id": "729f7e88-fd91-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T05:29:50", "message_id": "0cf56d50-fd90-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T05:19:50", "message_id": "a745f3ae-fd8e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T05:09:50", "message_id": "41943670-fd8d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T04:59:50", "message_id": "dbe7c19e-fd8b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T04:49:50", "message_id": "7649e50c-fd8a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T04:39:50", "message_id": "10a32fa2-fd89-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T04:29:50", "message_id": "ab047116-fd87-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T04:19:50", "message_id": "453b4432-fd86-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T04:09:50", "message_id": "df81286a-fd84-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T03:59:49", "message_id": "79c1b220-fd83-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T03:49:49", "message_id": "141fcbc4-fd82-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T03:39:49", "message_id": "ae780a62-fd80-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T03:29:49", "message_id": "48d2795a-fd7f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T03:19:49", "message_id": "e330b5b8-fd7d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T03:09:49", "message_id": "7d884448-fd7c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T02:59:49", "message_id": "17c82a70-fd7b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T02:49:49", "message_id": "b207721e-fd79-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T02:39:49", "message_id": "4c86490c-fd78-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T02:29:49", "message_id": "e6cb1238-fd76-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T02:19:49", "message_id": "81294de2-fd75-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T02:09:49", "message_id": "1b8362e4-fd74-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T01:59:49", "message_id": "b5c1d900-fd72-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T01:49:49", "message_id": "50112878-fd71-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T01:39:49", "message_id": "ea61d6ae-fd6f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T01:29:49", "message_id": "84db49c4-fd6e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T01:19:49", "message_id": "1f3bad94-fd6d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T01:09:48", "message_id": "b97b8700-fd6b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T00:59:48", "message_id": "53c68f64-fd6a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T00:49:48", "message_id": "ee082aa8-fd68-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T00:39:48", "message_id": "886a30e8-fd67-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T00:29:48", "message_id": "22c89c12-fd66-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T00:19:48", "message_id": "bd1b3a1a-fd64-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-05T00:09:48", "message_id": "578ced98-fd63-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-04T23:59:48", "message_id": "f1cfe63c-fd61-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-04T23:49:48", "message_id": "8c139c72-fd60-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-04T23:39:05", "message_id": "0d1fd13e-fd5f-11e2-b8cf-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "timestamp": "2013-08-04T23:29:05", "message_id": "a78bc5f4-fd5d-11e2-b8cf-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "counter_type": "gauge"}]} \ No newline at end of file diff --git a/tests/data/map_fixture_23.json b/tests/data/map_fixture_23.json new file mode 100644 index 0000000..ad609fc --- /dev/null +++ b/tests/data/map_fixture_23.json @@ -0,0 +1 @@ +{"http://localhost:8777/v2/meters/port?q.field=resource_id&q.value=b35709ef-6b3a-42d7-bd57-ef4cd673ec9b": [{"counter_name": "port", "user_id": "9692a61b44f246259af534f0b1d95942", "resource_id": "b35709ef-6b3a-42d7-bd57-ef4cd673ec9b", "timestamp": "2013-08-05T22:04:18.505000", "message_id": "f99f7c38-fe1a-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "port", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"status": "DOWN", "binding:host_id": "openstack", "name": "", "admin_state_up": "True", "network_id": "79b5e163-496c-4ab6-9c21-3b597ed632dc", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "host": "network.openstack", "binding:vif_type": "ovs", "device_owner": "compute:None", "mac_address": "fa:16:3e:a6:d8:57", "event_type": "port.create.end", "id": "b35709ef-6b3a-42d7-bd57-ef4cd673ec9b", "device_id": "0a16330b-d457-425d-8249-a275fab9adea"}, "counter_type": "gauge"}], "http://localhost:8777/v2/meters/port.create?q.field=resource_id&q.value=b35709ef-6b3a-42d7-bd57-ef4cd673ec9b": [{"counter_name": "port.create", "user_id": "9692a61b44f246259af534f0b1d95942", "resource_id": "b35709ef-6b3a-42d7-bd57-ef4cd673ec9b", "timestamp": "2013-08-05T22:04:18.505000", "message_id": "f9a15652-fe1a-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "port", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"status": "DOWN", "binding:host_id": "openstack", "name": "", "admin_state_up": "True", "network_id": "79b5e163-496c-4ab6-9c21-3b597ed632dc", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "host": "network.openstack", "binding:vif_type": "ovs", "device_owner": "compute:None", "mac_address": "fa:16:3e:a6:d8:57", "event_type": "port.create.end", "id": "b35709ef-6b3a-42d7-bd57-ef4cd673ec9b", "device_id": "0a16330b-d457-425d-8249-a275fab9adea"}, "counter_type": "delta"}]} \ No newline at end of file diff --git a/tests/data/map_fixture_24.json b/tests/data/map_fixture_24.json new file mode 100644 index 0000000..1e46dd2 --- /dev/null +++ b/tests/data/map_fixture_24.json @@ -0,0 +1 @@ +{"http://localhost:8777/v2/meters/instance.scheduled?q.field=resource_id&q.value=c01c63fe-7a29-4426-bab1-34d088e92415": [{"counter_name": "instance.scheduled", "user_id": null, "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T05:17:37.319000", "message_id": "57b605ae-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "host": "scheduler.openstack", "event_type": "scheduler.run_instance.scheduled"}, "counter_type": "delta"}], "http://localhost:8777/v2/meters/instance:m1.nano?q.field=resource_id&q.value=c01c63fe-7a29-4426-bab1-34d088e92415": [{"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-12T04:00:31.184000", "message_id": "bb5f9640-0303-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-12 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-12T03:00:51.440000", "message_id": "65a59ebe-02fb-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-12 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-12T02:00:27.697000", "message_id": "f5b5d27a-02f2-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-12 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-12T01:00:47.102000", "message_id": "9f9ac25e-02ea-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-12 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-12T00:00:24.788000", "message_id": "307ab508-02e2-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-12T00:00:24.788000", "message_id": "307ab508-02e2-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-12T00:00:24.788000", "message_id": "307ab508-02e2-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-12T00:00:24.788000", "message_id": "307ab508-02e2-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-12T00:00:24.788000", "message_id": "307ab508-02e2-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-11T23:00:42.335000", "message_id": "d93add02-02d9-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-11T22:00:21.059000", "message_id": "6ab2e7ba-02d1-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-11T22:00:21.059000", "message_id": "6ab2e7ba-02d1-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-11T22:00:21.059000", "message_id": "6ab2e7ba-02d1-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-11T22:00:21.059000", "message_id": "6ab2e7ba-02d1-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-11T21:00:30.056000", "message_id": "0e4312d2-02c9-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-11T20:00:18.137000", "message_id": "a56f0854-02c0-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-11T19:00:11.814000", "message_id": "3fe3fede-02b8-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-11T18:00:03.045000", "message_id": "d8eba388-02af-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-11T18:00:03.045000", "message_id": "d8eba388-02af-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-11T18:00:03.045000", "message_id": "d8eba388-02af-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-11T18:00:03.045000", "message_id": "d8eba388-02af-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-11T17:00:49.747000", "message_id": "92f8318c-02a7-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-11T16:00:45.728000", "message_id": "2ee5bc1c-029f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-11T15:00:36.733000", "message_id": "c7a449fe-0296-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-11T14:00:27.976000", "message_id": "60abf240-028e-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-11T13:00:20.264000", "message_id": "fa618e58-0285-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-11T12:00:11.566000", "message_id": "936bd800-027d-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-11T11:00:02.921000", "message_id": "2c81e646-0275-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-11T11:00:02.921000", "message_id": "2c81e646-0275-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-11T11:00:02.921000", "message_id": "2c81e646-0275-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-11T10:00:29.398000", "message_id": "da7ae558-026c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-11T09:00:26.353000", "message_id": "76e179ce-0264-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-11T09:00:26.353000", "message_id": "76e179ce-0264-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-11T08:00:23.259000", "message_id": "13380ed6-025c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-11T07:00:19.872000", "message_id": "af6c5cb6-0253-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-11T06:00:16.472000", "message_id": "4ba2718c-024b-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-11T05:00:05.302000", "message_id": "e350436e-0242-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-11T05:00:05.302000", "message_id": "e350436e-0242-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-11T04:00:09.233000", "message_id": "83da99a0-023a-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-11T03:00:02.173000", "message_id": "1de561d2-0232-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-11T02:00:02.909000", "message_id": "bc874b38-0229-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-11T01:00:00.658000", "message_id": "597a8f80-0221-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-11T01:00:00.658000", "message_id": "597a8f80-0221-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-11T01:00:00.658000", "message_id": "597a8f80-0221-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-11T00:00:59.512000", "message_id": "1abf8956-0219-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-10T23:00:57.092000", "message_id": "b7966712-0210-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-10T22:00:51.263000", "message_id": "5249ac28-0208-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-10T21:00:44.050000", "message_id": "ec4d3b7c-01ff-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-10T21:00:44.050000", "message_id": "ec4d3b7c-01ff-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-10T21:00:44.050000", "message_id": "ec4d3b7c-01ff-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-10T21:00:44.050000", "message_id": "ec4d3b7c-01ff-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-10T20:00:38.899000", "message_id": "874e8da0-01f7-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-10T19:00:35.353000", "message_id": "2392e17e-01ef-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-10T18:00:31.926000", "message_id": "bfb1970c-01e6-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-10T17:00:28.437000", "message_id": "5bf0342e-01de-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-10T17:00:28.437000", "message_id": "5bf0342e-01de-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-10T16:00:25.497000", "message_id": "f85fb89c-01d5-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-10T16:00:25.497000", "message_id": "f85fb89c-01d5-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-10T16:00:25.497000", "message_id": "f85fb89c-01d5-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-10T16:00:25.497000", "message_id": "f85fb89c-01d5-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-10T15:00:22.275000", "message_id": "94a75074-01cd-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-10T15:00:22.275000", "message_id": "94a75074-01cd-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-10T15:00:22.275000", "message_id": "94a75074-01cd-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-10T15:00:22.275000", "message_id": "94a75074-01cd-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-10T15:00:22.275000", "message_id": "94a75074-01cd-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-10T14:00:19.191000", "message_id": "3112fe4e-01c5-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-10T13:00:15.725000", "message_id": "cd3e4660-01bc-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-10T12:00:04.316000", "message_id": "6498b2b0-01b4-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-10T11:00:00.332000", "message_id": "00887ca4-01ac-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-10T10:00:57.863000", "message_id": "c102b750-01a3-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-10T09:00:54.319000", "message_id": "5d1ef116-019b-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-10T08:00:51.375000", "message_id": "f99cf794-0192-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-10T07:00:47.682000", "message_id": "95be66de-018a-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-10T06:00:44.548000", "message_id": "31f339de-0182-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-10T05:00:41.387000", "message_id": "ce6be9cc-0179-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-10T04:00:38.548000", "message_id": "6af7b2a2-0171-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-10T03:00:35.120000", "message_id": "071f40ae-0169-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-10T03:00:35.120000", "message_id": "071f40ae-0169-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-10T02:00:32.242000", "message_id": "a3b54ffc-0160-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-10T02:00:32.242000", "message_id": "a3b54ffc-0160-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-10T02:00:32.242000", "message_id": "a3b54ffc-0160-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-10T02:00:32.242000", "message_id": "a3b54ffc-0160-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-10T01:00:28.562000", "message_id": "3fa5209e-0158-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-10T00:00:24.284000", "message_id": "db5498c0-014f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-10T00:00:24.284000", "message_id": "db5498c0-014f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-10T00:00:24.284000", "message_id": "db5498c0-014f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-10T00:00:24.284000", "message_id": "db5498c0-014f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-10T00:00:24.284000", "message_id": "db5498c0-014f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-09T23:00:20.577000", "message_id": "77658be2-0147-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-09T23:00:20.577000", "message_id": "77658be2-0147-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-09T22:00:17.047000", "message_id": "13786b66-013f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-09T22:00:17.047000", "message_id": "13786b66-013f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-09T22:00:17.047000", "message_id": "13786b66-013f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-09T22:00:17.047000", "message_id": "13786b66-013f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-09T21:00:13.502000", "message_id": "af9da848-0136-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-09T21:00:13.502000", "message_id": "af9da848-0136-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-09T20:00:10.444000", "message_id": "4bfe123a-012e-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-09T19:00:07.068000", "message_id": "e832161e-0125-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-09T19:00:07.068000", "message_id": "e832161e-0125-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-09T19:00:07.068000", "message_id": "e832161e-0125-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-09T19:00:07.068000", "message_id": "e832161e-0125-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-09T18:00:05.421000", "message_id": "858631f6-011d-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-09T17:00:01.570000", "message_id": "2177fbf2-0115-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-09T16:00:59.797000", "message_id": "e271d872-010c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-09T15:00:53.203000", "message_id": "7c9ce706-0104-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-09T14:00:42.356000", "message_id": "14675782-00fc-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-09T13:00:32.026000", "message_id": "ac87a48a-00f3-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-09T12:00:21.716000", "message_id": "44a72988-00eb-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-09T11:00:11.789000", "message_id": "dcef8c3e-00e2-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-09T10:00:02.069000", "message_id": "756ee882-00da-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-09T09:00:53.781000", "message_id": "32626094-00d2-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-09T08:00:44.842000", "message_id": "cb4ed1ba-00c9-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-09T07:00:35.694000", "message_id": "641c0f2e-00c1-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-09T06:00:27.555000", "message_id": "fd95d49a-00b8-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-09T06:00:27.555000", "message_id": "fd95d49a-00b8-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-09T06:00:27.555000", "message_id": "fd95d49a-00b8-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-09T05:00:17.905000", "message_id": "96034ca2-00b0-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-09T04:00:02.418000", "message_id": "2b00ee80-00a8-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-09T03:00:53.080000", "message_id": "e783c93c-009f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-09T02:00:37.397000", "message_id": "7c38333c-0097-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-09T01:00:26.974000", "message_id": "1448acfa-008f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-09T00:00:17.138000", "message_id": "acbc06e8-0086-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-08T23:00:07.657000", "message_id": "4541e314-007e-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-08T22:01:01.432000", "message_id": "03b73870-0076-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-08T22:01:01.432000", "message_id": "03b73870-0076-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-08T21:00:52.378000", "message_id": "9c55eb66-006d-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-08T20:00:43.611000", "message_id": "356fe9c2-0065-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-08T19:00:36.868000", "message_id": "cf99fa00-005c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-08T18:00:29.471000", "message_id": "696bf812-0054-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-08T17:00:22.454000", "message_id": "03843a4e-004c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-08T16:00:14.069000", "message_id": "9c9a82aa-0043-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-08T15:00:07.843000", "message_id": "3749085c-003b-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-08T14:01:00.789000", "message_id": "f4ff085a-0032-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-08T13:00:51.760000", "message_id": "8dd53878-002a-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-08T12:00:42.701000", "message_id": "26b947cc-0022-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-08T11:00:35.864000", "message_id": "c0d10ed4-0019-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-08T11:00:35.864000", "message_id": "c0d10ed4-0019-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-08T11:00:35.864000", "message_id": "c0d10ed4-0019-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-08T11:00:35.864000", "message_id": "c0d10ed4-0019-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-08T10:00:28.560000", "message_id": "5aba6d96-0011-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-08T10:00:28.560000", "message_id": "5aba6d96-0011-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-08T10:00:28.560000", "message_id": "5aba6d96-0011-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-08T10:00:28.560000", "message_id": "5aba6d96-0011-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-08T10:00:28.560000", "message_id": "5aba6d96-0011-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-08T09:00:25.709000", "message_id": "f73e7cec-0008-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-08T08:00:23.332000", "message_id": "941aaa58-0000-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-08T07:00:21.377000", "message_id": "312dd0bc-fff8-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-08T06:00:19.443000", "message_id": "ce44d336-ffef-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-08T05:00:17.612000", "message_id": "6b6d4bb0-ffe7-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-08T05:00:17.612000", "message_id": "6b6d4bb0-ffe7-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-08T05:00:17.612000", "message_id": "6b6d4bb0-ffe7-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-08T05:00:17.612000", "message_id": "6b6d4bb0-ffe7-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-08T04:00:16.017000", "message_id": "08a8a5b8-ffdf-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-08T03:00:13.986000", "message_id": "a5abbf02-ffd6-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-08T02:00:12.194000", "message_id": "42d04eb4-ffce-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-08T01:00:10.284000", "message_id": "dfe19a0e-ffc5-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-08T00:00:08.743000", "message_id": "7d539bec-ffbd-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-07T23:00:03.983000", "message_id": "18a09e14-ffb5-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-07T22:00:01.460000", "message_id": "b5763ec8-ffac-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-07T21:00:58.467000", "message_id": "75a61bea-ffa4-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-07T21:00:58.467000", "message_id": "75a61bea-ffa4-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-07T20:00:55.858000", "message_id": "125fa5b8-ff9c-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-07T19:00:51.193000", "message_id": "adbaf228-ff93-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-07T18:00:49.702000", "message_id": "4b11e4ea-ff8b-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-07T17:00:47.592000", "message_id": "e8006d8e-ff82-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-07T16:00:45.357000", "message_id": "84ef6d4c-ff7a-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-07T15:00:43.113000", "message_id": "21d4bdc8-ff72-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-07T14:00:40.887000", "message_id": "bebbb596-ff69-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-07T13:00:38.095000", "message_id": "5b4f9462-ff61-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-07T12:00:35.638000", "message_id": "f819a1d8-ff58-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-07T11:00:33.181000", "message_id": "94de328a-ff50-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-07T10:00:28.967000", "message_id": "3094970e-ff48-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-07T09:00:26.228000", "message_id": "cd2e8f9c-ff3f-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-07T08:00:23.811000", "message_id": "69fac51a-ff37-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-07T07:00:21.742000", "message_id": "06fcbe6c-ff2f-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-07T06:00:16.437000", "message_id": "a216cdec-ff26-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-07T06:00:16.437000", "message_id": "a216cdec-ff26-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-07T06:00:16.437000", "message_id": "a216cdec-ff26-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-07T05:00:13.157000", "message_id": "3e5b297c-ff1e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-07T04:00:10.543000", "message_id": "db04144a-ff15-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-07T03:00:06.865000", "message_id": "76f935dc-ff0d-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-07T03:00:06.865000", "message_id": "76f935dc-ff0d-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-07T03:00:06.865000", "message_id": "76f935dc-ff0d-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-07T03:00:06.865000", "message_id": "76f935dc-ff0d-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-07T03:00:06.865000", "message_id": "76f935dc-ff0d-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-07T02:00:04.011000", "message_id": "13a0dd94-ff05-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-07T01:00:01.999000", "message_id": "b08eea14-fefc-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-07T00:00:01.267000", "message_id": "4e5f9cce-fef4-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-07T00:00:01.267000", "message_id": "4e5f9cce-fef4-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-07T00:00:01.267000", "message_id": "4e5f9cce-fef4-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-07T00:00:01.267000", "message_id": "4e5f9cce-fef4-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-06T23:00:36.477000", "message_id": "0197c694-feec-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-06T22:00:00.352000", "message_id": "8a52cd48-fee3-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-06T22:00:00.352000", "message_id": "8a52cd48-fee3-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-06T22:00:00.352000", "message_id": "8a52cd48-fee3-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-06T22:00:00.352000", "message_id": "8a52cd48-fee3-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-06T22:00:00.352000", "message_id": "8a52cd48-fee3-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-06T21:00:12.949000", "message_id": "3014361c-fedb-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-06T20:00:01.679000", "message_id": "c7a117b0-fed2-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-06T20:00:01.679000", "message_id": "c7a117b0-fed2-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-06T20:00:01.679000", "message_id": "c7a117b0-fed2-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-06T20:00:01.679000", "message_id": "c7a117b0-fed2-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-06T20:00:01.679000", "message_id": "c7a117b0-fed2-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-06T19:00:52.355000", "message_id": "84033504-feca-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-06T18:00:45.984000", "message_id": "1e6dd364-fec2-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-06T17:00:34.454000", "message_id": "b5d8ca8c-feb9-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-06T16:00:25.313000", "message_id": "4e8d7452-feb1-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-06T15:00:16.298000", "message_id": "e772b58c-fea8-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-06T14:00:07.342000", "message_id": "804ddd08-fea0-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-06T14:00:07.342000", "message_id": "804ddd08-fea0-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-06T14:00:07.342000", "message_id": "804ddd08-fea0-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-06T14:00:07.342000", "message_id": "804ddd08-fea0-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-06T13:01:00.193000", "message_id": "3e0b68dc-fe98-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-06T12:00:50.958000", "message_id": "d6c91136-fe8f-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-06T11:00:42.255000", "message_id": "6fd61d28-fe87-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-06T10:00:33.244000", "message_id": "08b3dec6-fe7f-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-06T10:00:33.244000", "message_id": "08b3dec6-fe7f-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-06T10:00:33.244000", "message_id": "08b3dec6-fe7f-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-06T10:00:33.244000", "message_id": "08b3dec6-fe7f-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-06T09:00:25.726000", "message_id": "a271d1d4-fe76-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-06T08:00:15.480000", "message_id": "3a9cb9e6-fe6e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-06T07:00:06.809000", "message_id": "d39d0122-fe65-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-06T07:00:06.809000", "message_id": "d39d0122-fe65-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-06T06:00:59.258000", "message_id": "9116365a-fe5d-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-06T05:00:49.921000", "message_id": "29d68d26-fe55-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-06T04:00:41.548000", "message_id": "c2fec986-fe4c-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-06T03:00:32.597000", "message_id": "5bfd0188-fe44-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-06T02:00:23.208000", "message_id": "f48fdeec-fe3b-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-06T01:00:14.172000", "message_id": "8d5b93ea-fe33-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-06T00:00:05.685000", "message_id": "269caa34-fe2b-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T23:00:58.973000", "message_id": "e48f9e1a-fe22-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T22:00:49.315000", "message_id": "7d235d28-fe1a-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T22:00:49.315000", "message_id": "7d235d28-fe1a-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T21:00:40.430000", "message_id": "15f77b46-fe12-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T20:00:32.393000", "message_id": "af656e72-fe09-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T20:00:32.393000", "message_id": "af656e72-fe09-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T19:00:24.309000", "message_id": "492b5d04-fe01-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T18:00:16.172000", "message_id": "e2384f74-fdf8-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T18:00:16.172000", "message_id": "e2384f74-fdf8-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T18:00:16.172000", "message_id": "e2384f74-fdf8-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T17:00:08.261000", "message_id": "7bab9afc-fdf0-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T16:00:00.185000", "message_id": "15243698-fde8-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T15:00:53.732000", "message_id": "d34aca1e-fddf-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T14:00:45.870000", "message_id": "6cda1242-fdd7-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T14:00:45.870000", "message_id": "6cda1242-fdd7-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T14:00:45.870000", "message_id": "6cda1242-fdd7-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T13:00:37.686000", "message_id": "063381c0-fdcf-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T12:00:29.501000", "message_id": "9f925ac0-fdc6-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T12:00:29.501000", "message_id": "9f925ac0-fdc6-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T11:00:21.487000", "message_id": "3904f89c-fdbe-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T11:00:21.487000", "message_id": "3904f89c-fdbe-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T11:00:21.487000", "message_id": "3904f89c-fdbe-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T10:00:13.228000", "message_id": "d25e2b02-fdb5-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T09:00:05.310000", "message_id": "6bd756f4-fdad-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T08:00:58.686000", "message_id": "29d376d2-fda5-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T07:00:50.560000", "message_id": "c343f1e2-fd9c-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T06:00:42.385000", "message_id": "5ca22d94-fd94-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T06:00:42.385000", "message_id": "5ca22d94-fd94-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T06:00:42.385000", "message_id": "5ca22d94-fd94-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T05:17:47.006000", "message_id": "5d97bca6-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.create.end", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "message": "Success", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.616662", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "image_name": "cirros-0.3.1-x86_64-uec", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T05:17:46.789000", "message_id": "5d723e18-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.update", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "old_state": "building", "old_task_state": "spawning", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05T05:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 05:17:36", "launched_at": "2013-08-05T05:17:46.616662", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "None", "audit_period_ending": "2013-08-05T05:17:46.683739", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T05:17:46.789000", "message_id": "5d723e18-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.update", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "old_state": "building", "old_task_state": "spawning", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05T05:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 05:17:36", "launched_at": "2013-08-05T05:17:46.616662", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "None", "audit_period_ending": "2013-08-05T05:17:46.683739", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T05:17:46.789000", "message_id": "5d723e18-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.update", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "old_state": "building", "old_task_state": "spawning", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05T05:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 05:17:36", "launched_at": "2013-08-05T05:17:46.616662", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "None", "audit_period_ending": "2013-08-05T05:17:46.683739", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T05:17:42.061000", "message_id": "5a8ff352-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "spawning", "event_type": "compute.instance.update", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "building", "old_state": "None", "old_task_state": "None", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05T05:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 05:17:36", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "spawning", "audit_period_ending": "2013-08-05T05:17:42.040523", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T05:17:39.752000", "message_id": "59312e54-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "spawning", "event_type": "compute.instance.update", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "building", "old_state": "building", "old_task_state": "block_device_mapping", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05T05:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 05:17:36", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "spawning", "audit_period_ending": "2013-08-05T05:17:39.719445", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T05:17:38.988000", "message_id": "58de978e-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "block_device_mapping", "event_type": "compute.instance.update", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "building", "old_state": "building", "old_task_state": "networking", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05T05:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 05:17:36", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "block_device_mapping", "audit_period_ending": "2013-08-05T05:17:38.891624", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T05:17:38.988000", "message_id": "58de978e-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "block_device_mapping", "event_type": "compute.instance.update", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "building", "old_state": "building", "old_task_state": "networking", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05T05:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 05:17:36", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "block_device_mapping", "audit_period_ending": "2013-08-05T05:17:38.891624", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T05:17:38.324000", "message_id": "58a2413a-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "networking", "event_type": "compute.instance.update", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "building", "old_state": "building", "old_task_state": "None", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05T05:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 05:17:36", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "networking", "audit_period_ending": "2013-08-05T05:17:38.306231", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T05:17:38.324000", "message_id": "58a2413a-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "networking", "event_type": "compute.instance.update", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "building", "old_state": "building", "old_task_state": "None", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05T05:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 05:17:36", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "networking", "audit_period_ending": "2013-08-05T05:17:38.306231", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T05:17:38.324000", "message_id": "58a2413a-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "networking", "event_type": "compute.instance.update", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "building", "old_state": "building", "old_task_state": "None", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05T05:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 05:17:36", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "networking", "audit_period_ending": "2013-08-05T05:17:38.306231", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T05:17:38.324000", "message_id": "58a2413a-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "networking", "event_type": "compute.instance.update", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "building", "old_state": "building", "old_task_state": "None", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05T05:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 05:17:36", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "networking", "audit_period_ending": "2013-08-05T05:17:38.306231", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T05:17:38.154000", "message_id": "58952270-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.update", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "building", "old_state": "None", "old_task_state": "None", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05T05:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 05:17:36", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "None", "audit_period_ending": "2013-08-05T05:17:38.148291", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T05:17:37.667000", "message_id": "582686b2-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "scheduling", "event_type": "compute.instance.create.start", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "message": "", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "building", "launched_at": "", "node": "None", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "image_name": "cirros-0.3.1-x86_64-uec", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T05:17:37.667000", "message_id": "582686b2-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "scheduling", "event_type": "compute.instance.create.start", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "message": "", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "building", "launched_at": "", "node": "None", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "image_name": "cirros-0.3.1-x86_64-uec", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T05:17:37.667000", "message_id": "582686b2-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "scheduling", "event_type": "compute.instance.create.start", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "message": "", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "building", "launched_at": "", "node": "None", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "image_name": "cirros-0.3.1-x86_64-uec", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T05:17:37.667000", "message_id": "582686b2-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "scheduling", "event_type": "compute.instance.create.start", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "message": "", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "building", "launched_at": "", "node": "None", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "image_name": "cirros-0.3.1-x86_64-uec", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T05:17:37.667000", "message_id": "582686b2-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "scheduling", "event_type": "compute.instance.create.start", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "message": "", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "building", "launched_at": "", "node": "None", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "image_name": "cirros-0.3.1-x86_64-uec", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T05:17:37.667000", "message_id": "582686b2-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "scheduling", "event_type": "compute.instance.create.start", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "message": "", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "building", "launched_at": "", "node": "None", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "image_name": "cirros-0.3.1-x86_64-uec", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T05:17:37.667000", "message_id": "582686b2-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "scheduling", "event_type": "compute.instance.create.start", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "message": "", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "building", "launched_at": "", "node": "None", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "image_name": "cirros-0.3.1-x86_64-uec", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T05:17:37.558000", "message_id": "581a7d54-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.update", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "building", "old_state": "building", "old_task_state": "scheduling", "node": "None", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05T05:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 05:17:36", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "None", "audit_period_ending": "2013-08-05T05:17:37.556043", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T05:17:36.990000", "message_id": "57888818-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "scheduling", "event_type": "compute.instance.update", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "building", "old_state": "None", "old_task_state": "None", "node": "None", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "api.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05T05:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 05:17:36", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "scheduling", "audit_period_ending": "2013-08-05T05:17:36.988438", "os_type": "None"}, "counter_type": "gauge"}], "http://localhost:8777/v2/meters/vcpus?q.field=resource_id&q.value=c01c63fe-7a29-4426-bab1-34d088e92415": [{"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-12T04:00:31.184000", "message_id": "bb6a5ea4-0303-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-12 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-12T03:00:51.440000", "message_id": "65acc158-02fb-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-12 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-12T02:00:27.697000", "message_id": "f5be3fc8-02f2-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-12 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-12T01:00:47.102000", "message_id": "9faab254-02ea-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-12 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-12T00:00:24.788000", "message_id": "308ae98c-02e2-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-11T23:00:42.335000", "message_id": "d93de556-02d9-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-11T22:00:21.059000", "message_id": "6abb489c-02d1-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-11T21:00:30.056000", "message_id": "0e442c62-02c9-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-11T20:00:18.137000", "message_id": "a57dea4a-02c0-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-11T19:00:11.814000", "message_id": "3feb095e-02b8-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-11T19:00:11.814000", "message_id": "3feb095e-02b8-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-11T19:00:11.814000", "message_id": "3feb095e-02b8-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-11T18:00:03.045000", "message_id": "d8f54c3a-02af-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-11T17:00:49.747000", "message_id": "92ff80cc-02a7-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-11T17:00:49.747000", "message_id": "92ff80cc-02a7-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-11T17:00:49.747000", "message_id": "92ff80cc-02a7-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-11T16:00:45.728000", "message_id": "2ee92a6e-029f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-11T15:00:36.733000", "message_id": "c7af0ff6-0296-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-11T14:00:27.976000", "message_id": "60ace614-028e-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-11T13:00:20.264000", "message_id": "fa659368-0285-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-11T12:00:11.566000", "message_id": "93793130-027d-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-11T11:00:02.921000", "message_id": "2c8e7ece-0275-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-11T10:00:29.398000", "message_id": "da81a9ec-026c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-11T10:00:29.398000", "message_id": "da81a9ec-026c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-11T10:00:29.398000", "message_id": "da81a9ec-026c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-11T09:00:26.353000", "message_id": "76e97a66-0264-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-11T08:00:23.259000", "message_id": "13390520-025c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-11T07:00:19.872000", "message_id": "af6d9716-0253-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-11T06:00:16.472000", "message_id": "4ba35eee-024b-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-11T05:00:05.302000", "message_id": "e355b862-0242-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-11T04:00:09.233000", "message_id": "83e49cf2-023a-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-11T03:00:02.173000", "message_id": "1de696c4-0232-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-11T02:00:02.909000", "message_id": "bc902df2-0229-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-11T01:00:00.658000", "message_id": "59834e54-0221-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-11T00:00:59.512000", "message_id": "1ac2ec2c-0219-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-10T23:00:57.092000", "message_id": "b7a27796-0210-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-10T22:00:51.263000", "message_id": "52524d38-0208-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-10T22:00:51.263000", "message_id": "52524d38-0208-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-10T22:00:51.263000", "message_id": "52524d38-0208-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-10T21:00:44.050000", "message_id": "ec578122-01ff-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-10T20:00:38.899000", "message_id": "874fcb20-01f7-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-10T19:00:35.353000", "message_id": "239faf12-01ef-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-10T19:00:35.353000", "message_id": "239faf12-01ef-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-10T19:00:35.353000", "message_id": "239faf12-01ef-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-10T19:00:35.353000", "message_id": "239faf12-01ef-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-10T18:00:31.926000", "message_id": "bfc03f3c-01e6-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-10T17:00:28.437000", "message_id": "5bfa28a8-01de-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-10T16:00:25.497000", "message_id": "f869dafc-01d5-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-10T15:00:22.275000", "message_id": "94b73af2-01cd-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-10T14:00:19.191000", "message_id": "311d458e-01c5-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-10T13:00:15.725000", "message_id": "cd4615d4-01bc-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-10T13:00:15.725000", "message_id": "cd4615d4-01bc-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-10T12:00:04.316000", "message_id": "649f2690-01b4-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-10T11:00:00.332000", "message_id": "008977b2-01ac-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-10T10:00:57.863000", "message_id": "c103ecce-01a3-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-10T09:00:54.319000", "message_id": "5d1ffdcc-019b-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-10T08:00:51.375000", "message_id": "f9a9b97a-0192-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-10T07:00:47.682000", "message_id": "95c95c88-018a-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-10T06:00:44.548000", "message_id": "31f4418a-0182-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-10T05:00:41.387000", "message_id": "ce7fe51c-0179-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-10T04:00:38.548000", "message_id": "6b01650e-0171-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-10T03:00:35.120000", "message_id": "072bf024-0169-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-10T02:00:32.242000", "message_id": "a3c8cf46-0160-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-10T02:00:32.242000", "message_id": "a3c8cf46-0160-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-10T02:00:32.242000", "message_id": "a3c8cf46-0160-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-10T01:00:28.562000", "message_id": "3faf32b4-0158-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-10T00:00:24.284000", "message_id": "db5eea3c-014f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-09T23:00:20.577000", "message_id": "77781d84-0147-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-09T23:00:20.577000", "message_id": "77781d84-0147-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-09T23:00:20.577000", "message_id": "77781d84-0147-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-09T22:00:17.047000", "message_id": "138079d2-013f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-09T21:00:13.502000", "message_id": "afa8f356-0136-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-09T21:00:13.502000", "message_id": "afa8f356-0136-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-09T20:00:10.444000", "message_id": "4bff7ca6-012e-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-09T19:00:07.068000", "message_id": "e83b30be-0125-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-09T18:00:05.421000", "message_id": "858d4f68-011d-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-09T17:00:01.570000", "message_id": "21821d1c-0115-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-09T17:00:01.570000", "message_id": "21821d1c-0115-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-09T17:00:01.570000", "message_id": "21821d1c-0115-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-09T17:00:01.570000", "message_id": "21821d1c-0115-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-09T16:00:59.797000", "message_id": "e27cfc3e-010c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-09T15:00:53.203000", "message_id": "7c9e2bac-0104-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-09T14:00:42.356000", "message_id": "146845a2-00fc-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-09T13:00:32.026000", "message_id": "ac93e510-00f3-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-09T12:00:21.716000", "message_id": "44b00f30-00eb-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-09T12:00:21.716000", "message_id": "44b00f30-00eb-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-09T12:00:21.716000", "message_id": "44b00f30-00eb-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-09T11:00:11.789000", "message_id": "dcf1f730-00e2-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-09T10:00:02.069000", "message_id": "7574547a-00da-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-09T09:00:53.781000", "message_id": "326374ca-00d2-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-09T08:00:44.842000", "message_id": "cb580226-00c9-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-09T08:00:44.842000", "message_id": "cb580226-00c9-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-09T08:00:44.842000", "message_id": "cb580226-00c9-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-09T07:00:35.694000", "message_id": "641d19c8-00c1-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-09T06:00:27.555000", "message_id": "fd9fc0c2-00b8-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-09T05:00:17.905000", "message_id": "960cef0a-00b0-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-09T04:00:02.418000", "message_id": "2b0b6d6a-00a8-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-09T03:00:53.080000", "message_id": "e788b726-009f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-09T02:00:37.397000", "message_id": "7c393df4-0097-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-09T01:00:26.974000", "message_id": "14505112-008f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-09T00:00:17.138000", "message_id": "accffd88-0086-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-08T23:00:07.657000", "message_id": "454a6a20-007e-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-08T23:00:07.657000", "message_id": "454a6a20-007e-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-08T23:00:07.657000", "message_id": "454a6a20-007e-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-08T22:01:01.432000", "message_id": "03bca0e4-0076-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-08T22:01:01.432000", "message_id": "03bca0e4-0076-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-08T21:00:52.378000", "message_id": "9c5fd9aa-006d-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-08T20:00:43.611000", "message_id": "35759a0c-0065-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-08T19:00:36.868000", "message_id": "cfa2615e-005c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-08T18:00:29.471000", "message_id": "69737e5c-0054-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-08T17:00:22.454000", "message_id": "038a6dec-004c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-08T17:00:22.454000", "message_id": "038a6dec-004c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-08T17:00:22.454000", "message_id": "038a6dec-004c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-08T17:00:22.454000", "message_id": "038a6dec-004c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-08T16:00:14.069000", "message_id": "9c9b75f2-0043-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-08T15:00:07.843000", "message_id": "3751ec10-003b-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-08T14:01:00.789000", "message_id": "f5002fd2-0032-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-08T13:00:51.760000", "message_id": "8dd6e83a-002a-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-08T12:00:42.701000", "message_id": "26c2268a-0022-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-08T12:00:42.701000", "message_id": "26c2268a-0022-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-08T11:00:35.864000", "message_id": "c0d921fa-0019-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-08T10:00:28.560000", "message_id": "5ac9b45e-0011-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-08T09:00:25.709000", "message_id": "f74b4198-0008-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-08T09:00:25.709000", "message_id": "f74b4198-0008-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-08T09:00:25.709000", "message_id": "f74b4198-0008-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-08T08:00:23.332000", "message_id": "9424db0e-0000-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-08T07:00:21.377000", "message_id": "3138eb50-fff8-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-08T06:00:19.443000", "message_id": "ce537ecc-ffef-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-08T06:00:19.443000", "message_id": "ce537ecc-ffef-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-08T06:00:19.443000", "message_id": "ce537ecc-ffef-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-08T05:00:17.612000", "message_id": "6b79b260-ffe7-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-08T05:00:17.612000", "message_id": "6b79b260-ffe7-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-08T04:00:16.017000", "message_id": "08b52d56-ffdf-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-08T03:00:13.986000", "message_id": "a5b36856-ffd6-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-08T03:00:13.986000", "message_id": "a5b36856-ffd6-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-08T03:00:13.986000", "message_id": "a5b36856-ffd6-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-08T02:00:12.194000", "message_id": "42d15f7a-ffce-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-08T01:00:10.284000", "message_id": "dfec2208-ffc5-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-08T01:00:10.284000", "message_id": "dfec2208-ffc5-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-08T01:00:10.284000", "message_id": "dfec2208-ffc5-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-08T01:00:10.284000", "message_id": "dfec2208-ffc5-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-08T01:00:10.284000", "message_id": "dfec2208-ffc5-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-08T00:00:08.743000", "message_id": "7d5c36ee-ffbd-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-07T23:00:03.983000", "message_id": "18a24d22-ffb5-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-07T22:00:01.460000", "message_id": "b577e282-ffac-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-07T21:00:58.467000", "message_id": "75ac8d40-ffa4-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-07T20:00:55.858000", "message_id": "1260a814-ff9c-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-07T19:00:51.193000", "message_id": "adc28362-ff93-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-07T18:00:49.702000", "message_id": "4b21022c-ff8b-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-07T17:00:47.592000", "message_id": "e80654f6-ff82-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-07T16:00:45.357000", "message_id": "84f98c5a-ff7a-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-07T15:00:43.113000", "message_id": "21d5a92c-ff72-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-07T14:00:40.887000", "message_id": "bebcb004-ff69-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-07T13:00:38.095000", "message_id": "5b562516-ff61-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-07T12:00:35.638000", "message_id": "f81ab4ba-ff58-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-07T11:00:33.181000", "message_id": "94dff908-ff50-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-07T10:00:28.967000", "message_id": "30a05ea4-ff48-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-07T09:00:26.228000", "message_id": "cd39f5b2-ff3f-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-07T08:00:23.811000", "message_id": "6a01d24c-ff37-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-07T08:00:23.811000", "message_id": "6a01d24c-ff37-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-07T07:00:21.742000", "message_id": "07039d68-ff2f-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-07T07:00:21.742000", "message_id": "07039d68-ff2f-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-07T07:00:21.742000", "message_id": "07039d68-ff2f-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-07T06:00:16.437000", "message_id": "a220939a-ff26-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-07T06:00:16.437000", "message_id": "a220939a-ff26-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-07T05:00:13.157000", "message_id": "3e64a042-ff1e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-07T04:00:10.543000", "message_id": "db0ee866-ff15-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-07T04:00:10.543000", "message_id": "db0ee866-ff15-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-07T04:00:10.543000", "message_id": "db0ee866-ff15-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-07T04:00:10.543000", "message_id": "db0ee866-ff15-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-07T03:00:06.865000", "message_id": "7703c0ec-ff0d-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-07T02:00:04.011000", "message_id": "13a351e6-ff05-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-07T01:00:01.999000", "message_id": "b0972eb8-fefc-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-07T00:00:01.267000", "message_id": "4e67f54a-fef4-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-07T00:00:01.267000", "message_id": "4e67f54a-fef4-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-07T00:00:01.267000", "message_id": "4e67f54a-fef4-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-06T23:00:36.477000", "message_id": "01a0ed00-feec-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-06T22:00:00.352000", "message_id": "8a69bc60-fee3-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-06T21:00:12.949000", "message_id": "30237974-fedb-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-06T20:00:01.679000", "message_id": "c7aed79c-fed2-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-06T19:00:52.355000", "message_id": "840d24ec-feca-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-06T18:00:45.984000", "message_id": "1e7888b8-fec2-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-06T17:00:34.454000", "message_id": "b5e41194-feb9-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-06T16:00:25.313000", "message_id": "4e8ec9d8-feb1-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-06T15:00:16.298000", "message_id": "e77c835a-fea8-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-06T14:00:07.342000", "message_id": "80593586-fea0-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-06T13:01:00.193000", "message_id": "3e0c6d0e-fe98-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-06T12:00:50.958000", "message_id": "d6d33fda-fe8f-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-06T11:00:42.255000", "message_id": "6fdfd4bc-fe87-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-06T10:00:33.244000", "message_id": "08bdf172-fe7f-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-06T09:00:25.726000", "message_id": "a27809e6-fe76-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-06T09:00:25.726000", "message_id": "a27809e6-fe76-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-06T09:00:25.726000", "message_id": "a27809e6-fe76-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-06T08:00:15.480000", "message_id": "3aac2c14-fe6e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-06T07:00:06.809000", "message_id": "d3a8b7e2-fe65-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-06T07:00:06.809000", "message_id": "d3a8b7e2-fe65-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-06T07:00:06.809000", "message_id": "d3a8b7e2-fe65-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-06T07:00:06.809000", "message_id": "d3a8b7e2-fe65-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-06T06:00:59.258000", "message_id": "91173712-fe5d-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-06T05:00:49.921000", "message_id": "29e110de-fe55-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-06T05:00:49.921000", "message_id": "29e110de-fe55-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-06T05:00:49.921000", "message_id": "29e110de-fe55-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-06T05:00:49.921000", "message_id": "29e110de-fe55-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-06T04:00:41.548000", "message_id": "c2ffef6e-fe4c-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-06T03:00:32.597000", "message_id": "5c01fd32-fe44-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-06T03:00:32.597000", "message_id": "5c01fd32-fe44-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-06T03:00:32.597000", "message_id": "5c01fd32-fe44-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-06T02:00:23.208000", "message_id": "f4911bfe-fe3b-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-06T01:00:14.172000", "message_id": "8d5cd282-fe33-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-06T00:00:05.685000", "message_id": "26a5989c-fe2b-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-06T00:00:05.685000", "message_id": "26a5989c-fe2b-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-06T00:00:05.685000", "message_id": "26a5989c-fe2b-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-06T00:00:05.685000", "message_id": "26a5989c-fe2b-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T23:00:58.973000", "message_id": "e495761e-fe22-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T23:00:58.973000", "message_id": "e495761e-fe22-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T22:00:49.315000", "message_id": "7d2867dc-fe1a-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T21:00:40.430000", "message_id": "16007e9e-fe12-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T20:00:32.393000", "message_id": "af6d411a-fe09-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T20:00:32.393000", "message_id": "af6d411a-fe09-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T19:00:24.309000", "message_id": "492c8350-fe01-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T18:00:16.172000", "message_id": "e23fc3b2-fdf8-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T17:00:08.261000", "message_id": "7bac99c0-fdf0-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T16:00:00.185000", "message_id": "1529108c-fde8-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T16:00:00.185000", "message_id": "1529108c-fde8-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T15:00:53.732000", "message_id": "d34f92ce-fddf-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T14:00:45.870000", "message_id": "6ce274aa-fdd7-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T13:00:37.686000", "message_id": "0638766c-fdcf-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T12:00:29.501000", "message_id": "9f974de6-fdc6-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T12:00:29.501000", "message_id": "9f974de6-fdc6-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T11:00:21.487000", "message_id": "390e9db6-fdbe-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T10:00:13.228000", "message_id": "d260009e-fdb5-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T09:00:05.310000", "message_id": "6bde044a-fdad-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T08:00:58.686000", "message_id": "29d46f06-fda5-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T07:00:50.560000", "message_id": "c34863c6-fd9c-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T06:00:42.385000", "message_id": "5ca7ee64-fd94-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T05:17:47.006000", "message_id": "5d9c4f46-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.create.end", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "message": "Success", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.616662", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "image_name": "cirros-0.3.1-x86_64-uec", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T05:17:46.789000", "message_id": "5d7dd3ae-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.update", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "old_state": "building", "old_task_state": "spawning", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05T05:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 05:17:36", "launched_at": "2013-08-05T05:17:46.616662", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "None", "audit_period_ending": "2013-08-05T05:17:46.683739", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T05:17:46.789000", "message_id": "5d7dd3ae-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.update", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "old_state": "building", "old_task_state": "spawning", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05T05:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 05:17:36", "launched_at": "2013-08-05T05:17:46.616662", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "None", "audit_period_ending": "2013-08-05T05:17:46.683739", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T05:17:42.061000", "message_id": "5a924a44-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "spawning", "event_type": "compute.instance.update", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "building", "old_state": "None", "old_task_state": "None", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05T05:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 05:17:36", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "spawning", "audit_period_ending": "2013-08-05T05:17:42.040523", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T05:17:39.752000", "message_id": "59353e72-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "spawning", "event_type": "compute.instance.update", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "building", "old_state": "building", "old_task_state": "block_device_mapping", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05T05:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 05:17:36", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "spawning", "audit_period_ending": "2013-08-05T05:17:39.719445", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T05:17:38.988000", "message_id": "58eb231e-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "block_device_mapping", "event_type": "compute.instance.update", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "building", "old_state": "building", "old_task_state": "networking", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05T05:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 05:17:36", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "block_device_mapping", "audit_period_ending": "2013-08-05T05:17:38.891624", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T05:17:38.988000", "message_id": "58eb231e-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "block_device_mapping", "event_type": "compute.instance.update", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "building", "old_state": "building", "old_task_state": "networking", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05T05:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 05:17:36", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "block_device_mapping", "audit_period_ending": "2013-08-05T05:17:38.891624", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T05:17:38.324000", "message_id": "58b2c1cc-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "networking", "event_type": "compute.instance.update", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "building", "old_state": "building", "old_task_state": "None", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05T05:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 05:17:36", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "networking", "audit_period_ending": "2013-08-05T05:17:38.306231", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T05:17:38.154000", "message_id": "58a329a6-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.update", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "building", "old_state": "None", "old_task_state": "None", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05T05:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 05:17:36", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "None", "audit_period_ending": "2013-08-05T05:17:38.148291", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T05:17:38.154000", "message_id": "58a329a6-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.update", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "building", "old_state": "None", "old_task_state": "None", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05T05:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 05:17:36", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "None", "audit_period_ending": "2013-08-05T05:17:38.148291", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T05:17:37.667000", "message_id": "583db10c-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "scheduling", "event_type": "compute.instance.create.start", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "message": "", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "building", "launched_at": "", "node": "None", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "image_name": "cirros-0.3.1-x86_64-uec", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T05:17:37.558000", "message_id": "5827b726-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.update", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "building", "old_state": "building", "old_task_state": "scheduling", "node": "None", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05T05:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 05:17:36", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "None", "audit_period_ending": "2013-08-05T05:17:37.556043", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T05:17:36.990000", "message_id": "578a634a-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "scheduling", "event_type": "compute.instance.update", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "building", "old_state": "None", "old_task_state": "None", "node": "None", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "api.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05T05:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 05:17:36", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "scheduling", "audit_period_ending": "2013-08-05T05:17:36.988438", "os_type": "None"}, "counter_type": "gauge"}], "http://localhost:8777/v2/meters/memory?q.field=resource_id&q.value=c01c63fe-7a29-4426-bab1-34d088e92415": [{"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-12T04:00:31.184000", "message_id": "bb3849be-0303-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-12 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-12T03:00:51.440000", "message_id": "65851004-02fb-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-12 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-12T02:00:27.697000", "message_id": "f59a84ca-02f2-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-12 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-12T01:00:47.102000", "message_id": "9f68b67e-02ea-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-12 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-12T01:00:47.102000", "message_id": "9f68b67e-02ea-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-12 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-12T00:00:24.788000", "message_id": "30550c86-02e2-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-11T23:00:42.335000", "message_id": "d906c396-02d9-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-11T22:00:21.059000", "message_id": "6a93766e-02d1-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-11T21:00:30.056000", "message_id": "0e2daf00-02c9-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-11T21:00:30.056000", "message_id": "0e2daf00-02c9-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-11T20:00:18.137000", "message_id": "a54ccb86-02c0-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-11T20:00:18.137000", "message_id": "a54ccb86-02c0-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-11T19:00:11.814000", "message_id": "3fc38636-02b8-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-11T19:00:11.814000", "message_id": "3fc38636-02b8-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-11T19:00:11.814000", "message_id": "3fc38636-02b8-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-11T19:00:11.814000", "message_id": "3fc38636-02b8-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-11T18:00:03.045000", "message_id": "d8c4f2ba-02af-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-11T18:00:03.045000", "message_id": "d8c4f2ba-02af-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-11T18:00:03.045000", "message_id": "d8c4f2ba-02af-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-11T17:00:49.747000", "message_id": "92d7129a-02a7-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-11T16:00:45.728000", "message_id": "2eae9d7c-029f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-11T15:00:36.733000", "message_id": "c78d5cda-0296-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-11T14:00:27.976000", "message_id": "608f31b4-028e-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-11T13:00:20.264000", "message_id": "fa3302d6-0285-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-11T12:00:11.566000", "message_id": "93415b7a-027d-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-11T11:00:02.921000", "message_id": "2c56a2b0-0275-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-11T11:00:02.921000", "message_id": "2c56a2b0-0275-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-11T11:00:02.921000", "message_id": "2c56a2b0-0275-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-11T11:00:02.921000", "message_id": "2c56a2b0-0275-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-11T10:00:29.398000", "message_id": "da56d65e-026c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-11T09:00:26.353000", "message_id": "76c1cc14-0264-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-11T09:00:26.353000", "message_id": "76c1cc14-0264-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-11T08:00:23.259000", "message_id": "13256e3e-025c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-11T08:00:23.259000", "message_id": "13256e3e-025c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-11T07:00:19.872000", "message_id": "af5caea6-0253-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-11T06:00:16.472000", "message_id": "4b910096-024b-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-11T05:00:05.302000", "message_id": "e3246334-0242-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-11T05:00:05.302000", "message_id": "e3246334-0242-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-11T05:00:05.302000", "message_id": "e3246334-0242-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-11T05:00:05.302000", "message_id": "e3246334-0242-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-11T04:00:09.233000", "message_id": "83b918fc-023a-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-11T04:00:09.233000", "message_id": "83b918fc-023a-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-11T04:00:09.233000", "message_id": "83b918fc-023a-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-11T04:00:09.233000", "message_id": "83b918fc-023a-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-11T03:00:02.173000", "message_id": "1dbfee34-0232-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-11T02:00:02.909000", "message_id": "bc6919f6-0229-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-11T02:00:02.909000", "message_id": "bc6919f6-0229-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-11T01:00:00.658000", "message_id": "594dce6e-0221-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-11T01:00:00.658000", "message_id": "594dce6e-0221-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-11T01:00:00.658000", "message_id": "594dce6e-0221-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-11T00:00:59.512000", "message_id": "1a9d6d1c-0219-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-10T23:00:57.092000", "message_id": "b7680354-0210-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-10T23:00:57.092000", "message_id": "b7680354-0210-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-10T23:00:57.092000", "message_id": "b7680354-0210-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-10T22:00:51.263000", "message_id": "522a56de-0208-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-10T22:00:51.263000", "message_id": "522a56de-0208-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-10T21:00:44.050000", "message_id": "ec1a0e82-01ff-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-10T20:00:38.899000", "message_id": "87434dfa-01f7-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-10T19:00:35.353000", "message_id": "23623e8e-01ef-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-10T18:00:31.926000", "message_id": "bf925518-01e6-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-10T17:00:28.437000", "message_id": "5bc1cc92-01de-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-10T16:00:25.497000", "message_id": "f834bf16-01d5-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-10T15:00:22.275000", "message_id": "9484d346-01cd-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-10T14:00:19.191000", "message_id": "30e9cea2-01c5-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-10T13:00:15.725000", "message_id": "cd13e2e4-01bc-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-10T13:00:15.725000", "message_id": "cd13e2e4-01bc-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-10T13:00:15.725000", "message_id": "cd13e2e4-01bc-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-10T12:00:04.316000", "message_id": "64841f76-01b4-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-10T11:00:00.332000", "message_id": "005fb60c-01ac-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-10T11:00:00.332000", "message_id": "005fb60c-01ac-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-10T10:00:57.863000", "message_id": "c0e60272-01a3-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-10T10:00:57.863000", "message_id": "c0e60272-01a3-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-10T09:00:54.319000", "message_id": "5d03762a-019b-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-10T08:00:51.375000", "message_id": "f97d725c-0192-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-10T08:00:51.375000", "message_id": "f97d725c-0192-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-10T08:00:51.375000", "message_id": "f97d725c-0192-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-10T08:00:51.375000", "message_id": "f97d725c-0192-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-10T07:00:47.682000", "message_id": "95877606-018a-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-10T06:00:44.548000", "message_id": "31e47aca-0182-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-10T05:00:41.387000", "message_id": "ce3e04c6-0179-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-10T05:00:41.387000", "message_id": "ce3e04c6-0179-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-10T04:00:38.548000", "message_id": "6ac9a948-0171-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-10T04:00:38.548000", "message_id": "6ac9a948-0171-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-10T04:00:38.548000", "message_id": "6ac9a948-0171-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-10T04:00:38.548000", "message_id": "6ac9a948-0171-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-10T03:00:35.120000", "message_id": "06f875d2-0169-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-10T03:00:35.120000", "message_id": "06f875d2-0169-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-10T02:00:32.242000", "message_id": "a37c2cfe-0160-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-10T02:00:32.242000", "message_id": "a37c2cfe-0160-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-10T02:00:32.242000", "message_id": "a37c2cfe-0160-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-10T01:00:28.562000", "message_id": "3f87cb0c-0158-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-10T00:00:24.284000", "message_id": "db35bc34-014f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-09T23:00:20.577000", "message_id": "773c44d0-0147-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-09T23:00:20.577000", "message_id": "773c44d0-0147-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-09T22:00:17.047000", "message_id": "135b8b7c-013f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-09T21:00:13.502000", "message_id": "af7b2926-0136-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-09T20:00:10.444000", "message_id": "4be4a4c6-012e-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-09T20:00:10.444000", "message_id": "4be4a4c6-012e-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-09T19:00:07.068000", "message_id": "e81b555a-0125-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-09T18:00:05.421000", "message_id": "855c945e-011d-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-09T17:00:01.570000", "message_id": "214e35ec-0115-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-09T16:00:59.797000", "message_id": "e23ce716-010c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-09T15:00:53.203000", "message_id": "7c8a60c2-0104-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-09T14:00:42.356000", "message_id": "144e81b2-00fc-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-09T13:00:32.026000", "message_id": "ac6356ca-00f3-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-09T12:00:21.716000", "message_id": "44782caa-00eb-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-09T12:00:21.716000", "message_id": "44782caa-00eb-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-09T12:00:21.716000", "message_id": "44782caa-00eb-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-09T11:00:11.789000", "message_id": "dcc837ce-00e2-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-09T10:00:02.069000", "message_id": "75408104-00da-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-09T09:00:53.781000", "message_id": "325ee8a6-00d2-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-09T08:00:44.842000", "message_id": "cb2f090c-00c9-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-09T08:00:44.842000", "message_id": "cb2f090c-00c9-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-09T07:00:35.694000", "message_id": "63f79798-00c1-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-09T06:00:27.555000", "message_id": "fd5ac832-00b8-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-09T06:00:27.555000", "message_id": "fd5ac832-00b8-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-09T05:00:17.905000", "message_id": "95dcd5ae-00b0-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-09T04:00:02.418000", "message_id": "2ad3f678-00a8-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-09T03:00:53.080000", "message_id": "e744469a-009f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-09T03:00:53.080000", "message_id": "e744469a-009f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-09T03:00:53.080000", "message_id": "e744469a-009f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-09T03:00:53.080000", "message_id": "e744469a-009f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-09T02:00:37.397000", "message_id": "7c290650-0097-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-09T02:00:37.397000", "message_id": "7c290650-0097-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-09T01:00:26.974000", "message_id": "1429aea4-008f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-09T01:00:26.974000", "message_id": "1429aea4-008f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-09T01:00:26.974000", "message_id": "1429aea4-008f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-09T00:00:17.138000", "message_id": "ac89a770-0086-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-08T23:00:07.657000", "message_id": "451d7ede-007e-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-08T22:01:01.432000", "message_id": "03674a36-0076-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-08T21:00:52.378000", "message_id": "9c3bed10-006d-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-08T20:00:43.611000", "message_id": "353fab2c-0065-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-08T19:00:36.868000", "message_id": "cf759e44-005c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-08T18:00:29.471000", "message_id": "6948321a-0054-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-08T17:00:22.454000", "message_id": "035526e6-004c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-08T17:00:22.454000", "message_id": "035526e6-004c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-08T17:00:22.454000", "message_id": "035526e6-004c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-08T16:00:14.069000", "message_id": "9c92a120-0043-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-08T15:00:07.843000", "message_id": "3717adf2-003b-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-08T14:01:00.789000", "message_id": "f4e1f4fe-0032-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-08T13:00:51.760000", "message_id": "8dbafe40-002a-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-08T13:00:51.760000", "message_id": "8dbafe40-002a-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-08T12:00:42.701000", "message_id": "269090e8-0022-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-08T11:00:35.864000", "message_id": "c0b8dc1a-0019-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-08T10:00:28.560000", "message_id": "5a99cf50-0011-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-08T09:00:25.709000", "message_id": "f7226b24-0008-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-08T08:00:23.332000", "message_id": "93f365e2-0000-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-08T08:00:23.332000", "message_id": "93f365e2-0000-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-08T07:00:21.377000", "message_id": "3104f476-fff8-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-08T06:00:19.443000", "message_id": "ce19251a-ffef-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-08T05:00:17.612000", "message_id": "6b3e27e0-ffe7-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-08T04:00:16.017000", "message_id": "0887363a-ffdf-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-08T03:00:13.986000", "message_id": "a58b4308-ffd6-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-08T02:00:12.194000", "message_id": "42b80250-ffce-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-08T01:00:10.284000", "message_id": "dfcea85e-ffc5-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-08T00:00:08.743000", "message_id": "7d1ee19a-ffbd-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-07T23:00:03.983000", "message_id": "1883f430-ffb5-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-07T22:00:01.460000", "message_id": "b53eb5d4-ffac-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-07T21:00:58.467000", "message_id": "757654aa-ffa4-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-07T20:00:55.858000", "message_id": "12229092-ff9c-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-07T19:00:51.193000", "message_id": "ad9983cc-ff93-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-07T18:00:49.702000", "message_id": "4aecf450-ff8b-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-07T17:00:47.592000", "message_id": "e7e6d932-ff82-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-07T16:00:45.357000", "message_id": "84ce27c2-ff7a-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-07T15:00:43.113000", "message_id": "21b2b8d6-ff72-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-07T14:00:40.887000", "message_id": "be9b1cf0-ff69-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-07T14:00:40.887000", "message_id": "be9b1cf0-ff69-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-07T13:00:38.095000", "message_id": "5b2c62c6-ff61-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-07T12:00:35.638000", "message_id": "f7f1346e-ff58-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-07T11:00:33.181000", "message_id": "94b6558a-ff50-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-07T10:00:28.967000", "message_id": "306e9644-ff48-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-07T09:00:26.228000", "message_id": "cd09ebf6-ff3f-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-07T09:00:26.228000", "message_id": "cd09ebf6-ff3f-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-07T08:00:23.811000", "message_id": "69d3ee04-ff37-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-07T07:00:21.742000", "message_id": "06d55c82-ff2f-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-07T07:00:21.742000", "message_id": "06d55c82-ff2f-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-07T06:00:16.437000", "message_id": "a1e636a0-ff26-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-07T05:00:13.157000", "message_id": "3e2cd018-ff1e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-07T04:00:10.543000", "message_id": "dadb8eee-ff15-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-07T04:00:10.543000", "message_id": "dadb8eee-ff15-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-07T03:00:06.865000", "message_id": "76e2fcd6-ff0d-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-07T02:00:04.011000", "message_id": "136a7862-ff05-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-07T02:00:04.011000", "message_id": "136a7862-ff05-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-07T01:00:01.999000", "message_id": "b0734bba-fefc-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-07T00:00:01.267000", "message_id": "4e3f2c14-fef4-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-07T00:00:01.267000", "message_id": "4e3f2c14-fef4-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-07T00:00:01.267000", "message_id": "4e3f2c14-fef4-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-06T23:00:36.477000", "message_id": "0177d4ec-feec-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-06T22:00:00.352000", "message_id": "8a2b1a5a-fee3-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-06T21:00:12.949000", "message_id": "2fea89e8-fedb-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-06T21:00:12.949000", "message_id": "2fea89e8-fedb-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-06T21:00:12.949000", "message_id": "2fea89e8-fedb-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-06T20:00:01.679000", "message_id": "c76ee650-fed2-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-06T19:00:52.355000", "message_id": "83dce9b2-feca-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-06T18:00:45.984000", "message_id": "1e4d07ce-fec2-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-06T17:00:34.454000", "message_id": "b5a92b06-feb9-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-06T16:00:25.313000", "message_id": "4e89a462-feb1-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-06T15:00:16.298000", "message_id": "e74e5516-fea8-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-06T14:00:07.342000", "message_id": "8032e264-fea0-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-06T13:01:00.193000", "message_id": "3dee44be-fe98-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-06T13:01:00.193000", "message_id": "3dee44be-fe98-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-06T12:00:50.958000", "message_id": "d6a9cf6a-fe8f-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-06T11:00:42.255000", "message_id": "6fb4e734-fe87-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-06T10:00:33.244000", "message_id": "0891676a-fe7f-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-06T09:00:25.726000", "message_id": "a250deac-fe76-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-06T09:00:25.726000", "message_id": "a250deac-fe76-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-06T09:00:25.726000", "message_id": "a250deac-fe76-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-06T08:00:15.480000", "message_id": "3a71dd52-fe6e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-06T07:00:06.809000", "message_id": "d382f43a-fe65-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-06T06:00:59.258000", "message_id": "9100c5fe-fe5d-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-06T05:00:49.921000", "message_id": "29abf4f8-fe55-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-06T04:00:41.548000", "message_id": "c2ea64b4-fe4c-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-06T03:00:32.597000", "message_id": "5bd014ca-fe44-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-06T03:00:32.597000", "message_id": "5bd014ca-fe44-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-06T02:00:23.208000", "message_id": "f473570e-fe3b-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-06T01:00:14.172000", "message_id": "8d4c4174-fe33-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-06T00:00:05.685000", "message_id": "2678ea4a-fe2b-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T23:00:58.973000", "message_id": "e4768768-fe22-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T22:00:49.315000", "message_id": "7cf112fa-fe1a-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T22:00:49.315000", "message_id": "7cf112fa-fe1a-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T21:00:40.430000", "message_id": "15e07db0-fe12-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T20:00:32.393000", "message_id": "af5139f2-fe09-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T19:00:24.309000", "message_id": "4924da60-fe01-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T18:00:16.172000", "message_id": "e21d5b38-fdf8-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T17:00:08.261000", "message_id": "7ba246d2-fdf0-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T17:00:08.261000", "message_id": "7ba246d2-fdf0-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T16:00:00.185000", "message_id": "150c943e-fde8-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T16:00:00.185000", "message_id": "150c943e-fde8-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T16:00:00.185000", "message_id": "150c943e-fde8-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T15:00:53.732000", "message_id": "d3334e0c-fddf-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T14:00:45.870000", "message_id": "6cbfa10a-fdd7-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T13:00:37.686000", "message_id": "061a4c6e-fdcf-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T12:00:29.501000", "message_id": "9f75a9d4-fdc6-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T12:00:29.501000", "message_id": "9f75a9d4-fdc6-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T11:00:21.487000", "message_id": "38eb7fc0-fdbe-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T10:00:13.228000", "message_id": "d239652e-fdb5-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T10:00:13.228000", "message_id": "d239652e-fdb5-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T10:00:13.228000", "message_id": "d239652e-fdb5-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T09:00:05.310000", "message_id": "6bbc28e8-fdad-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T08:00:58.686000", "message_id": "29c99202-fda5-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T07:00:50.560000", "message_id": "c32c4f42-fd9c-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T06:00:42.385000", "message_id": "5c8cc76a-fd94-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T05:17:47.006000", "message_id": "5d7ec412-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.create.end", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "message": "Success", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.616662", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "image_name": "cirros-0.3.1-x86_64-uec", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T05:17:46.789000", "message_id": "5d5be816-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.update", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "old_state": "building", "old_task_state": "spawning", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05T05:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 05:17:36", "launched_at": "2013-08-05T05:17:46.616662", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "None", "audit_period_ending": "2013-08-05T05:17:46.683739", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T05:17:46.789000", "message_id": "5d5be816-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.update", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "old_state": "building", "old_task_state": "spawning", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05T05:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 05:17:36", "launched_at": "2013-08-05T05:17:46.616662", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "None", "audit_period_ending": "2013-08-05T05:17:46.683739", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T05:17:46.789000", "message_id": "5d5be816-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.update", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "old_state": "building", "old_task_state": "spawning", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05T05:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 05:17:36", "launched_at": "2013-08-05T05:17:46.616662", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "None", "audit_period_ending": "2013-08-05T05:17:46.683739", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T05:17:42.061000", "message_id": "5a8a33cc-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "spawning", "event_type": "compute.instance.update", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "building", "old_state": "None", "old_task_state": "None", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05T05:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 05:17:36", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "spawning", "audit_period_ending": "2013-08-05T05:17:42.040523", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T05:17:39.752000", "message_id": "5929709c-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "spawning", "event_type": "compute.instance.update", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "building", "old_state": "building", "old_task_state": "block_device_mapping", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05T05:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 05:17:36", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "spawning", "audit_period_ending": "2013-08-05T05:17:39.719445", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T05:17:38.988000", "message_id": "58bc7f96-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "block_device_mapping", "event_type": "compute.instance.update", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "building", "old_state": "building", "old_task_state": "networking", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05T05:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 05:17:36", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "block_device_mapping", "audit_period_ending": "2013-08-05T05:17:38.891624", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T05:17:38.324000", "message_id": "5853dd56-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "networking", "event_type": "compute.instance.update", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "building", "old_state": "building", "old_task_state": "None", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05T05:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 05:17:36", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "networking", "audit_period_ending": "2013-08-05T05:17:38.306231", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T05:17:38.154000", "message_id": "5838eef6-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.update", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "building", "old_state": "None", "old_task_state": "None", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05T05:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 05:17:36", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "None", "audit_period_ending": "2013-08-05T05:17:38.148291", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T05:17:37.667000", "message_id": "57eb9476-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "scheduling", "event_type": "compute.instance.create.start", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "message": "", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "building", "launched_at": "", "node": "None", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "image_name": "cirros-0.3.1-x86_64-uec", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T05:17:37.558000", "message_id": "57e1072c-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.update", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "building", "old_state": "building", "old_task_state": "scheduling", "node": "None", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05T05:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 05:17:36", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "None", "audit_period_ending": "2013-08-05T05:17:37.556043", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T05:17:36.990000", "message_id": "57838c64-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "scheduling", "event_type": "compute.instance.update", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "building", "old_state": "None", "old_task_state": "None", "node": "None", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "api.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05T05:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 05:17:36", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "scheduling", "audit_period_ending": "2013-08-05T05:17:36.988438", "os_type": "None"}, "counter_type": "gauge"}], "http://localhost:8777/v2/meters/disk.ephemeral.size?q.field=resource_id&q.value=c01c63fe-7a29-4426-bab1-34d088e92415": [{"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-12T04:00:31.184000", "message_id": "bb4af604-0303-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-12 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-12T04:00:31.184000", "message_id": "bb4af604-0303-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-12 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-12T04:00:31.184000", "message_id": "bb4af604-0303-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-12 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-12T04:00:31.184000", "message_id": "bb4af604-0303-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-12 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-12T03:00:51.440000", "message_id": "658ece5a-02fb-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-12 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-12T02:00:27.697000", "message_id": "f59d7b58-02f2-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-12 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-12T01:00:47.102000", "message_id": "9f79aab0-02ea-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-12 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-12T00:00:24.788000", "message_id": "3066d7b8-02e2-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-11T23:00:42.335000", "message_id": "d90f20ae-02d9-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-11T23:00:42.335000", "message_id": "d90f20ae-02d9-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-11T22:00:21.059000", "message_id": "6a9e9f94-02d1-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-11T21:00:30.056000", "message_id": "0e40086c-02c9-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-11T20:00:18.137000", "message_id": "a558a834-02c0-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-11T19:00:11.814000", "message_id": "3fcd39ec-02b8-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-11T18:00:03.045000", "message_id": "d8d644de-02af-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-11T17:00:49.747000", "message_id": "92e233a0-02a7-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-11T16:00:45.728000", "message_id": "2ed2c4b8-029f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-11T16:00:45.728000", "message_id": "2ed2c4b8-029f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-11T15:00:36.733000", "message_id": "c793a37e-0296-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-11T14:00:27.976000", "message_id": "60950d6e-028e-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-11T13:00:20.264000", "message_id": "fa4158e0-0285-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-11T13:00:20.264000", "message_id": "fa4158e0-0285-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-11T12:00:11.566000", "message_id": "93511998-027d-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-11T11:00:02.921000", "message_id": "2c674bec-0275-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-11T10:00:29.398000", "message_id": "da6528e4-026c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-11T09:00:26.353000", "message_id": "76ce58ee-0264-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-11T08:00:23.259000", "message_id": "13360a46-025c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-11T07:00:19.872000", "message_id": "af6a1faa-0253-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-11T06:00:16.472000", "message_id": "4b99b632-024b-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-11T05:00:05.302000", "message_id": "e3360972-0242-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-11T04:00:09.233000", "message_id": "83c512c4-023a-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-11T03:00:02.173000", "message_id": "1dc7c2d0-0232-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-11T02:00:02.909000", "message_id": "bc751a80-0229-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-11T01:00:00.658000", "message_id": "59605bba-0221-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-11T01:00:00.658000", "message_id": "59605bba-0221-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-11T01:00:00.658000", "message_id": "59605bba-0221-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-11T01:00:00.658000", "message_id": "59605bba-0221-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-11T01:00:00.658000", "message_id": "59605bba-0221-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-11T00:00:59.512000", "message_id": "1aa0e442-0219-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-11T00:00:59.512000", "message_id": "1aa0e442-0219-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-10T23:00:57.092000", "message_id": "b7723630-0210-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-10T23:00:57.092000", "message_id": "b7723630-0210-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-10T23:00:57.092000", "message_id": "b7723630-0210-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-10T23:00:57.092000", "message_id": "b7723630-0210-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-10T23:00:57.092000", "message_id": "b7723630-0210-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-10T22:00:51.263000", "message_id": "5235ad72-0208-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-10T21:00:44.050000", "message_id": "ec39e680-01ff-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-10T20:00:38.899000", "message_id": "874c54f4-01f7-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-10T19:00:35.353000", "message_id": "23728316-01ef-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-10T18:00:31.926000", "message_id": "bf994332-01e6-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-10T18:00:31.926000", "message_id": "bf994332-01e6-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-10T18:00:31.926000", "message_id": "bf994332-01e6-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-10T17:00:28.437000", "message_id": "5bdb88c6-01de-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-10T16:00:25.497000", "message_id": "f842bd82-01d5-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-10T15:00:22.275000", "message_id": "948c04fe-01cd-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-10T15:00:22.275000", "message_id": "948c04fe-01cd-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-10T14:00:19.191000", "message_id": "30f2e8fc-01c5-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-10T13:00:15.725000", "message_id": "cd2536ac-01bc-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-10T12:00:04.316000", "message_id": "648969fe-01b4-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-10T11:00:00.332000", "message_id": "007e4fc2-01ac-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-10T10:00:57.863000", "message_id": "c0f64d8a-01a3-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-10T09:00:54.319000", "message_id": "5d0dbe32-019b-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-10T08:00:51.375000", "message_id": "f98cf83a-0192-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-10T08:00:51.375000", "message_id": "f98cf83a-0192-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-10T08:00:51.375000", "message_id": "f98cf83a-0192-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-10T07:00:47.682000", "message_id": "95969316-018a-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-10T06:00:44.548000", "message_id": "31f12a7c-0182-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-10T05:00:41.387000", "message_id": "ce49bc3a-0179-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-10T05:00:41.387000", "message_id": "ce49bc3a-0179-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-10T05:00:41.387000", "message_id": "ce49bc3a-0179-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-10T05:00:41.387000", "message_id": "ce49bc3a-0179-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-10T05:00:41.387000", "message_id": "ce49bc3a-0179-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-10T04:00:38.548000", "message_id": "6adad524-0171-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-10T03:00:35.120000", "message_id": "0704ff6e-0169-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-10T03:00:35.120000", "message_id": "0704ff6e-0169-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-10T03:00:35.120000", "message_id": "0704ff6e-0169-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-10T03:00:35.120000", "message_id": "0704ff6e-0169-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-10T03:00:35.120000", "message_id": "0704ff6e-0169-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-10T02:00:32.242000", "message_id": "a3905472-0160-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-10T02:00:32.242000", "message_id": "a3905472-0160-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-10T02:00:32.242000", "message_id": "a3905472-0160-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-10T02:00:32.242000", "message_id": "a3905472-0160-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-10T02:00:32.242000", "message_id": "a3905472-0160-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-10T01:00:28.562000", "message_id": "3f92e2c6-0158-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-10T01:00:28.562000", "message_id": "3f92e2c6-0158-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-10T00:00:24.284000", "message_id": "db3fe24a-014f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-09T23:00:20.577000", "message_id": "77499e46-0147-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-09T23:00:20.577000", "message_id": "77499e46-0147-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-09T23:00:20.577000", "message_id": "77499e46-0147-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-09T23:00:20.577000", "message_id": "77499e46-0147-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-09T23:00:20.577000", "message_id": "77499e46-0147-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-09T22:00:17.047000", "message_id": "1362c068-013f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-09T21:00:13.502000", "message_id": "af862dc6-0136-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-09T20:00:10.444000", "message_id": "4bf64c6c-012e-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-09T19:00:07.068000", "message_id": "e81f2a4a-0125-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-09T19:00:07.068000", "message_id": "e81f2a4a-0125-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-09T18:00:05.421000", "message_id": "85622356-011d-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-09T18:00:05.421000", "message_id": "85622356-011d-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-09T17:00:01.570000", "message_id": "216052d6-0115-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-09T16:00:59.797000", "message_id": "e24cf520-010c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-09T15:00:53.203000", "message_id": "7c99f1fe-0104-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-09T14:00:42.356000", "message_id": "145de74c-00fc-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-09T14:00:42.356000", "message_id": "145de74c-00fc-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-09T13:00:32.026000", "message_id": "ac6d03dc-00f3-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-09T12:00:21.716000", "message_id": "448830c8-00eb-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-09T11:00:11.789000", "message_id": "dcd131ee-00e2-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-09T11:00:11.789000", "message_id": "dcd131ee-00e2-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-09T10:00:02.069000", "message_id": "755b46c4-00da-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-09T09:00:53.781000", "message_id": "326018ac-00d2-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-09T08:00:44.842000", "message_id": "cb3d666e-00c9-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-09T07:00:35.694000", "message_id": "64014ce8-00c1-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-09T06:00:27.555000", "message_id": "fd7df1ae-00b8-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-09T05:00:17.905000", "message_id": "95edc8a0-00b0-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-09T04:00:02.418000", "message_id": "2adeff82-00a8-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-09T03:00:53.080000", "message_id": "e76251d0-009f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-09T02:00:37.397000", "message_id": "7c35fc66-0097-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-09T01:00:26.974000", "message_id": "1436be78-008f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-09T00:00:17.138000", "message_id": "ac9652ea-0086-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-09T00:00:17.138000", "message_id": "ac9652ea-0086-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-09T00:00:17.138000", "message_id": "ac9652ea-0086-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-09T00:00:17.138000", "message_id": "ac9652ea-0086-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-08T23:00:07.657000", "message_id": "45299336-007e-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-08T22:01:01.432000", "message_id": "03967d7e-0076-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-08T21:00:52.378000", "message_id": "9c43e3da-006d-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-08T20:00:43.611000", "message_id": "354baf76-0065-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-08T20:00:43.611000", "message_id": "354baf76-0065-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-08T19:00:36.868000", "message_id": "cf816bac-005c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-08T18:00:29.471000", "message_id": "694fdaec-0054-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-08T18:00:29.471000", "message_id": "694fdaec-0054-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-08T18:00:29.471000", "message_id": "694fdaec-0054-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-08T17:00:22.454000", "message_id": "036490ea-004c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-08T17:00:22.454000", "message_id": "036490ea-004c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-08T17:00:22.454000", "message_id": "036490ea-004c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-08T17:00:22.454000", "message_id": "036490ea-004c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-08T17:00:22.454000", "message_id": "036490ea-004c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-08T16:00:14.069000", "message_id": "9c97e090-0043-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-08T15:00:07.843000", "message_id": "37270d88-003b-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-08T15:00:07.843000", "message_id": "37270d88-003b-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-08T15:00:07.843000", "message_id": "37270d88-003b-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-08T15:00:07.843000", "message_id": "37270d88-003b-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-08T14:01:00.789000", "message_id": "f4e5ed0c-0032-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-08T13:00:51.760000", "message_id": "8dd2197c-002a-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-08T12:00:42.701000", "message_id": "269a1546-0022-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-08T12:00:42.701000", "message_id": "269a1546-0022-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-08T12:00:42.701000", "message_id": "269a1546-0022-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-08T12:00:42.701000", "message_id": "269a1546-0022-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-08T11:00:35.864000", "message_id": "c0bea186-0019-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-08T10:00:28.560000", "message_id": "5a9f2c5c-0011-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-08T10:00:28.560000", "message_id": "5a9f2c5c-0011-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-08T09:00:25.709000", "message_id": "f728c64a-0008-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-08T08:00:23.332000", "message_id": "9400ce9e-0000-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-08T07:00:21.377000", "message_id": "31124072-fff8-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-08T06:00:19.443000", "message_id": "ce2578f6-ffef-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-08T05:00:17.612000", "message_id": "6b4918e4-ffe7-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-08T05:00:17.612000", "message_id": "6b4918e4-ffe7-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-08T05:00:17.612000", "message_id": "6b4918e4-ffe7-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-08T04:00:16.017000", "message_id": "08907f24-ffdf-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-08T03:00:13.986000", "message_id": "a5954042-ffd6-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-08T02:00:12.194000", "message_id": "42cd5a56-ffce-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-08T01:00:10.284000", "message_id": "dfd18bdc-ffc5-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-08T00:00:08.743000", "message_id": "7d2e7f38-ffbd-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-07T23:00:03.983000", "message_id": "188ba09a-ffb5-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-07T22:00:01.460000", "message_id": "b5513c90-ffac-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-07T21:00:58.467000", "message_id": "758cb880-ffa4-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-07T20:00:55.858000", "message_id": "1238119c-ff9c-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-07T20:00:55.858000", "message_id": "1238119c-ff9c-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-07T20:00:55.858000", "message_id": "1238119c-ff9c-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-07T20:00:55.858000", "message_id": "1238119c-ff9c-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-07T19:00:51.193000", "message_id": "ada4dc54-ff93-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-07T19:00:51.193000", "message_id": "ada4dc54-ff93-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-07T19:00:51.193000", "message_id": "ada4dc54-ff93-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-07T19:00:51.193000", "message_id": "ada4dc54-ff93-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-07T19:00:51.193000", "message_id": "ada4dc54-ff93-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-07T18:00:49.702000", "message_id": "4af64460-ff8b-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-07T18:00:49.702000", "message_id": "4af64460-ff8b-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-07T18:00:49.702000", "message_id": "4af64460-ff8b-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-07T18:00:49.702000", "message_id": "4af64460-ff8b-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-07T17:00:47.592000", "message_id": "e7ecb76c-ff82-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-07T16:00:45.357000", "message_id": "84d73fc4-ff7a-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-07T16:00:45.357000", "message_id": "84d73fc4-ff7a-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-07T16:00:45.357000", "message_id": "84d73fc4-ff7a-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-07T15:00:43.113000", "message_id": "21b64ee2-ff72-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-07T14:00:40.887000", "message_id": "bea80d66-ff69-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-07T13:00:38.095000", "message_id": "5b36cf18-ff61-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-07T12:00:35.638000", "message_id": "f7f7a5e2-ff58-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-07T12:00:35.638000", "message_id": "f7f7a5e2-ff58-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-07T11:00:33.181000", "message_id": "94bc7b7c-ff50-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-07T10:00:28.967000", "message_id": "30785cd8-ff48-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-07T09:00:26.228000", "message_id": "cd19a21c-ff3f-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-07T08:00:23.811000", "message_id": "69dbac8e-ff37-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-07T08:00:23.811000", "message_id": "69dbac8e-ff37-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-07T08:00:23.811000", "message_id": "69dbac8e-ff37-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-07T07:00:21.742000", "message_id": "06ea99bc-ff2f-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-07T06:00:16.437000", "message_id": "a2030d2a-ff26-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-07T05:00:13.157000", "message_id": "3e3e9564-ff1e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-07T05:00:13.157000", "message_id": "3e3e9564-ff1e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-07T05:00:13.157000", "message_id": "3e3e9564-ff1e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-07T05:00:13.157000", "message_id": "3e3e9564-ff1e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-07T05:00:13.157000", "message_id": "3e3e9564-ff1e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-07T04:00:10.543000", "message_id": "daeb9b5e-ff15-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-07T03:00:06.865000", "message_id": "76e6a0b6-ff0d-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-07T02:00:04.011000", "message_id": "13836ac0-ff05-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-07T01:00:01.999000", "message_id": "b07b3618-fefc-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-07T00:00:01.267000", "message_id": "4e46ed5a-fef4-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-07T00:00:01.267000", "message_id": "4e46ed5a-fef4-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-07T00:00:01.267000", "message_id": "4e46ed5a-fef4-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-06T23:00:36.477000", "message_id": "01859398-feec-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-06T22:00:00.352000", "message_id": "8a3768b4-fee3-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-06T21:00:12.949000", "message_id": "2ffac2e0-fedb-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-06T20:00:01.679000", "message_id": "c77fa9cc-fed2-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-06T19:00:52.355000", "message_id": "83e85586-feca-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-06T18:00:45.984000", "message_id": "1e59ff74-fec2-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-06T17:00:34.454000", "message_id": "b5b753ca-feb9-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-06T16:00:25.313000", "message_id": "4e8ae8ea-feb1-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-06T15:00:16.298000", "message_id": "e758c3f2-fea8-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-06T14:00:07.342000", "message_id": "80396a12-fea0-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-06T13:01:00.193000", "message_id": "3dfbf3ac-fe98-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-06T12:00:50.958000", "message_id": "d6aea210-fe8f-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-06T12:00:50.958000", "message_id": "d6aea210-fe8f-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-06T11:00:42.255000", "message_id": "6fb97916-fe87-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-06T10:00:33.244000", "message_id": "089e317a-fe7f-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-06T10:00:33.244000", "message_id": "089e317a-fe7f-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-06T10:00:33.244000", "message_id": "089e317a-fe7f-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-06T10:00:33.244000", "message_id": "089e317a-fe7f-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-06T10:00:33.244000", "message_id": "089e317a-fe7f-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-06T09:00:25.726000", "message_id": "a25d62bc-fe76-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-06T08:00:15.480000", "message_id": "3a7e4984-fe6e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-06T07:00:06.809000", "message_id": "d386e14e-fe65-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-06T06:00:59.258000", "message_id": "910b2bca-fe5d-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-06T05:00:49.921000", "message_id": "29b9ea36-fe55-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-06T04:00:41.548000", "message_id": "c2fbbc8c-fe4c-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-06T03:00:32.597000", "message_id": "5bdec326-fe44-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-06T02:00:23.208000", "message_id": "f47b303c-fe3b-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-06T01:00:14.172000", "message_id": "8d595576-fe33-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-06T00:00:05.685000", "message_id": "26840506-fe2b-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T23:00:58.973000", "message_id": "e47cd0fa-fe22-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T22:00:49.315000", "message_id": "7d018b62-fe1a-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T22:00:49.315000", "message_id": "7d018b62-fe1a-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T22:00:49.315000", "message_id": "7d018b62-fe1a-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T22:00:49.315000", "message_id": "7d018b62-fe1a-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T21:00:40.430000", "message_id": "15e74ef6-fe12-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T20:00:32.393000", "message_id": "af56d84e-fe09-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T20:00:32.393000", "message_id": "af56d84e-fe09-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T20:00:32.393000", "message_id": "af56d84e-fe09-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T20:00:32.393000", "message_id": "af56d84e-fe09-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T19:00:24.309000", "message_id": "4926fc5a-fe01-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T18:00:16.172000", "message_id": "e224e8a8-fdf8-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T18:00:16.172000", "message_id": "e224e8a8-fdf8-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T18:00:16.172000", "message_id": "e224e8a8-fdf8-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T18:00:16.172000", "message_id": "e224e8a8-fdf8-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T17:00:08.261000", "message_id": "7ba9a2ce-fdf0-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T16:00:00.185000", "message_id": "15150542-fde8-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T16:00:00.185000", "message_id": "15150542-fde8-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T16:00:00.185000", "message_id": "15150542-fde8-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T16:00:00.185000", "message_id": "15150542-fde8-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T15:00:53.732000", "message_id": "d339dab0-fddf-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T14:00:45.870000", "message_id": "6cc9d710-fdd7-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T13:00:37.686000", "message_id": "06207300-fdcf-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T13:00:37.686000", "message_id": "06207300-fdcf-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T13:00:37.686000", "message_id": "06207300-fdcf-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T13:00:37.686000", "message_id": "06207300-fdcf-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T12:00:29.501000", "message_id": "9f7fb7c6-fdc6-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T12:00:29.501000", "message_id": "9f7fb7c6-fdc6-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T12:00:29.501000", "message_id": "9f7fb7c6-fdc6-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T11:00:21.487000", "message_id": "38f23734-fdbe-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T10:00:13.228000", "message_id": "d24fde94-fdb5-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T09:00:05.310000", "message_id": "6bc03398-fdad-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T08:00:58.686000", "message_id": "29d0b2b2-fda5-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T07:00:50.560000", "message_id": "c334ec1a-fd9c-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T06:00:42.385000", "message_id": "5c94fe8a-fd94-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T06:00:42.385000", "message_id": "5c94fe8a-fd94-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T06:00:42.385000", "message_id": "5c94fe8a-fd94-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T06:00:42.385000", "message_id": "5c94fe8a-fd94-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T05:17:47.006000", "message_id": "5d8482c6-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.create.end", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "message": "Success", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.616662", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "image_name": "cirros-0.3.1-x86_64-uec", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T05:17:46.789000", "message_id": "5d64de62-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.update", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "old_state": "building", "old_task_state": "spawning", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05T05:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 05:17:36", "launched_at": "2013-08-05T05:17:46.616662", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "None", "audit_period_ending": "2013-08-05T05:17:46.683739", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T05:17:42.061000", "message_id": "5a8c2b5a-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "spawning", "event_type": "compute.instance.update", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "building", "old_state": "None", "old_task_state": "None", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05T05:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 05:17:36", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "spawning", "audit_period_ending": "2013-08-05T05:17:42.040523", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T05:17:39.752000", "message_id": "592af980-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "spawning", "event_type": "compute.instance.update", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "building", "old_state": "building", "old_task_state": "block_device_mapping", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05T05:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 05:17:36", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "spawning", "audit_period_ending": "2013-08-05T05:17:39.719445", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T05:17:38.988000", "message_id": "58c79070-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "block_device_mapping", "event_type": "compute.instance.update", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "building", "old_state": "building", "old_task_state": "networking", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05T05:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 05:17:36", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "block_device_mapping", "audit_period_ending": "2013-08-05T05:17:38.891624", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T05:17:38.324000", "message_id": "587c9d40-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "networking", "event_type": "compute.instance.update", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "building", "old_state": "building", "old_task_state": "None", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05T05:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 05:17:36", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "networking", "audit_period_ending": "2013-08-05T05:17:38.306231", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T05:17:38.324000", "message_id": "587c9d40-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "networking", "event_type": "compute.instance.update", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "building", "old_state": "building", "old_task_state": "None", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05T05:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 05:17:36", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "networking", "audit_period_ending": "2013-08-05T05:17:38.306231", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T05:17:38.324000", "message_id": "587c9d40-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "networking", "event_type": "compute.instance.update", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "building", "old_state": "building", "old_task_state": "None", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05T05:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 05:17:36", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "networking", "audit_period_ending": "2013-08-05T05:17:38.306231", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T05:17:38.154000", "message_id": "5857cf88-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.update", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "building", "old_state": "None", "old_task_state": "None", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05T05:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 05:17:36", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "None", "audit_period_ending": "2013-08-05T05:17:38.148291", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T05:17:38.154000", "message_id": "5857cf88-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.update", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "building", "old_state": "None", "old_task_state": "None", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05T05:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 05:17:36", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "None", "audit_period_ending": "2013-08-05T05:17:38.148291", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T05:17:38.154000", "message_id": "5857cf88-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.update", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "building", "old_state": "None", "old_task_state": "None", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05T05:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 05:17:36", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "None", "audit_period_ending": "2013-08-05T05:17:38.148291", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T05:17:38.154000", "message_id": "5857cf88-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.update", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "building", "old_state": "None", "old_task_state": "None", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05T05:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 05:17:36", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "None", "audit_period_ending": "2013-08-05T05:17:38.148291", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T05:17:37.667000", "message_id": "580acc1a-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "scheduling", "event_type": "compute.instance.create.start", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "message": "", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "building", "launched_at": "", "node": "None", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "image_name": "cirros-0.3.1-x86_64-uec", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T05:17:37.558000", "message_id": "57f8a6b6-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.update", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "building", "old_state": "building", "old_task_state": "scheduling", "node": "None", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05T05:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 05:17:36", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "None", "audit_period_ending": "2013-08-05T05:17:37.556043", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T05:17:36.990000", "message_id": "5785553a-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "scheduling", "event_type": "compute.instance.update", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "building", "old_state": "None", "old_task_state": "None", "node": "None", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "api.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05T05:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 05:17:36", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "scheduling", "audit_period_ending": "2013-08-05T05:17:36.988438", "os_type": "None"}, "counter_type": "gauge"}], "http://localhost:8777/v2/meters/instance?q.field=resource_id&q.value=c01c63fe-7a29-4426-bab1-34d088e92415": [{"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-12T04:00:31.184000", "message_id": "bb58daf8-0303-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-12 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-12T03:00:51.440000", "message_id": "659a2f52-02fb-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-12 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-12T02:00:27.697000", "message_id": "f5a9b684-02f2-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-12 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-12T01:00:47.102000", "message_id": "9f87f11a-02ea-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-12 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-12T00:00:24.788000", "message_id": "3071adb4-02e2-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-11T23:00:42.335000", "message_id": "d926a80a-02d9-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-11T23:00:42.335000", "message_id": "d926a80a-02d9-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-11T22:00:21.059000", "message_id": "6aab52b6-02d1-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-11T21:00:30.056000", "message_id": "0e41d764-02c9-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-11T20:00:18.137000", "message_id": "a56637ce-02c0-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-11T19:00:11.814000", "message_id": "3fda758a-02b8-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-11T18:00:03.045000", "message_id": "d8e291d0-02af-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-11T17:00:49.747000", "message_id": "92ed37c8-02a7-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-11T16:00:45.728000", "message_id": "2eddf3d8-029f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-11T15:00:36.733000", "message_id": "c79cfa46-0296-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-11T14:00:27.976000", "message_id": "60a69f7a-028e-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-11T14:00:27.976000", "message_id": "60a69f7a-028e-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-11T14:00:27.976000", "message_id": "60a69f7a-028e-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-11T13:00:20.264000", "message_id": "fa506f88-0285-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-11T12:00:11.566000", "message_id": "9362870a-027d-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-11T11:00:02.921000", "message_id": "2c782156-0275-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-11T10:00:29.398000", "message_id": "da702280-026c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-11T10:00:29.398000", "message_id": "da702280-026c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-11T10:00:29.398000", "message_id": "da702280-026c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-11T10:00:29.398000", "message_id": "da702280-026c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-11T09:00:26.353000", "message_id": "76dc2708-0264-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-11T08:00:23.259000", "message_id": "1336ff82-025c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-11T07:00:19.872000", "message_id": "af6b2e36-0253-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-11T06:00:16.472000", "message_id": "4ba16008-024b-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-11T05:00:05.302000", "message_id": "e34426ba-0242-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-11T05:00:05.302000", "message_id": "e34426ba-0242-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-11T05:00:05.302000", "message_id": "e34426ba-0242-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-11T04:00:09.233000", "message_id": "83d264ba-023a-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-11T03:00:02.173000", "message_id": "1dd36036-0232-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-11T03:00:02.173000", "message_id": "1dd36036-0232-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-11T03:00:02.173000", "message_id": "1dd36036-0232-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-11T03:00:02.173000", "message_id": "1dd36036-0232-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-11T03:00:02.173000", "message_id": "1dd36036-0232-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-11T02:00:02.909000", "message_id": "bc7d25fe-0229-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-11T02:00:02.909000", "message_id": "bc7d25fe-0229-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-11T02:00:02.909000", "message_id": "bc7d25fe-0229-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-11T02:00:02.909000", "message_id": "bc7d25fe-0229-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-11T02:00:02.909000", "message_id": "bc7d25fe-0229-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-11T01:00:00.658000", "message_id": "596ee0b8-0221-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-11T01:00:00.658000", "message_id": "596ee0b8-0221-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-11T01:00:00.658000", "message_id": "596ee0b8-0221-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-11T01:00:00.658000", "message_id": "596ee0b8-0221-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-11T00:00:59.512000", "message_id": "1aaf7430-0219-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-10T23:00:57.092000", "message_id": "b7835adc-0210-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-10T22:00:51.263000", "message_id": "523e790c-0208-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-10T21:00:44.050000", "message_id": "ec45e516-01ff-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-10T20:00:38.899000", "message_id": "874d544e-01f7-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-10T19:00:35.353000", "message_id": "237f34b2-01ef-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-10T19:00:35.353000", "message_id": "237f34b2-01ef-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-10T19:00:35.353000", "message_id": "237f34b2-01ef-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-10T19:00:35.353000", "message_id": "237f34b2-01ef-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-10T19:00:35.353000", "message_id": "237f34b2-01ef-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-10T18:00:31.926000", "message_id": "bfa42f2c-01e6-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-10T17:00:28.437000", "message_id": "5be7a17e-01de-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-10T17:00:28.437000", "message_id": "5be7a17e-01de-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-10T16:00:25.497000", "message_id": "f85334b4-01d5-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-10T15:00:22.275000", "message_id": "949c35e0-01cd-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-10T14:00:19.191000", "message_id": "3100e93e-01c5-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-10T13:00:15.725000", "message_id": "cd3053de-01bc-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-10T13:00:15.725000", "message_id": "cd3053de-01bc-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-10T13:00:15.725000", "message_id": "cd3053de-01bc-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-10T13:00:15.725000", "message_id": "cd3053de-01bc-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-10T13:00:15.725000", "message_id": "cd3053de-01bc-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-10T12:00:04.316000", "message_id": "648a7448-01b4-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-10T11:00:00.332000", "message_id": "0086401a-01ac-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-10T10:00:57.863000", "message_id": "c101309c-01a3-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-10T09:00:54.319000", "message_id": "5d1cd246-019b-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-10T08:00:51.375000", "message_id": "f99469e4-0192-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-10T07:00:47.682000", "message_id": "95a0b01c-018a-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-10T07:00:47.682000", "message_id": "95a0b01c-018a-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-10T06:00:44.548000", "message_id": "31f23ae8-0182-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-10T05:00:41.387000", "message_id": "ce5bd7ee-0179-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-10T04:00:38.548000", "message_id": "6aeb8252-0171-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-10T03:00:35.120000", "message_id": "0714c566-0169-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-10T02:00:32.242000", "message_id": "a3a4f71a-0160-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-10T01:00:28.562000", "message_id": "3f9e5aca-0158-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-10T00:00:24.284000", "message_id": "db4cefbc-014f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-09T23:00:20.577000", "message_id": "77585210-0147-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-09T22:00:17.047000", "message_id": "136d839a-013f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-09T22:00:17.047000", "message_id": "136d839a-013f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-09T22:00:17.047000", "message_id": "136d839a-013f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-09T21:00:13.502000", "message_id": "af909630-0136-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-09T21:00:13.502000", "message_id": "af909630-0136-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-09T21:00:13.502000", "message_id": "af909630-0136-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-09T21:00:13.502000", "message_id": "af909630-0136-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-09T21:00:13.502000", "message_id": "af909630-0136-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-09T20:00:10.444000", "message_id": "4bfc7efc-012e-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-09T19:00:07.068000", "message_id": "e82a546a-0125-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-09T18:00:05.421000", "message_id": "857b363e-011d-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-09T17:00:01.570000", "message_id": "216b170c-0115-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-09T17:00:01.570000", "message_id": "216b170c-0115-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-09T17:00:01.570000", "message_id": "216b170c-0115-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-09T17:00:01.570000", "message_id": "216b170c-0115-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-09T17:00:01.570000", "message_id": "216b170c-0115-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-09T16:00:59.797000", "message_id": "e2654d5a-010c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-09T15:00:53.203000", "message_id": "7c9bbcaa-0104-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-09T14:00:42.356000", "message_id": "1466619c-00fc-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-09T13:00:32.026000", "message_id": "ac794296-00f3-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-09T13:00:32.026000", "message_id": "ac794296-00f3-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-09T13:00:32.026000", "message_id": "ac794296-00f3-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-09T13:00:32.026000", "message_id": "ac794296-00f3-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-09T13:00:32.026000", "message_id": "ac794296-00f3-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-09T12:00:21.716000", "message_id": "44977308-00eb-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-09T12:00:21.716000", "message_id": "44977308-00eb-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-09T11:00:11.789000", "message_id": "dcee7e98-00e2-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-09T10:00:02.069000", "message_id": "7565043e-00da-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-09T10:00:02.069000", "message_id": "7565043e-00da-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-09T09:00:53.781000", "message_id": "326145ba-00d2-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-09T08:00:44.842000", "message_id": "cb4597da-00c9-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-09T07:00:35.694000", "message_id": "64146cc4-00c1-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-09T06:00:27.555000", "message_id": "fd8b73c4-00b8-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-09T06:00:27.555000", "message_id": "fd8b73c4-00b8-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-09T06:00:27.555000", "message_id": "fd8b73c4-00b8-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-09T05:00:17.905000", "message_id": "95f61226-00b0-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-09T05:00:17.905000", "message_id": "95f61226-00b0-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-09T05:00:17.905000", "message_id": "95f61226-00b0-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-09T05:00:17.905000", "message_id": "95f61226-00b0-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-09T05:00:17.905000", "message_id": "95f61226-00b0-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-09T04:00:02.418000", "message_id": "2af34c1c-00a8-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-09T03:00:53.080000", "message_id": "e77d3798-009f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-09T02:00:37.397000", "message_id": "7c372fe6-0097-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-09T01:00:26.974000", "message_id": "14418c86-008f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-09T00:00:17.138000", "message_id": "acad4086-0086-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-08T23:00:07.657000", "message_id": "4533458e-007e-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-08T23:00:07.657000", "message_id": "4533458e-007e-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-08T23:00:07.657000", "message_id": "4533458e-007e-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-08T23:00:07.657000", "message_id": "4533458e-007e-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-08T23:00:07.657000", "message_id": "4533458e-007e-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-08T22:01:01.432000", "message_id": "03b00cda-0076-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-08T22:01:01.432000", "message_id": "03b00cda-0076-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-08T21:00:52.378000", "message_id": "9c4d7256-006d-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-08T20:00:43.611000", "message_id": "355e962c-0065-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-08T19:00:36.868000", "message_id": "cf8d0692-005c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-08T18:00:29.471000", "message_id": "695d61bc-0054-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-08T18:00:29.471000", "message_id": "695d61bc-0054-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-08T18:00:29.471000", "message_id": "695d61bc-0054-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-08T18:00:29.471000", "message_id": "695d61bc-0054-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-08T18:00:29.471000", "message_id": "695d61bc-0054-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-08T17:00:22.454000", "message_id": "037462d6-004c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-08T16:00:14.069000", "message_id": "9c996f82-0043-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-08T15:00:07.843000", "message_id": "373ac24c-003b-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-08T14:01:00.789000", "message_id": "f4fd1860-0032-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-08T13:00:51.760000", "message_id": "8dd3ee3c-002a-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-08T12:00:42.701000", "message_id": "26ac5ad0-0022-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-08T12:00:42.701000", "message_id": "26ac5ad0-0022-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-08T11:00:35.864000", "message_id": "c0c9a306-0019-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-08T10:00:28.560000", "message_id": "5aaed27e-0011-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-08T09:00:25.709000", "message_id": "f732beb6-0008-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-08T08:00:23.332000", "message_id": "940cbaec-0000-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-08T08:00:23.332000", "message_id": "940cbaec-0000-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-08T08:00:23.332000", "message_id": "940cbaec-0000-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-08T08:00:23.332000", "message_id": "940cbaec-0000-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-08T08:00:23.332000", "message_id": "940cbaec-0000-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-08T07:00:21.377000", "message_id": "311e1a28-fff8-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-08T06:00:19.443000", "message_id": "ce334ac6-ffef-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-08T05:00:17.612000", "message_id": "6b61a67a-ffe7-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-08T05:00:17.612000", "message_id": "6b61a67a-ffe7-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-08T05:00:17.612000", "message_id": "6b61a67a-ffe7-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-08T05:00:17.612000", "message_id": "6b61a67a-ffe7-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-08T04:00:16.017000", "message_id": "089ca9c0-ffdf-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-08T03:00:13.986000", "message_id": "a59f7440-ffd6-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-08T03:00:13.986000", "message_id": "a59f7440-ffd6-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-08T03:00:13.986000", "message_id": "a59f7440-ffd6-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-08T03:00:13.986000", "message_id": "a59f7440-ffd6-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-08T02:00:12.194000", "message_id": "42cf2e8a-ffce-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-08T01:00:10.284000", "message_id": "dfd2e680-ffc5-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-08T00:00:08.743000", "message_id": "7d3afe5c-ffbd-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-07T23:00:03.983000", "message_id": "18978018-ffb5-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-07T23:00:03.983000", "message_id": "18978018-ffb5-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-07T23:00:03.983000", "message_id": "18978018-ffb5-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-07T23:00:03.983000", "message_id": "18978018-ffb5-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-07T22:00:01.460000", "message_id": "b563c48c-ffac-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-07T21:00:58.467000", "message_id": "759d3872-ffa4-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-07T20:00:55.858000", "message_id": "12505586-ff9c-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-07T20:00:55.858000", "message_id": "12505586-ff9c-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-07T20:00:55.858000", "message_id": "12505586-ff9c-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-07T19:00:51.193000", "message_id": "adaf7c9a-ff93-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-07T18:00:49.702000", "message_id": "4b051f30-ff8b-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-07T17:00:47.592000", "message_id": "e7f5d50e-ff82-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-07T17:00:47.592000", "message_id": "e7f5d50e-ff82-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-07T16:00:45.357000", "message_id": "84e18858-ff7a-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-07T15:00:43.113000", "message_id": "21c451a4-ff72-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-07T15:00:43.113000", "message_id": "21c451a4-ff72-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-07T15:00:43.113000", "message_id": "21c451a4-ff72-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-07T15:00:43.113000", "message_id": "21c451a4-ff72-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-07T15:00:43.113000", "message_id": "21c451a4-ff72-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-07T14:00:40.887000", "message_id": "beb4bbec-ff69-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-07T14:00:40.887000", "message_id": "beb4bbec-ff69-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-07T14:00:40.887000", "message_id": "beb4bbec-ff69-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-07T14:00:40.887000", "message_id": "beb4bbec-ff69-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-07T14:00:40.887000", "message_id": "beb4bbec-ff69-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-07T13:00:38.095000", "message_id": "5b4144e8-ff61-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-07T12:00:35.638000", "message_id": "f818a31e-ff58-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-07T11:00:33.181000", "message_id": "94ce48ac-ff50-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-07T10:00:28.967000", "message_id": "3084d26a-ff48-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-07T09:00:26.228000", "message_id": "cd20bec6-ff3f-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-07T08:00:23.811000", "message_id": "69e7cc08-ff37-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-07T08:00:23.811000", "message_id": "69e7cc08-ff37-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-07T08:00:23.811000", "message_id": "69e7cc08-ff37-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-07T08:00:23.811000", "message_id": "69e7cc08-ff37-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-07T07:00:21.742000", "message_id": "06f1a8c4-ff2f-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-07T06:00:16.437000", "message_id": "a20b2c30-ff26-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-07T06:00:16.437000", "message_id": "a20b2c30-ff26-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-07T06:00:16.437000", "message_id": "a20b2c30-ff26-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-07T06:00:16.437000", "message_id": "a20b2c30-ff26-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-07T05:00:13.157000", "message_id": "3e4eda5a-ff1e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-07T04:00:10.543000", "message_id": "daf6f6ca-ff15-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-07T03:00:06.865000", "message_id": "76f1600a-ff0d-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-07T02:00:04.011000", "message_id": "1390db10-ff05-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-07T02:00:04.011000", "message_id": "1390db10-ff05-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-07T02:00:04.011000", "message_id": "1390db10-ff05-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-07T02:00:04.011000", "message_id": "1390db10-ff05-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-07T01:00:01.999000", "message_id": "b0840144-fefc-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-07T00:00:01.267000", "message_id": "4e538786-fef4-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-06T23:00:36.477000", "message_id": "018cd3ce-feec-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-06T22:00:00.352000", "message_id": "8a42b520-fee3-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-06T22:00:00.352000", "message_id": "8a42b520-fee3-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-06T22:00:00.352000", "message_id": "8a42b520-fee3-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-06T21:00:12.949000", "message_id": "300ad824-fedb-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-06T20:00:01.679000", "message_id": "c7928e98-fed2-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-06T19:00:52.355000", "message_id": "83effeee-feca-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-06T18:00:45.984000", "message_id": "1e664c70-fec2-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-06T17:00:34.454000", "message_id": "b5cdaf08-feb9-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-06T16:00:25.313000", "message_id": "4e8c388a-feb1-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-06T15:00:16.298000", "message_id": "e769952e-fea8-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-06T14:00:07.342000", "message_id": "80448316-fea0-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-06T13:01:00.193000", "message_id": "3e0a161c-fe98-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-06T12:00:50.958000", "message_id": "d6bb45ba-fe8f-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-06T11:00:42.255000", "message_id": "6fc5150a-fe87-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-06T11:00:42.255000", "message_id": "6fc5150a-fe87-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-06T10:00:33.244000", "message_id": "08acf1c4-fe7f-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-06T09:00:25.726000", "message_id": "a26569e4-fe76-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-06T08:00:15.480000", "message_id": "3a8bed50-fe6e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-06T08:00:15.480000", "message_id": "3a8bed50-fe6e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-06T08:00:15.480000", "message_id": "3a8bed50-fe6e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-06T08:00:15.480000", "message_id": "3a8bed50-fe6e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-06T08:00:15.480000", "message_id": "3a8bed50-fe6e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-06T07:00:06.809000", "message_id": "d390323a-fe65-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-06T07:00:06.809000", "message_id": "d390323a-fe65-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-06T07:00:06.809000", "message_id": "d390323a-fe65-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-06T07:00:06.809000", "message_id": "d390323a-fe65-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-06T07:00:06.809000", "message_id": "d390323a-fe65-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-06T06:00:59.258000", "message_id": "91154722-fe5d-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-06T05:00:49.921000", "message_id": "29ca0876-fe55-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-06T04:00:41.548000", "message_id": "c2fd9ff2-fe4c-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-06T03:00:32.597000", "message_id": "5bf13b00-fe44-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-06T02:00:23.208000", "message_id": "f48eb9b8-fe3b-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-06T01:00:14.172000", "message_id": "8d5a68f8-fe33-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-06T00:00:05.685000", "message_id": "268f54a6-fe2b-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-06T00:00:05.685000", "message_id": "268f54a6-fe2b-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-06T00:00:05.685000", "message_id": "268f54a6-fe2b-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-06T00:00:05.685000", "message_id": "268f54a6-fe2b-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-06T00:00:05.685000", "message_id": "268f54a6-fe2b-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T23:00:58.973000", "message_id": "e488a448-fe22-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T22:00:49.315000", "message_id": "7d15b448-fe1a-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T22:00:49.315000", "message_id": "7d15b448-fe1a-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T22:00:49.315000", "message_id": "7d15b448-fe1a-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T21:00:40.430000", "message_id": "15eeb786-fe12-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T20:00:32.393000", "message_id": "af5eff60-fe09-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T19:00:24.309000", "message_id": "49288944-fe01-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T18:00:16.172000", "message_id": "e2322536-fdf8-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T17:00:08.261000", "message_id": "7baaa340-fdf0-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T16:00:00.185000", "message_id": "151dfa58-fde8-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T16:00:00.185000", "message_id": "151dfa58-fde8-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T16:00:00.185000", "message_id": "151dfa58-fde8-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T15:00:53.732000", "message_id": "d3415fd8-fddf-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T14:00:45.870000", "message_id": "6cd171d2-fdd7-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T13:00:37.686000", "message_id": "062acd0a-fdcf-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T12:00:29.501000", "message_id": "9f8b54c8-fdc6-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T11:00:21.487000", "message_id": "38fbb138-fdbe-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T11:00:21.487000", "message_id": "38fbb138-fdbe-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T11:00:21.487000", "message_id": "38fbb138-fdbe-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T11:00:21.487000", "message_id": "38fbb138-fdbe-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T10:00:13.228000", "message_id": "d25a91fe-fdb5-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T09:00:05.310000", "message_id": "6bc953f6-fdad-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T08:00:58.686000", "message_id": "29d27264-fda5-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T07:00:50.560000", "message_id": "c33bb5a4-fd9c-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T06:00:42.385000", "message_id": "5c9d7614-fd94-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T05:17:47.006000", "message_id": "5d9034e0-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.create.end", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "message": "Success", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.616662", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "image_name": "cirros-0.3.1-x86_64-uec", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T05:17:47.006000", "message_id": "5d9034e0-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.create.end", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "message": "Success", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.616662", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "image_name": "cirros-0.3.1-x86_64-uec", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T05:17:47.006000", "message_id": "5d9034e0-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.create.end", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "message": "Success", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.616662", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "image_name": "cirros-0.3.1-x86_64-uec", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T05:17:46.789000", "message_id": "5d6acfd4-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.update", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "old_state": "building", "old_task_state": "spawning", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05T05:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 05:17:36", "launched_at": "2013-08-05T05:17:46.616662", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "None", "audit_period_ending": "2013-08-05T05:17:46.683739", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T05:17:42.061000", "message_id": "5a8dca00-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "spawning", "event_type": "compute.instance.update", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "building", "old_state": "None", "old_task_state": "None", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05T05:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 05:17:36", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "spawning", "audit_period_ending": "2013-08-05T05:17:42.040523", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T05:17:39.752000", "message_id": "592f0656-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "spawning", "event_type": "compute.instance.update", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "building", "old_state": "building", "old_task_state": "block_device_mapping", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05T05:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 05:17:36", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "spawning", "audit_period_ending": "2013-08-05T05:17:39.719445", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T05:17:38.988000", "message_id": "58d94748-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "block_device_mapping", "event_type": "compute.instance.update", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "building", "old_state": "building", "old_task_state": "networking", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05T05:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 05:17:36", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "block_device_mapping", "audit_period_ending": "2013-08-05T05:17:38.891624", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T05:17:38.988000", "message_id": "58d94748-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "block_device_mapping", "event_type": "compute.instance.update", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "building", "old_state": "building", "old_task_state": "networking", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05T05:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 05:17:36", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "block_device_mapping", "audit_period_ending": "2013-08-05T05:17:38.891624", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T05:17:38.324000", "message_id": "5892c0a2-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "networking", "event_type": "compute.instance.update", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "building", "old_state": "building", "old_task_state": "None", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05T05:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 05:17:36", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "networking", "audit_period_ending": "2013-08-05T05:17:38.306231", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T05:17:38.324000", "message_id": "5892c0a2-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "networking", "event_type": "compute.instance.update", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "building", "old_state": "building", "old_task_state": "None", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05T05:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 05:17:36", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "networking", "audit_period_ending": "2013-08-05T05:17:38.306231", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T05:17:38.324000", "message_id": "5892c0a2-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "networking", "event_type": "compute.instance.update", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "building", "old_state": "building", "old_task_state": "None", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05T05:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 05:17:36", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "networking", "audit_period_ending": "2013-08-05T05:17:38.306231", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T05:17:38.324000", "message_id": "5892c0a2-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "networking", "event_type": "compute.instance.update", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "building", "old_state": "building", "old_task_state": "None", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05T05:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 05:17:36", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "networking", "audit_period_ending": "2013-08-05T05:17:38.306231", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T05:17:38.154000", "message_id": "58834e1a-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.update", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "building", "old_state": "None", "old_task_state": "None", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05T05:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 05:17:36", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "None", "audit_period_ending": "2013-08-05T05:17:38.148291", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T05:17:37.667000", "message_id": "58191f40-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "scheduling", "event_type": "compute.instance.create.start", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "message": "", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "building", "launched_at": "", "node": "None", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "image_name": "cirros-0.3.1-x86_64-uec", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T05:17:37.558000", "message_id": "580904e8-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.update", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "building", "old_state": "building", "old_task_state": "scheduling", "node": "None", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05T05:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 05:17:36", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "None", "audit_period_ending": "2013-08-05T05:17:37.556043", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T05:17:37.558000", "message_id": "580904e8-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.update", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "building", "old_state": "building", "old_task_state": "scheduling", "node": "None", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05T05:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 05:17:36", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "None", "audit_period_ending": "2013-08-05T05:17:37.556043", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T05:17:37.558000", "message_id": "580904e8-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.update", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "building", "old_state": "building", "old_task_state": "scheduling", "node": "None", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05T05:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 05:17:36", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "None", "audit_period_ending": "2013-08-05T05:17:37.556043", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T05:17:37.558000", "message_id": "580904e8-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.update", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "building", "old_state": "building", "old_task_state": "scheduling", "node": "None", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05T05:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 05:17:36", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "None", "audit_period_ending": "2013-08-05T05:17:37.556043", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T05:17:37.558000", "message_id": "580904e8-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.update", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "building", "old_state": "building", "old_task_state": "scheduling", "node": "None", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05T05:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 05:17:36", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "None", "audit_period_ending": "2013-08-05T05:17:37.556043", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T05:17:36.990000", "message_id": "57871014-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "scheduling", "event_type": "compute.instance.update", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "building", "old_state": "None", "old_task_state": "None", "node": "None", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "api.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05T05:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 05:17:36", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "scheduling", "audit_period_ending": "2013-08-05T05:17:36.988438", "os_type": "None"}, "counter_type": "gauge"}], "http://localhost:8777/v2/meters/disk.root.size?q.field=resource_id&q.value=c01c63fe-7a29-4426-bab1-34d088e92415": [{"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-12T04:00:31.184000", "message_id": "bb6f538c-0303-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-12 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-12T03:00:51.440000", "message_id": "65bb39f4-02fb-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-12 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-12T02:00:27.697000", "message_id": "f5c86eda-02f2-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-12 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-12T01:00:47.102000", "message_id": "9fb23bdc-02ea-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-12 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-12T01:00:47.102000", "message_id": "9fb23bdc-02ea-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-12 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-12T00:00:24.788000", "message_id": "30949234-02e2-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-11T23:00:42.335000", "message_id": "d93f40f4-02d9-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-11T22:00:21.059000", "message_id": "6ac1df86-02d1-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-11T22:00:21.059000", "message_id": "6ac1df86-02d1-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-11T22:00:21.059000", "message_id": "6ac1df86-02d1-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-11T21:00:30.056000", "message_id": "0e455c04-02c9-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-11T20:00:18.137000", "message_id": "a58225a6-02c0-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-11T19:00:11.814000", "message_id": "3ff17690-02b8-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-11T18:00:03.045000", "message_id": "d8faaaf4-02af-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-11T18:00:03.045000", "message_id": "d8faaaf4-02af-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-11T17:00:49.747000", "message_id": "93099512-02a7-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-11T16:00:45.728000", "message_id": "2ef0bfb8-029f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-11T16:00:45.728000", "message_id": "2ef0bfb8-029f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-11T16:00:45.728000", "message_id": "2ef0bfb8-029f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-11T15:00:36.733000", "message_id": "c7b4ffec-0296-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-11T14:00:27.976000", "message_id": "60addd4e-028e-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-11T13:00:20.264000", "message_id": "fa66c9b8-0285-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-11T12:00:11.566000", "message_id": "9381edac-027d-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-11T12:00:11.566000", "message_id": "9381edac-027d-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-11T12:00:11.566000", "message_id": "9381edac-027d-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-11T11:00:02.921000", "message_id": "2c93f2be-0275-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-11T10:00:29.398000", "message_id": "da8764e0-026c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-11T10:00:29.398000", "message_id": "da8764e0-026c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-11T09:00:26.353000", "message_id": "76ee46ae-0264-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-11T09:00:26.353000", "message_id": "76ee46ae-0264-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-11T08:00:23.259000", "message_id": "1339faf2-025c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-11T07:00:19.872000", "message_id": "af6ea99e-0253-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-11T06:00:16.472000", "message_id": "4ba450e2-024b-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-11T05:00:05.302000", "message_id": "e357549c-0242-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-11T04:00:09.233000", "message_id": "83eaf084-023a-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-11T04:00:09.233000", "message_id": "83eaf084-023a-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-11T03:00:02.173000", "message_id": "1de7bc3e-0232-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-11T02:00:02.909000", "message_id": "bc95e882-0229-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-11T02:00:02.909000", "message_id": "bc95e882-0229-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-11T01:00:00.658000", "message_id": "598ae9b6-0221-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-11T00:00:59.512000", "message_id": "1ac7a4b0-0219-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-10T23:00:57.092000", "message_id": "b7a70392-0210-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-10T23:00:57.092000", "message_id": "b7a70392-0210-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-10T22:00:51.263000", "message_id": "5259c00e-0208-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-10T21:00:44.050000", "message_id": "ec5d21ae-01ff-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-10T21:00:44.050000", "message_id": "ec5d21ae-01ff-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-10T20:00:38.899000", "message_id": "87513dde-01f7-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-10T19:00:35.353000", "message_id": "23af7c08-01ef-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-10T18:00:31.926000", "message_id": "bfcc8abc-01e6-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-10T17:00:28.437000", "message_id": "5bfcdd5a-01de-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-10T16:00:25.497000", "message_id": "f8715dfe-01d5-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-10T16:00:25.497000", "message_id": "f8715dfe-01d5-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-10T16:00:25.497000", "message_id": "f8715dfe-01d5-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-10T15:00:22.275000", "message_id": "94c7e85c-01cd-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-10T14:00:19.191000", "message_id": "3125d64a-01c5-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-10T13:00:15.725000", "message_id": "cd4d6078-01bc-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-10T13:00:15.725000", "message_id": "cd4d6078-01bc-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-10T12:00:04.316000", "message_id": "64a01d0c-01b4-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-10T11:00:00.332000", "message_id": "008a7f90-01ac-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-10T10:00:57.863000", "message_id": "c105096a-01a3-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-10T09:00:54.319000", "message_id": "5d2111a8-019b-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-10T08:00:51.375000", "message_id": "f9b189f2-0192-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-10T07:00:47.682000", "message_id": "95d1913c-018a-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-10T06:00:44.548000", "message_id": "31f5372a-0182-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-10T05:00:41.387000", "message_id": "ce8dcbe6-0179-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-10T04:00:38.548000", "message_id": "6b03a77e-0171-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-10T03:00:35.120000", "message_id": "073607b2-0169-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-10T03:00:35.120000", "message_id": "073607b2-0169-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-10T02:00:32.242000", "message_id": "a3d9bc3e-0160-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-10T02:00:32.242000", "message_id": "a3d9bc3e-0160-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-10T02:00:32.242000", "message_id": "a3d9bc3e-0160-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-10T01:00:28.562000", "message_id": "3fb036be-0158-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-10T00:00:24.284000", "message_id": "db672ad0-014f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-09T23:00:20.577000", "message_id": "778104e4-0147-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-09T23:00:20.577000", "message_id": "778104e4-0147-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-09T22:00:17.047000", "message_id": "13885ab2-013f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-09T21:00:13.502000", "message_id": "afb51000-0136-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-09T20:00:10.444000", "message_id": "4c009c1c-012e-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-09T19:00:07.068000", "message_id": "e841ab4c-0125-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-09T18:00:05.421000", "message_id": "858faa38-011d-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-09T18:00:05.421000", "message_id": "858faa38-011d-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-09T18:00:05.421000", "message_id": "858faa38-011d-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-09T17:00:01.570000", "message_id": "218da074-0115-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-09T16:00:59.797000", "message_id": "e2850f96-010c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-09T16:00:59.797000", "message_id": "e2850f96-010c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-09T16:00:59.797000", "message_id": "e2850f96-010c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-09T15:00:53.203000", "message_id": "7c9fde0c-0104-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-09T14:00:42.356000", "message_id": "14693b38-00fc-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-09T13:00:32.026000", "message_id": "ac99d0f6-00f3-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-09T13:00:32.026000", "message_id": "ac99d0f6-00f3-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-09T13:00:32.026000", "message_id": "ac99d0f6-00f3-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-09T12:00:21.716000", "message_id": "44b888b8-00eb-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-09T11:00:11.789000", "message_id": "dcf2f61c-00e2-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-09T10:00:02.069000", "message_id": "75799ca0-00da-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-09T09:00:53.781000", "message_id": "326497d8-00d2-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-09T08:00:44.842000", "message_id": "cb5f5058-00c9-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-09T08:00:44.842000", "message_id": "cb5f5058-00c9-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-09T07:00:35.694000", "message_id": "641e2872-00c1-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-09T06:00:27.555000", "message_id": "fda218e0-00b8-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-09T05:00:17.905000", "message_id": "9616a130-00b0-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-09T04:00:02.418000", "message_id": "2b0fcb94-00a8-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-09T03:00:53.080000", "message_id": "e78a433e-009f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-09T02:00:37.397000", "message_id": "7c439e7a-0097-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-09T02:00:37.397000", "message_id": "7c439e7a-0097-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-09T01:00:26.974000", "message_id": "14589a16-008f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-09T00:00:17.138000", "message_id": "acdf2790-0086-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-08T23:00:07.657000", "message_id": "4554ac9c-007e-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-08T22:01:01.432000", "message_id": "03c10d5a-0076-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-08T21:00:52.378000", "message_id": "9c6572de-006d-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-08T21:00:52.378000", "message_id": "9c6572de-006d-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-08T21:00:52.378000", "message_id": "9c6572de-006d-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-08T20:00:43.611000", "message_id": "3576fa78-0065-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-08T19:00:36.868000", "message_id": "cfaaeaf4-005c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-08T18:00:29.471000", "message_id": "6974a912-0054-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-08T17:00:22.454000", "message_id": "039311b8-004c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-08T16:00:14.069000", "message_id": "9c9c7b28-0043-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-08T15:00:07.843000", "message_id": "37606146-003b-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-08T14:01:00.789000", "message_id": "f5014818-0032-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-08T13:00:51.760000", "message_id": "8dd8099a-002a-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-08T12:00:42.701000", "message_id": "26c9afe0-0022-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-08T12:00:42.701000", "message_id": "26c9afe0-0022-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-08T11:00:35.864000", "message_id": "c0dfa96c-0019-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-08T11:00:35.864000", "message_id": "c0dfa96c-0019-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-08T11:00:35.864000", "message_id": "c0dfa96c-0019-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-08T10:00:28.560000", "message_id": "5ad499a0-0011-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-08T10:00:28.560000", "message_id": "5ad499a0-0011-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-08T10:00:28.560000", "message_id": "5ad499a0-0011-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-08T09:00:25.709000", "message_id": "f75818e6-0008-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-08T09:00:25.709000", "message_id": "f75818e6-0008-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-08T08:00:23.332000", "message_id": "942bd3f0-0000-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-08T08:00:23.332000", "message_id": "942bd3f0-0000-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-08T07:00:21.377000", "message_id": "31483bdc-fff8-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-08T06:00:19.443000", "message_id": "ce617b8a-ffef-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-08T06:00:19.443000", "message_id": "ce617b8a-ffef-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-08T06:00:19.443000", "message_id": "ce617b8a-ffef-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-08T05:00:17.612000", "message_id": "6b7e0f40-ffe7-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-08T04:00:16.017000", "message_id": "08c30c96-ffdf-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-08T04:00:16.017000", "message_id": "08c30c96-ffdf-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-08T03:00:13.986000", "message_id": "a5bd1ad6-ffd6-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-08T02:00:12.194000", "message_id": "42d27fcc-ffce-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-08T01:00:10.284000", "message_id": "dff617cc-ffc5-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-08T00:00:08.743000", "message_id": "7d60eb80-ffbd-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-08T00:00:08.743000", "message_id": "7d60eb80-ffbd-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-07T23:00:03.983000", "message_id": "18a3e308-ffb5-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-07T22:00:01.460000", "message_id": "b57923d6-ffac-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-07T21:00:58.467000", "message_id": "75ae9ff4-ffa4-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-07T21:00:58.467000", "message_id": "75ae9ff4-ffa4-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-07T20:00:55.858000", "message_id": "1261af34-ff9c-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-07T19:00:51.193000", "message_id": "adcd21dc-ff93-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-07T18:00:49.702000", "message_id": "4b27cd96-ff8b-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-07T17:00:47.592000", "message_id": "e8122fc4-ff82-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-07T16:00:45.357000", "message_id": "85013bb2-ff7a-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-07T16:00:45.357000", "message_id": "85013bb2-ff7a-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-07T16:00:45.357000", "message_id": "85013bb2-ff7a-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-07T15:00:43.113000", "message_id": "21d6a1f6-ff72-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-07T14:00:40.887000", "message_id": "bebdb742-ff69-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-07T13:00:38.095000", "message_id": "5b5dedb4-ff61-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-07T12:00:35.638000", "message_id": "f81bb0e0-ff58-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-07T11:00:33.181000", "message_id": "94e0f7f4-ff50-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-07T10:00:28.967000", "message_id": "30ab7c94-ff48-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-07T09:00:26.228000", "message_id": "cd494ab2-ff3f-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-07T08:00:23.811000", "message_id": "6a056d26-ff37-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-07T08:00:23.811000", "message_id": "6a056d26-ff37-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-07T07:00:21.742000", "message_id": "070c062e-ff2f-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-07T06:00:16.437000", "message_id": "a2262e40-ff26-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-07T05:00:13.157000", "message_id": "3e6cfb52-ff1e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-07T04:00:10.543000", "message_id": "db1bb51e-ff15-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-07T03:00:06.865000", "message_id": "770a15aa-ff0d-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-07T03:00:06.865000", "message_id": "770a15aa-ff0d-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-07T03:00:06.865000", "message_id": "770a15aa-ff0d-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-07T02:00:04.011000", "message_id": "13a537e0-ff05-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-07T01:00:01.999000", "message_id": "b09f4a30-fefc-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-07T00:00:01.267000", "message_id": "4e6ea4da-fef4-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-06T23:00:36.477000", "message_id": "01a98ca8-feec-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-06T22:00:00.352000", "message_id": "8a7623a6-fee3-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-06T21:00:12.949000", "message_id": "302ac030-fedb-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-06T20:00:01.679000", "message_id": "c7bd8472-fed2-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-06T19:00:52.355000", "message_id": "841b1002-feca-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-06T18:00:45.984000", "message_id": "1e7f5fee-fec2-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-06T18:00:45.984000", "message_id": "1e7f5fee-fec2-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-06T18:00:45.984000", "message_id": "1e7f5fee-fec2-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-06T17:00:34.454000", "message_id": "b5f3014a-feb9-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-06T16:00:25.313000", "message_id": "4e9056b8-feb1-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-06T15:00:16.298000", "message_id": "e784f26a-fea8-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-06T15:00:16.298000", "message_id": "e784f26a-fea8-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-06T15:00:16.298000", "message_id": "e784f26a-fea8-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-06T14:00:07.342000", "message_id": "80615946-fea0-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-06T13:01:00.193000", "message_id": "3e0d652e-fe98-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-06T12:00:50.958000", "message_id": "d6e148c8-fe8f-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-06T11:00:42.255000", "message_id": "6fe3e71e-fe87-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-06T10:00:33.244000", "message_id": "08c4639a-fe7f-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-06T10:00:33.244000", "message_id": "08c4639a-fe7f-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-06T09:00:25.726000", "message_id": "a27d2f84-fe76-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-06T09:00:25.726000", "message_id": "a27d2f84-fe76-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-06T08:00:15.480000", "message_id": "3ab31646-fe6e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-06T07:00:06.809000", "message_id": "d3b481bc-fe65-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-06T06:00:59.258000", "message_id": "91183482-fe5d-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-06T05:00:49.921000", "message_id": "29edb122-fe55-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-06T04:00:41.548000", "message_id": "c301094e-fe4c-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-06T03:00:32.597000", "message_id": "5c0aa55e-fe44-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-06T02:00:23.208000", "message_id": "f49258e8-fe3b-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-06T01:00:14.172000", "message_id": "8d5e121e-fe33-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-06T00:00:05.685000", "message_id": "26ae122e-fe2b-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T23:00:58.973000", "message_id": "e49ee668-fe22-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T22:00:49.315000", "message_id": "7d2a60a0-fe1a-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T21:00:40.430000", "message_id": "160737c0-fe12-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T20:00:32.393000", "message_id": "af7289f4-fe09-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T19:00:24.309000", "message_id": "492e8b82-fe01-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T18:00:16.172000", "message_id": "e243b51c-fdf8-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T17:00:08.261000", "message_id": "7bad8308-fdf0-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T16:00:00.185000", "message_id": "152cabf2-fde8-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T15:00:53.732000", "message_id": "d35445d0-fddf-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T15:00:53.732000", "message_id": "d35445d0-fddf-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T14:00:45.870000", "message_id": "6ce77568-fdd7-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T13:00:37.686000", "message_id": "063da088-fdcf-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T13:00:37.686000", "message_id": "063da088-fdcf-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T12:00:29.501000", "message_id": "9f9c4a9e-fdc6-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T11:00:21.487000", "message_id": "391436cc-fdbe-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T10:00:13.228000", "message_id": "d262cbe4-fdb5-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T09:00:05.310000", "message_id": "6be059f2-fdad-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T08:00:58.686000", "message_id": "29d568a2-fda5-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T07:00:50.560000", "message_id": "c34cc650-fd9c-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T06:00:42.385000", "message_id": "5cabc142-fd94-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T05:17:47.006000", "message_id": "5da0d7f0-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.create.end", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "message": "Success", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.616662", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "image_name": "cirros-0.3.1-x86_64-uec", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T05:17:47.006000", "message_id": "5da0d7f0-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.create.end", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "message": "Success", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.616662", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "image_name": "cirros-0.3.1-x86_64-uec", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T05:17:47.006000", "message_id": "5da0d7f0-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.create.end", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "message": "Success", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.616662", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "image_name": "cirros-0.3.1-x86_64-uec", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T05:17:46.789000", "message_id": "5d83564e-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.update", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "old_state": "building", "old_task_state": "spawning", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05T05:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 05:17:36", "launched_at": "2013-08-05T05:17:46.616662", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "None", "audit_period_ending": "2013-08-05T05:17:46.683739", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T05:17:46.789000", "message_id": "5d83564e-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.update", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "old_state": "building", "old_task_state": "spawning", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05T05:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 05:17:36", "launched_at": "2013-08-05T05:17:46.616662", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "None", "audit_period_ending": "2013-08-05T05:17:46.683739", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T05:17:46.789000", "message_id": "5d83564e-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.update", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "old_state": "building", "old_task_state": "spawning", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05T05:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 05:17:36", "launched_at": "2013-08-05T05:17:46.616662", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "None", "audit_period_ending": "2013-08-05T05:17:46.683739", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T05:17:46.789000", "message_id": "5d83564e-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.update", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "old_state": "building", "old_task_state": "spawning", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05T05:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 05:17:36", "launched_at": "2013-08-05T05:17:46.616662", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "None", "audit_period_ending": "2013-08-05T05:17:46.683739", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T05:17:42.061000", "message_id": "5a955a90-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "spawning", "event_type": "compute.instance.update", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "building", "old_state": "None", "old_task_state": "None", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05T05:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 05:17:36", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "spawning", "audit_period_ending": "2013-08-05T05:17:42.040523", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T05:17:39.752000", "message_id": "593acd60-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "spawning", "event_type": "compute.instance.update", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "building", "old_state": "building", "old_task_state": "block_device_mapping", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05T05:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 05:17:36", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "spawning", "audit_period_ending": "2013-08-05T05:17:39.719445", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T05:17:39.752000", "message_id": "593acd60-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "spawning", "event_type": "compute.instance.update", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "building", "old_state": "building", "old_task_state": "block_device_mapping", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05T05:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 05:17:36", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "spawning", "audit_period_ending": "2013-08-05T05:17:39.719445", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T05:17:38.988000", "message_id": "58f51342-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "block_device_mapping", "event_type": "compute.instance.update", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "building", "old_state": "building", "old_task_state": "networking", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05T05:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 05:17:36", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "block_device_mapping", "audit_period_ending": "2013-08-05T05:17:38.891624", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T05:17:38.324000", "message_id": "58c64ac6-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "networking", "event_type": "compute.instance.update", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "building", "old_state": "building", "old_task_state": "None", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05T05:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 05:17:36", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "networking", "audit_period_ending": "2013-08-05T05:17:38.306231", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T05:17:38.324000", "message_id": "58c64ac6-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "networking", "event_type": "compute.instance.update", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "building", "old_state": "building", "old_task_state": "None", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05T05:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 05:17:36", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "networking", "audit_period_ending": "2013-08-05T05:17:38.306231", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T05:17:38.324000", "message_id": "58c64ac6-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "networking", "event_type": "compute.instance.update", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "building", "old_state": "building", "old_task_state": "None", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05T05:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 05:17:36", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "networking", "audit_period_ending": "2013-08-05T05:17:38.306231", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T05:17:38.324000", "message_id": "58c64ac6-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "networking", "event_type": "compute.instance.update", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "building", "old_state": "building", "old_task_state": "None", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05T05:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 05:17:36", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "networking", "audit_period_ending": "2013-08-05T05:17:38.306231", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T05:17:38.154000", "message_id": "58b325f4-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.update", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "building", "old_state": "None", "old_task_state": "None", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05T05:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 05:17:36", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "None", "audit_period_ending": "2013-08-05T05:17:38.148291", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T05:17:37.667000", "message_id": "585c2f74-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "scheduling", "event_type": "compute.instance.create.start", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "message": "", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "building", "launched_at": "", "node": "None", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "image_name": "cirros-0.3.1-x86_64-uec", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T05:17:37.558000", "message_id": "583c2968-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.update", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "building", "old_state": "building", "old_task_state": "scheduling", "node": "None", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05T05:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 05:17:36", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "None", "audit_period_ending": "2013-08-05T05:17:37.556043", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "timestamp": "2013-08-05T05:17:36.990000", "message_id": "578c5056-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "scheduling", "event_type": "compute.instance.update", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "building", "old_state": "None", "old_task_state": "None", "node": "None", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "api.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05T05:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 05:17:36", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "scheduling", "audit_period_ending": "2013-08-05T05:17:36.988438", "os_type": "None"}, "counter_type": "gauge"}]} \ No newline at end of file diff --git a/tests/data/map_fixture_25.json b/tests/data/map_fixture_25.json new file mode 100644 index 0000000..0ae2f5c --- /dev/null +++ b/tests/data/map_fixture_25.json @@ -0,0 +1 @@ +{"http://localhost:8777/v2/meters/image?q.field=resource_id&q.value=e58bf75a-35e9-4709-9eab-885438f36a34": [{"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-12T04:01:18", "message_id": "d74bd30a-0303-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-12T03:51:18", "message_id": "719efe52-0302-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-12T03:41:18", "message_id": "0bee1be8-0301-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-12T03:31:18", "message_id": "a64f2ca6-02ff-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-12T03:21:18", "message_id": "409ebc10-02fe-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-12T03:11:17", "message_id": "daf55d8e-02fc-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-12T03:01:17", "message_id": "7538ca7c-02fb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-12T02:51:17", "message_id": "0f96c580-02fa-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-12T02:41:17", "message_id": "a9d3596c-02f8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-12T02:31:17", "message_id": "44337606-02f7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-12T02:21:17", "message_id": "de7cb3c8-02f5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-12T02:11:17", "message_id": "78ceede4-02f4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-12T02:01:17", "message_id": "1323ab52-02f3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-12T01:51:17", "message_id": "ad7844b2-02f1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-12T01:41:17", "message_id": "47c17202-02f0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-12T01:31:16", "message_id": "e2186d6c-02ee-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-12T01:21:16", "message_id": "7c6293a4-02ed-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-12T01:11:16", "message_id": "16b851c0-02ec-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-12T01:01:16", "message_id": "b0fae416-02ea-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-12T00:51:16", "message_id": "4b56817a-02e9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-12T00:41:16", "message_id": "e59e5c78-02e7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-12T00:31:16", "message_id": "7fef97ee-02e6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-12T00:21:16", "message_id": "1a6a98de-02e5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-12T00:11:16", "message_id": "b49479ae-02e3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-12T00:01:16", "message_id": "4ee4b318-02e2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T23:51:16", "message_id": "e93a9952-02e0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T23:41:15", "message_id": "8395d072-02df-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T23:31:15", "message_id": "1deac580-02de-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T23:21:15", "message_id": "b8303a50-02dc-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T23:11:15", "message_id": "528ab276-02db-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T23:01:15", "message_id": "ed07e6a4-02d9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T22:51:15", "message_id": "872d8a42-02d8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T22:41:15", "message_id": "217c2542-02d7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T22:31:15", "message_id": "bbcf9bd0-02d5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T22:21:15", "message_id": "561de8ba-02d4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T22:11:15", "message_id": "f06cfa2a-02d2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T22:01:15", "message_id": "8ac325c4-02d1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T21:51:15", "message_id": "251a9500-02d0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T21:41:14", "message_id": "bf6e6584-02ce-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T21:31:14", "message_id": "59bc25e2-02cd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T21:21:14", "message_id": "f410c794-02cb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T21:11:14", "message_id": "8e60ce72-02ca-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T21:01:14", "message_id": "28b0939c-02c9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T20:51:14", "message_id": "c303bb10-02c7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T20:41:14", "message_id": "5d51ce02-02c6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T20:31:14", "message_id": "f7a6b492-02c4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T20:21:14", "message_id": "91fbf248-02c3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T20:11:14", "message_id": "2c567b30-02c2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T20:01:14", "message_id": "c6a08084-02c0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T19:51:14", "message_id": "60f7f20e-02bf-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T19:41:13", "message_id": "fb4226f6-02bd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T19:31:13", "message_id": "959baf26-02bc-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T19:21:13", "message_id": "2feabc22-02bb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T19:11:13", "message_id": "ca36af18-02b9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T19:01:13", "message_id": "64818ca2-02b8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T18:51:13", "message_id": "fed19826-02b6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T18:41:13", "message_id": "992566f2-02b5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T18:31:13", "message_id": "3374b994-02b4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T18:21:13", "message_id": "cdc4a736-02b2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T18:11:13", "message_id": "681836ba-02b1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T18:01:12", "message_id": "02655bfa-02b0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T17:51:12", "message_id": "9cbb8afa-02ae-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T17:41:12", "message_id": "370a24c4-02ad-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T17:31:12", "message_id": "d15f9556-02ab-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T17:21:12", "message_id": "6bab886a-02aa-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T17:11:12", "message_id": "05fca5fe-02a9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T17:01:12", "message_id": "a05e1d32-02a7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T16:51:12", "message_id": "3aad73a8-02a6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T16:41:12", "message_id": "d50a7e84-02a4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T16:31:12", "message_id": "6f53770e-02a3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T16:21:12", "message_id": "099dbdf8-02a2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T16:11:11", "message_id": "a3f2ec7c-02a0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T16:01:11", "message_id": "3e4fef88-029f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T15:51:11", "message_id": "d89ed740-029d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T15:41:11", "message_id": "72fd154c-029c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T15:31:11", "message_id": "0d581fd0-029b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T15:21:11", "message_id": "a7b7e74c-0299-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T15:11:11", "message_id": "42011262-0298-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T15:01:11", "message_id": "dc507fc6-0296-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T14:51:11", "message_id": "769be4d2-0295-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T14:41:11", "message_id": "10ef4936-0294-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T14:31:11", "message_id": "ab3f5320-0292-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T14:21:11", "message_id": "458e3ccc-0291-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T14:11:11", "message_id": "dfe001fe-028f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T14:01:11", "message_id": "7a3b2a96-028e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T13:51:10", "message_id": "148e8ba8-028d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T13:41:10", "message_id": "aedfd33a-028b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T13:31:10", "message_id": "4933a3b4-028a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T13:21:10", "message_id": "e381d1c2-0288-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T13:11:10", "message_id": "7ddaaca0-0287-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T13:01:10", "message_id": "183110c0-0286-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T12:51:10", "message_id": "b278b310-0284-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T12:41:10", "message_id": "4cce4bf2-0283-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T12:31:10", "message_id": "e719eeb6-0281-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T12:21:10", "message_id": "8169e748-0280-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T12:11:10", "message_id": "1bbca54e-027f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T12:01:09", "message_id": "b6097a52-027d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T11:51:09", "message_id": "506343a0-027c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T11:41:09", "message_id": "eaa671b4-027a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T11:31:09", "message_id": "84fc4d4e-0279-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T11:21:09", "message_id": "1f4b2d4a-0278-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T11:11:09", "message_id": "b99d0906-0276-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T11:01:09", "message_id": "53ef354e-0275-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T10:51:09", "message_id": "ee3c2334-0273-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T10:41:09", "message_id": "88927c5a-0272-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T10:31:09", "message_id": "22e2779e-0271-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T10:21:08", "message_id": "bd30b2f4-026f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T10:11:09", "message_id": "579215f6-026e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T10:01:08", "message_id": "f1de6efe-026c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T09:51:08", "message_id": "8c2fa024-026b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T09:41:08", "message_id": "267e5c26-026a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T09:31:08", "message_id": "c0d4f2fa-0268-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T09:21:08", "message_id": "5b254f1e-0267-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T09:11:08", "message_id": "f57ddc5e-0265-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T09:01:08", "message_id": "8fcbd9f2-0264-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T08:51:08", "message_id": "2a296ae8-0263-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T08:41:08", "message_id": "c47eb7b2-0261-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T08:31:08", "message_id": "5ed27a44-0260-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T08:21:08", "message_id": "f9188fdc-025e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T08:11:07", "message_id": "9369dbf6-025d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T08:01:07", "message_id": "2dbd3c86-025c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T07:51:07", "message_id": "c80d4774-025a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T07:41:07", "message_id": "625fac6a-0259-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T07:31:07", "message_id": "fcb64654-0257-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T07:21:07", "message_id": "97054504-0256-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T07:11:07", "message_id": "314dc14c-0255-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T07:01:07", "message_id": "cba62de4-0253-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T06:51:07", "message_id": "65f7b158-0252-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T06:41:07", "message_id": "0046be0e-0251-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T06:31:07", "message_id": "9a9931aa-024f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T06:21:07", "message_id": "34f7ca10-024e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T06:11:06", "message_id": "cf43dd18-024c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T06:01:06", "message_id": "69a9d832-024b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T05:51:06", "message_id": "03eccadc-024a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T05:41:06", "message_id": "9e3f63f8-0248-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T05:31:06", "message_id": "38891bfe-0247-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T05:21:06", "message_id": "d2d795ac-0245-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T05:11:06", "message_id": "6d24e4fe-0244-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T05:01:06", "message_id": "077bb084-0243-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T04:51:06", "message_id": "a1d37f7e-0241-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T04:41:06", "message_id": "3c216ffc-0240-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T04:31:06", "message_id": "d6759dc8-023e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T04:21:05", "message_id": "70cd0ee4-023d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T04:11:05", "message_id": "0b13835e-023c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T04:01:05", "message_id": "a56cd9de-023a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T03:51:05", "message_id": "3fbed732-0239-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T03:41:05", "message_id": "da191060-0237-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T03:31:05", "message_id": "745f3278-0236-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T03:21:05", "message_id": "0ead9f24-0235-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T03:11:05", "message_id": "a90107ca-0233-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T03:01:05", "message_id": "434b81fe-0232-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T02:51:05", "message_id": "dd9877b4-0230-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T02:41:04", "message_id": "77e1b4ea-022f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T02:31:04", "message_id": "123cadf8-022e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T02:21:04", "message_id": "ac88d79e-022c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T02:11:04", "message_id": "46dcc780-022b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T02:01:04", "message_id": "e1358012-0229-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T01:51:04", "message_id": "7b821326-0228-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T01:41:04", "message_id": "15e2d2d6-0227-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T01:31:04", "message_id": "b0310a44-0225-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T01:21:04", "message_id": "4a6bf3be-0224-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T01:11:04", "message_id": "e4bbad62-0222-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T01:01:04", "message_id": "7f1849a8-0221-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T00:51:03", "message_id": "19608018-0220-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T00:41:03", "message_id": "b3b3dfcc-021e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T00:31:03", "message_id": "4e0645b2-021d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T00:21:03", "message_id": "e8547be0-021b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T00:11:03", "message_id": "82a58ace-021a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T00:01:03", "message_id": "1cf9448c-0219-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T23:51:03", "message_id": "b74ac1e8-0217-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T23:41:03", "message_id": "519a931a-0216-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T23:31:03", "message_id": "ebf0bb1c-0214-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T23:21:03", "message_id": "8646b344-0213-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T23:11:03", "message_id": "2090c70c-0212-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T23:01:03", "message_id": "bb21fbd0-0210-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T22:51:02", "message_id": "5546141e-020f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T22:41:07", "message_id": "f23c375a-020d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T22:31:02", "message_id": "89f11342-020c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T22:21:02", "message_id": "243aa492-020b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T22:11:02", "message_id": "be99a8c8-0209-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T22:01:02", "message_id": "58d7a5f4-0208-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T21:51:02", "message_id": "f341aa06-0206-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T21:41:02", "message_id": "8d8d51de-0205-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T21:31:02", "message_id": "27d9dd0e-0204-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T21:21:02", "message_id": "c23ab1b8-0202-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T21:11:02", "message_id": "5c85ebc2-0201-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T21:01:02", "message_id": "f6cb6f1a-01ff-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T20:51:02", "message_id": "913a09dc-01fe-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T20:41:01", "message_id": "2b79d34e-01fd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T20:31:01", "message_id": "c5def100-01fb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T20:21:01", "message_id": "60185e3e-01fa-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T20:11:01", "message_id": "fa5cc3e2-01f8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T20:01:01", "message_id": "94ba33ea-01f7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T19:51:01", "message_id": "2f065cb4-01f6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T19:41:01", "message_id": "c958fc9c-01f4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T19:31:01", "message_id": "63b8410a-01f3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T19:21:01", "message_id": "fdee0dd8-01f1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T19:11:01", "message_id": "984d8996-01f0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T19:01:00", "message_id": "329d33f4-01ef-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T18:51:00", "message_id": "cce18160-01ed-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T18:41:00", "message_id": "67447a70-01ec-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T18:31:00", "message_id": "0191a03c-01eb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T18:21:00", "message_id": "9be005ea-01e9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T18:11:00", "message_id": "362bbeb6-01e8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T18:01:00", "message_id": "d07c8a74-01e6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T17:51:00", "message_id": "6ad46292-01e5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T17:41:00", "message_id": "052ab58c-01e4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T17:31:00", "message_id": "9f7508c4-01e2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T17:21:00", "message_id": "39ca0a70-01e1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T17:10:59", "message_id": "d414a2ae-01df-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T17:00:59", "message_id": "6e66253c-01de-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T16:50:59", "message_id": "08bbd39a-01dd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T16:40:59", "message_id": "a307517e-01db-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T16:30:59", "message_id": "3d5de136-01da-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T16:20:59", "message_id": "d7a883ce-01d8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T16:10:59", "message_id": "72027738-01d7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T16:00:59", "message_id": "0c54dbde-01d6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T15:50:59", "message_id": "a6aa32bc-01d4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T15:40:59", "message_id": "4106f022-01d3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T15:30:59", "message_id": "db5779c8-01d1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T15:20:59", "message_id": "75aa9a70-01d0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T15:10:58", "message_id": "0ffa3d62-01cf-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T15:00:58", "message_id": "aa4d0c84-01cd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T14:50:58", "message_id": "44a3ff06-01cc-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T14:40:58", "message_id": "dee7a344-01ca-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T14:30:58", "message_id": "7934084a-01c9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T14:20:58", "message_id": "1384238c-01c8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T14:10:58", "message_id": "add967aa-01c6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T14:00:58", "message_id": "48326dbc-01c5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T13:50:58", "message_id": "e281fff6-01c3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T13:40:58", "message_id": "7ccaf3bc-01c2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T13:30:58", "message_id": "17275830-01c1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T13:20:57", "message_id": "b16ea9c2-01bf-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T13:10:57", "message_id": "4bc240f8-01be-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T13:00:57", "message_id": "e61837b8-01bc-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T12:50:57", "message_id": "80626a8e-01bb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T12:40:57", "message_id": "1ab88f52-01ba-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T12:30:57", "message_id": "b5109a1a-01b8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T12:20:57", "message_id": "4f61f020-01b7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T12:10:57", "message_id": "e9bae7b4-01b5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T12:00:57", "message_id": "8408996c-01b4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T11:50:57", "message_id": "1e599284-01b3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T11:40:57", "message_id": "b8ad1164-01b1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T11:30:56", "message_id": "52f781de-01b0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T11:20:56", "message_id": "ed4934c8-01ae-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T11:10:56", "message_id": "87ace390-01ad-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T11:00:56", "message_id": "21e3fdc4-01ac-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T10:50:56", "message_id": "bc49cde6-01aa-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T10:40:56", "message_id": "569b34f4-01a9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T10:30:56", "message_id": "f0f27d84-01a7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T10:20:56", "message_id": "8b395fcc-01a6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T10:10:56", "message_id": "2595c1ca-01a5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T10:00:56", "message_id": "bfe9160c-01a3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T09:50:56", "message_id": "5a31d552-01a2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T09:40:56", "message_id": "f486afb2-01a0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T09:30:55", "message_id": "8ee54fca-019f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T09:20:55", "message_id": "292af082-019e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T09:10:55", "message_id": "c3805f20-019c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T09:00:55", "message_id": "5de900f0-019b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T08:50:55", "message_id": "f822516e-0199-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T08:40:55", "message_id": "92839184-0198-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T08:30:55", "message_id": "2cb8ce6a-0197-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T08:20:55", "message_id": "c71797ea-0195-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T08:10:55", "message_id": "6159bad8-0194-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T08:00:55", "message_id": "fbad8008-0192-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T07:50:55", "message_id": "960fad62-0191-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T07:40:55", "message_id": "30653082-0190-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T07:30:54", "message_id": "cab16a40-018e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T07:20:54", "message_id": "65077ed8-018d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T07:10:54", "message_id": "ff585662-018b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T07:00:54", "message_id": "99a606a8-018a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T06:50:54", "message_id": "33fb7ff0-0189-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T06:40:54", "message_id": "ce4f0a2e-0187-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T06:30:54", "message_id": "68a46328-0186-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T06:20:54", "message_id": "02f15690-0185-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T06:10:54", "message_id": "9d3c2e7a-0183-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T06:00:54", "message_id": "378b16f0-0182-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T05:50:54", "message_id": "d1e54862-0180-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T05:40:53", "message_id": "6c36b326-017f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T05:30:53", "message_id": "067db0bc-017e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T05:20:53", "message_id": "a0d6c9c0-017c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T05:10:53", "message_id": "3b28afb8-017b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T05:00:53", "message_id": "d583fd26-0179-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T04:50:53", "message_id": "6fc7d116-0178-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T04:40:53", "message_id": "0a15f736-0177-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T04:30:53", "message_id": "a466fb66-0175-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T04:20:53", "message_id": "3eb85e3c-0174-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T04:10:53", "message_id": "d90994e4-0172-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T04:00:53", "message_id": "73652550-0171-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T03:50:52", "message_id": "0db525d0-0170-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T03:40:52", "message_id": "a80a5238-016e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T03:30:52", "message_id": "425bed08-016d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T03:20:52", "message_id": "dcabf68e-016b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T03:10:52", "message_id": "76fdce1c-016a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T03:00:52", "message_id": "1150e67c-0169-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T02:50:52", "message_id": "aba1313e-0167-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T02:40:52", "message_id": "45eee1ca-0166-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T02:30:52", "message_id": "e0405486-0164-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T02:20:52", "message_id": "7a9effa2-0163-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T02:10:52", "message_id": "14f3867e-0162-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T02:00:51", "message_id": "af3f3e64-0160-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T01:50:52", "message_id": "49b24420-015f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T01:40:51", "message_id": "e3f5908e-015d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T01:30:51", "message_id": "7e409dc0-015c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T01:20:51", "message_id": "18a12d14-015b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T01:10:51", "message_id": "b2f1b9e4-0159-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T01:00:51", "message_id": "4d49263c-0158-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T00:50:51", "message_id": "e76f80dc-0156-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T00:40:51", "message_id": "81cd7cd0-0155-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T00:30:51", "message_id": "1c19e94c-0154-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T00:20:51", "message_id": "b666a1ea-0152-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T00:10:50", "message_id": "50c04b12-0151-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T00:00:50", "message_id": "eb0fc69a-014f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T23:50:50", "message_id": "855c2fce-014e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T23:40:50", "message_id": "1faa687c-014d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T23:30:50", "message_id": "b9f49de6-014b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T23:20:50", "message_id": "545374ae-014a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T23:10:50", "message_id": "eea1b1f8-0148-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T23:00:50", "message_id": "891cb022-0147-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T22:50:50", "message_id": "2345947c-0146-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T22:40:50", "message_id": "bd8f1b68-0144-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T22:30:50", "message_id": "57e4c34a-0143-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T22:20:50", "message_id": "f246dc18-0141-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T22:10:49", "message_id": "8c84df5c-0140-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T22:00:49", "message_id": "26e0e534-013f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T21:50:49", "message_id": "c1366c5a-013d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T21:40:49", "message_id": "5b875564-013c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T21:30:49", "message_id": "f5e11dcc-013a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T21:20:49", "message_id": "9033531a-0139-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T21:10:49", "message_id": "2a8bdf60-0138-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T21:00:49", "message_id": "c4e20c12-0136-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T20:50:49", "message_id": "5f3077ce-0135-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T20:40:49", "message_id": "f9867e56-0133-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T20:30:49", "message_id": "93cb577c-0132-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T20:20:49", "message_id": "2e32be7e-0131-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T20:10:48", "message_id": "c878d8ee-012f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T20:00:48", "message_id": "62c2b41c-012e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T19:50:48", "message_id": "fd21088a-012c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T19:40:48", "message_id": "9769b40c-012b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T19:30:48", "message_id": "31c3fd02-012a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T19:20:48", "message_id": "cc2226aa-0128-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T19:10:48", "message_id": "6667bfb0-0127-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T19:00:48", "message_id": "00b05304-0126-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T18:50:48", "message_id": "9af96e34-0124-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T18:40:48", "message_id": "35509a68-0123-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T18:30:48", "message_id": "cf9fbea2-0121-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T18:20:47", "message_id": "69ed73d4-0120-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T18:10:47", "message_id": "043c5de4-011f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T18:00:47", "message_id": "9e892884-011d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T17:50:47", "message_id": "38df8074-011c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T17:40:47", "message_id": "d32d5496-011a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T17:30:47", "message_id": "6d7d1056-0119-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T17:20:47", "message_id": "07d19df4-0118-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T17:10:47", "message_id": "a21f985e-0116-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T17:00:47", "message_id": "3c74d088-0115-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T16:50:47", "message_id": "d6c02766-0113-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T16:40:46", "message_id": "711154fe-0112-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T16:30:46", "message_id": "0b72f34c-0111-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T16:20:46", "message_id": "a5b8f282-010f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T16:10:46", "message_id": "40115268-010e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T16:00:46", "message_id": "da609f42-010c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T15:50:48", "message_id": "7605a980-010b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T15:40:46", "message_id": "0f57a144-010a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T15:30:46", "message_id": "a9720410-0108-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T15:20:46", "message_id": "43ac8c32-0107-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T15:10:46", "message_id": "de115160-0105-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T15:00:46", "message_id": "7853ee92-0104-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T14:50:46", "message_id": "12a83af4-0103-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T14:40:45", "message_id": "acf70754-0101-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T14:30:45", "message_id": "47445534-0100-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T14:20:45", "message_id": "e199864c-00fe-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T14:10:45", "message_id": "7bf2b9d6-00fd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T14:00:45", "message_id": "1637337a-00fc-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T13:50:45", "message_id": "b0917964-00fa-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T13:40:45", "message_id": "4ad73312-00f9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T13:30:45", "message_id": "e52caca0-00f7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T13:20:45", "message_id": "7fc96e8a-00f6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T13:10:45", "message_id": "19c495d4-00f5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T13:00:45", "message_id": "b41eaf40-00f3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T12:50:44", "message_id": "4e67013a-00f2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T12:40:44", "message_id": "e8c038ac-00f0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T12:30:44", "message_id": "8314cd48-00ef-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T12:20:44", "message_id": "1d60f0ea-00ee-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T12:10:44", "message_id": "b7b3be40-00ec-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T12:00:44", "message_id": "5206e064-00eb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T11:50:44", "message_id": "ec56014c-00e9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T11:40:44", "message_id": "86a6f618-00e8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T11:30:44", "message_id": "2100e96e-00e7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T11:20:44", "message_id": "bb4e2236-00e5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T11:10:44", "message_id": "55a4a1fe-00e4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T11:00:43", "message_id": "efed2f3a-00e2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T10:50:43", "message_id": "8a413a42-00e1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T10:40:43", "message_id": "248eade8-00e0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T10:30:43", "message_id": "bee6e952-00de-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T10:20:43", "message_id": "592ecf54-00dd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T10:10:43", "message_id": "f3859a6c-00db-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T10:00:43", "message_id": "8de96f04-00da-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T09:50:43", "message_id": "2829d006-00d9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T09:40:43", "message_id": "c2800d34-00d7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T09:30:43", "message_id": "5cd14e72-00d6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T09:20:43", "message_id": "f72593cc-00d4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T09:10:43", "message_id": "917b0080-00d3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T09:00:42", "message_id": "2bcbac90-00d2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T08:50:42", "message_id": "c618f872-00d0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T08:40:42", "message_id": "606ce886-00cf-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T08:30:42", "message_id": "fac6771e-00cd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T08:20:42", "message_id": "951780b2-00cc-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T08:10:42", "message_id": "2f62ff86-00cb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T08:00:42", "message_id": "c9b21b96-00c9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T07:50:42", "message_id": "64038222-00c8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T07:40:42", "message_id": "fe66682c-00c6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T07:30:42", "message_id": "98ad0848-00c5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T07:20:41", "message_id": "32f4e738-00c4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T07:10:41", "message_id": "cd442b20-00c2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T07:00:41", "message_id": "67993c26-00c1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T06:50:41", "message_id": "01e5a37a-00c0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T06:40:41", "message_id": "9c3b7636-00be-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T06:30:41", "message_id": "368fb0aa-00bd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T06:20:41", "message_id": "d0d968ce-00bb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T06:10:41", "message_id": "6b2dfd24-00ba-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T06:00:41", "message_id": "058d19ec-00b9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T05:50:41", "message_id": "9fd6ea0c-00b7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T05:40:41", "message_id": "3a2c5a1c-00b6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T05:30:41", "message_id": "d47a7524-00b4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T05:20:40", "message_id": "6eccd4a2-00b3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T05:10:40", "message_id": "091f6c06-00b2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T05:00:40", "message_id": "a375bdd4-00b0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T04:50:40", "message_id": "3dd4b4d6-00af-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T04:40:40", "message_id": "d82cc714-00ad-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T04:30:40", "message_id": "727db5b4-00ac-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T04:20:40", "message_id": "0cda7112-00ab-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T04:10:40", "message_id": "a73635b8-00a9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T04:00:40", "message_id": "419c5c7e-00a8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T03:50:40", "message_id": "dc25df74-00a6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T03:40:40", "message_id": "763d38de-00a5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T03:30:40", "message_id": "10b5b8e8-00a4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T03:20:40", "message_id": "aae95368-00a2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T03:10:40", "message_id": "453bda78-00a1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T03:00:40", "message_id": "df98ee3c-009f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T02:50:40", "message_id": "79decb4e-009e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T02:40:40", "message_id": "145815d8-009d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T02:30:39", "message_id": "ae85ea88-009b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T02:20:39", "message_id": "48da08a0-009a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T02:10:39", "message_id": "e32019ec-0098-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T02:00:39", "message_id": "7d811dc6-0097-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T01:50:39", "message_id": "17bbee40-0096-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T01:40:39", "message_id": "b20a7054-0094-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T01:30:39", "message_id": "4c5e3304-0093-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T01:20:39", "message_id": "e6b68354-0091-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T01:10:39", "message_id": "8101ccf4-0090-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T01:00:39", "message_id": "1b5c12b6-008f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T00:50:38", "message_id": "b5a6f05e-008d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T00:40:38", "message_id": "4ff137ca-008c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T00:30:38", "message_id": "ea4d4054-008a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T00:20:38", "message_id": "84a7b1c2-0089-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T00:10:38", "message_id": "1ef39e28-0088-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T00:00:38", "message_id": "b943a376-0086-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T23:50:38", "message_id": "538e1d82-0085-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T23:40:38", "message_id": "ede618dc-0083-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T23:30:38", "message_id": "8832a556-0082-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T23:20:38", "message_id": "227d58ec-0081-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T23:10:38", "message_id": "bcd47fb2-007f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T23:00:38", "message_id": "57524602-007e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T22:50:37", "message_id": "f176f9be-007c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T22:40:37", "message_id": "8bcec73c-007b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T22:30:37", "message_id": "2611b446-007a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T22:20:37", "message_id": "c06a98c0-0078-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T22:10:37", "message_id": "5abc73be-0077-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T22:00:37", "message_id": "f50c524c-0075-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T21:50:37", "message_id": "8f5e7ba6-0074-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T21:40:37", "message_id": "29b3ff66-0073-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T21:30:37", "message_id": "c4067780-0071-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T21:20:37", "message_id": "5e63ea76-0070-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T21:10:36", "message_id": "f8acf80e-006e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T21:00:36", "message_id": "92f3fbb2-006d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T20:50:36", "message_id": "2d476f3e-006c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T20:40:36", "message_id": "c7978fda-006a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T20:30:36", "message_id": "61ef89fe-0069-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T20:20:36", "message_id": "fc38aa1a-0067-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T20:10:36", "message_id": "9694a57a-0066-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T20:00:36", "message_id": "30dac54e-0065-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T19:50:36", "message_id": "cb318198-0063-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T19:40:36", "message_id": "6580f622-0062-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T19:30:35", "message_id": "ffcf239a-0060-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T19:20:35", "message_id": "9a1f832e-005f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T19:10:35", "message_id": "34724f12-005e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T19:00:35", "message_id": "cec6908e-005c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T18:50:35", "message_id": "69133a72-005b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T18:40:35", "message_id": "036566f6-005a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T18:30:35", "message_id": "9dc43b7a-0058-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T18:20:35", "message_id": "3805ddd0-0057-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T18:10:35", "message_id": "d25c6770-0055-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T18:00:35", "message_id": "6cb346f6-0054-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T17:50:35", "message_id": "070745ce-0053-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T17:40:35", "message_id": "a15ea9c0-0051-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T17:30:35", "message_id": "3bb0d2ca-0050-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T17:20:34", "message_id": "d60082dc-004e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T17:10:34", "message_id": "7050e518-004d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T17:00:34", "message_id": "0a9f9ae4-004c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T16:50:34", "message_id": "a4f246fc-004a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T16:40:34", "message_id": "3f4eb8ea-0049-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T16:30:34", "message_id": "d99d18c6-0047-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T16:20:34", "message_id": "73f31a58-0046-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T16:10:34", "message_id": "0e421570-0045-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T16:00:34", "message_id": "a89948a2-0043-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T15:50:34", "message_id": "42eb7968-0042-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T15:40:34", "message_id": "dd378108-0040-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T15:30:33", "message_id": "778b98fe-003f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T15:20:33", "message_id": "11e14748-003e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T15:10:33", "message_id": "ac3385c4-003c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T15:00:33", "message_id": "467e3270-003b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T14:50:33", "message_id": "e0d3e1be-0039-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T14:40:33", "message_id": "7b1f6ad8-0038-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T14:30:33", "message_id": "1576caa6-0037-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T14:20:33", "message_id": "afc51cb8-0035-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T14:10:33", "message_id": "4a241e00-0034-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T14:00:33", "message_id": "e48fa696-0032-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T13:50:33", "message_id": "7eb93f9a-0031-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T13:40:32", "message_id": "190e0974-0030-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T13:30:32", "message_id": "b3638776-002e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T13:20:32", "message_id": "4dba776e-002d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T13:10:32", "message_id": "e8073d86-002b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T13:00:32", "message_id": "825602c0-002a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T12:50:32", "message_id": "1cacba3c-0029-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T12:40:32", "message_id": "b6f49828-0027-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T12:30:32", "message_id": "514ed7be-0026-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T12:20:32", "message_id": "eb9572b2-0024-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T12:10:32", "message_id": "85e21e8a-0023-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T12:00:32", "message_id": "203b8c48-0022-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T11:50:31", "message_id": "ba8b5cf8-0020-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T11:40:32", "message_id": "54f14d36-001f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T11:30:31", "message_id": "ef45e902-001d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T11:20:31", "message_id": "898cbdbc-001c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T11:10:31", "message_id": "23f06d10-001b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T11:00:31", "message_id": "be390582-0019-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T10:50:31", "message_id": "588f7366-0018-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T10:40:31", "message_id": "f2e95d8e-0016-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T10:30:31", "message_id": "8d415564-0015-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T10:20:31", "message_id": "27988daa-0014-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T10:10:31", "message_id": "c200ba22-0012-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T10:00:31", "message_id": "5c2e726c-0011-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T09:50:31", "message_id": "f67dda30-000f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T09:40:30", "message_id": "90ca255a-000e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T09:30:30", "message_id": "2b2330e4-000d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T09:20:30", "message_id": "c56d3bd8-000b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T09:10:30", "message_id": "5fbb731e-000a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T09:00:30", "message_id": "fa130014-0008-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T08:50:30", "message_id": "9466c918-0007-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T08:40:30", "message_id": "2ebb2ae2-0006-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T08:30:30", "message_id": "c9169a4c-0004-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T08:20:30", "message_id": "635b2bd8-0003-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T08:10:30", "message_id": "fdbc4204-0001-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T08:00:30", "message_id": "9802da78-0000-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T07:50:30", "message_id": "324f29a8-ffff-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T07:40:29", "message_id": "cca21d46-fffd-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T07:30:29", "message_id": "66f28536-fffc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T07:20:29", "message_id": "0149fea4-fffb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T07:10:29", "message_id": "9b958282-fff9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T07:00:29", "message_id": "35e03c30-fff8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T06:50:29", "message_id": "d03dd38e-fff6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T06:40:29", "message_id": "6a87a296-fff5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T06:30:29", "message_id": "04d68224-fff4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T06:20:29", "message_id": "9f26c1ce-fff2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T06:10:29", "message_id": "397b1bc8-fff1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T06:00:29", "message_id": "d3d1032e-ffef-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T05:50:28", "message_id": "6e2399d4-ffee-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T05:40:28", "message_id": "087ef8b8-ffed-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T05:30:28", "message_id": "a2cc3f22-ffeb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T05:20:28", "message_id": "3d15f124-ffea-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T05:10:28", "message_id": "d76b0568-ffe8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T05:00:28", "message_id": "71be30e2-ffe7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T04:50:28", "message_id": "0c06276a-ffe6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T04:40:28", "message_id": "a6631270-ffe4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T04:30:28", "message_id": "40a98ed8-ffe3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T04:20:28", "message_id": "db031ece-ffe1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T04:10:28", "message_id": "754e5bb2-ffe0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T04:00:27", "message_id": "0f9bf370-ffdf-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T03:50:27", "message_id": "a9e91f04-ffdd-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T03:40:27", "message_id": "443f156a-ffdc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T03:30:27", "message_id": "de91a92c-ffda-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T03:20:27", "message_id": "78e13602-ffd9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T03:10:27", "message_id": "13362d36-ffd8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T03:00:27", "message_id": "ad8357bc-ffd6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T02:50:27", "message_id": "47d4638a-ffd5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T02:40:27", "message_id": "e22210e2-ffd3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T02:30:27", "message_id": "7c786616-ffd2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T02:20:27", "message_id": "16d6c196-ffd1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T02:10:26", "message_id": "b110cfc4-ffcf-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T02:00:26", "message_id": "4b694f80-ffce-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T01:50:26", "message_id": "e5b7cc9e-ffcc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T01:40:26", "message_id": "800a548a-ffcb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T01:30:26", "message_id": "1a5835ae-ffca-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T01:20:26", "message_id": "b4afaa12-ffc8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T01:10:26", "message_id": "4f03a642-ffc7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T01:00:26", "message_id": "e955d46a-ffc5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T00:50:26", "message_id": "83a7b8a0-ffc4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T00:40:26", "message_id": "1dfd52ea-ffc3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T00:30:26", "message_id": "b84a5a98-ffc1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T00:20:26", "message_id": "52e8c582-ffc0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T00:10:25", "message_id": "ecedaa32-ffbe-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T00:00:25", "message_id": "8754a73a-ffbd-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T23:50:25", "message_id": "218efd84-ffbc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T23:40:25", "message_id": "bbedab16-ffba-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T23:30:25", "message_id": "5638c89c-ffb9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T23:20:25", "message_id": "f0b034e8-ffb7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T23:10:25", "message_id": "8afb41f2-ffb6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T23:00:25", "message_id": "255bbe0e-ffb5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T22:50:25", "message_id": "bf70f740-ffb3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T22:40:25", "message_id": "59cc0f3e-ffb2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T22:30:24", "message_id": "f41de6ea-ffb0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T22:20:24", "message_id": "8e66077a-ffaf-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T22:10:24", "message_id": "28c688d2-ffae-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T22:00:24", "message_id": "c30e39fa-ffac-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T21:50:24", "message_id": "5d5285fe-ffab-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T21:40:24", "message_id": "f7ac2efe-ffa9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T21:30:24", "message_id": "92066804-ffa8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T21:20:24", "message_id": "2c48e3d0-ffa7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T21:10:24", "message_id": "c692f1da-ffa5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T21:00:24", "message_id": "60ec3180-ffa4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T20:50:23", "message_id": "fb3513c6-ffa2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T20:40:23", "message_id": "9587f602-ffa1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T20:30:23", "message_id": "2fe17356-ffa0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T20:20:23", "message_id": "ca27928a-ff9e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T20:10:23", "message_id": "6476e202-ff9d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T20:00:23", "message_id": "fece2772-ff9b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T19:50:23", "message_id": "991abb76-ff9a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T19:40:23", "message_id": "336fea22-ff99-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T19:30:23", "message_id": "cdc2f9cc-ff97-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T19:20:23", "message_id": "68167974-ff96-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T19:10:22", "message_id": "02643bf8-ff95-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T19:00:22", "message_id": "9cae886e-ff93-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T18:50:22", "message_id": "370a2a0a-ff92-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T18:40:22", "message_id": "d156a87e-ff90-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T18:30:22", "message_id": "6b9ee5ce-ff8f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T18:20:22", "message_id": "05f09502-ff8e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T18:10:22", "message_id": "a0440f50-ff8c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T18:00:22", "message_id": "3a95837e-ff8b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T17:50:22", "message_id": "d4e5b18a-ff89-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T17:40:22", "message_id": "6f3be008-ff88-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T17:30:22", "message_id": "098cd3ee-ff87-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T17:20:21", "message_id": "a3d9e9a2-ff85-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T17:10:21", "message_id": "3e3055ce-ff84-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T17:00:21", "message_id": "d87780aa-ff82-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T16:50:21", "message_id": "72c0f9a4-ff81-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T16:40:21", "message_id": "0d160ffa-ff80-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T16:30:21", "message_id": "a7713734-ff7e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T16:20:21", "message_id": "41b4dffa-ff7d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T16:10:21", "message_id": "dc0ff636-ff7b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T16:00:21", "message_id": "76641cd2-ff7a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T15:50:21", "message_id": "10b37640-ff79-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T15:40:20", "message_id": "ab039bb4-ff77-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T15:30:20", "message_id": "454e28b2-ff76-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T15:20:20", "message_id": "dfa0abe4-ff74-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T15:10:20", "message_id": "79f00034-ff73-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T15:00:20", "message_id": "1440378c-ff72-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T14:50:20", "message_id": "ae9467c4-ff70-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T14:40:20", "message_id": "48e3ad14-ff6f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T14:30:20", "message_id": "e348a096-ff6d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T14:20:20", "message_id": "7d952676-ff6c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T14:10:20", "message_id": "17e61f52-ff6b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T14:00:20", "message_id": "b235adc2-ff69-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T13:50:19", "message_id": "4c8477ca-ff68-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T13:40:20", "message_id": "e6ea386a-ff66-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T13:30:19", "message_id": "8132ae2c-ff65-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T13:20:19", "message_id": "1b821802-ff64-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T13:10:19", "message_id": "b5d840a4-ff62-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T13:00:19", "message_id": "50333cc8-ff61-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T12:50:19", "message_id": "ea83a9cc-ff5f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T12:40:19", "message_id": "84d42bfc-ff5e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T12:30:19", "message_id": "1f2e64da-ff5d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T12:20:19", "message_id": "b97a3368-ff5b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T12:10:19", "message_id": "53c8a122-ff5a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T12:00:19", "message_id": "ee1846bc-ff58-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T11:50:19", "message_id": "886b64f8-ff57-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T11:40:18", "message_id": "22c0bcda-ff56-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T11:30:18", "message_id": "bd0f9998-ff54-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T11:20:18", "message_id": "57605cb4-ff53-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T11:10:18", "message_id": "f1d088b6-ff51-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T11:00:18", "message_id": "8c143ab4-ff50-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T10:50:18", "message_id": "266964b0-ff4f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T10:40:18", "message_id": "c0c22990-ff4d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T10:30:18", "message_id": "5b0a9b06-ff4c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T10:20:18", "message_id": "f5605382-ff4a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T10:10:18", "message_id": "8fbb97ea-ff49-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T10:00:18", "message_id": "2a1a68cc-ff48-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T09:50:18", "message_id": "c4556f10-ff46-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T09:40:18", "message_id": "5eaedca6-ff45-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T09:30:17", "message_id": "f8efc62e-ff43-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T09:20:17", "message_id": "934a67e4-ff42-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T09:10:17", "message_id": "2d9f7656-ff41-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T09:00:17", "message_id": "c7e2b9d2-ff3f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T08:50:17", "message_id": "62347acc-ff3e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T08:40:17", "message_id": "fc8d776a-ff3c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T08:30:17", "message_id": "96d6080c-ff3b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T08:20:17", "message_id": "311de792-ff3a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T08:10:17", "message_id": "cb711ee2-ff38-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T08:00:16", "message_id": "65be0f8e-ff37-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T07:50:16", "message_id": "000e5d84-ff36-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T07:40:16", "message_id": "9a5d86dc-ff34-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T07:30:16", "message_id": "34b9da52-ff33-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T07:20:16", "message_id": "ceffc8f8-ff31-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T07:10:16", "message_id": "694e2cc6-ff30-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T07:00:16", "message_id": "03a6f00c-ff2f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T06:50:16", "message_id": "9df86c0a-ff2d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T06:40:16", "message_id": "38456e7c-ff2c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T06:30:16", "message_id": "d29378d6-ff2a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T06:20:16", "message_id": "6cf36a0a-ff29-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T06:10:16", "message_id": "074c7396-ff28-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T06:00:15", "message_id": "a190579e-ff26-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T05:50:15", "message_id": "3be92b6a-ff25-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T05:40:15", "message_id": "d631619e-ff23-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T05:30:15", "message_id": "709473e0-ff22-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T05:20:15", "message_id": "0ad8bbf2-ff21-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T05:10:15", "message_id": "a522108e-ff1f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T05:00:15", "message_id": "3f7a1412-ff1e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T04:50:15", "message_id": "d9caeb6a-ff1c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T04:40:15", "message_id": "741f595a-ff1b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T04:30:15", "message_id": "0e7d45e0-ff1a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T04:20:15", "message_id": "a8c712a4-ff18-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T04:10:14", "message_id": "431f0db8-ff17-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T04:00:14", "message_id": "dd6b9122-ff15-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T03:50:14", "message_id": "77beab58-ff14-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T03:40:14", "message_id": "1216c2b4-ff13-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T03:30:14", "message_id": "ac5c40e4-ff11-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T03:20:14", "message_id": "46b16eaa-ff10-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T03:10:14", "message_id": "e117b028-ff0e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T03:00:14", "message_id": "7b5b0f7e-ff0d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T02:50:14", "message_id": "15c328d2-ff0c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T02:40:14", "message_id": "b00fe1fc-ff0a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T02:30:14", "message_id": "4a5dfe9e-ff09-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T02:20:14", "message_id": "e4aa2a88-ff07-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T02:10:13", "message_id": "7efd871c-ff06-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T02:00:13", "message_id": "1947f69c-ff05-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T01:50:13", "message_id": "b3a38140-ff03-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T01:40:13", "message_id": "4deca9e0-ff02-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T01:30:13", "message_id": "e842fc62-ff00-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T01:20:13", "message_id": "829701f2-feff-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T01:10:13", "message_id": "1ceb70d2-fefe-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T01:00:13", "message_id": "b73444ae-fefc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T00:50:13", "message_id": "5189c4a4-fefb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T00:40:13", "message_id": "ebe47cda-fef9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T00:30:13", "message_id": "86240b1e-fef8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T00:20:12", "message_id": "207993a2-fef7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T00:10:12", "message_id": "bacab082-fef5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T00:00:12", "message_id": "551564ea-fef4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T23:50:12", "message_id": "ef74615a-fef2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T23:40:12", "message_id": "89c7dcf2-fef1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T23:30:12", "message_id": "2418bc4c-fef0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T23:20:12", "message_id": "be768460-feee-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T23:10:12", "message_id": "58b673ca-feed-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T23:00:12", "message_id": "f33b8856-feeb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T22:50:12", "message_id": "8d5c17cc-feea-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T22:40:12", "message_id": "27b3d8ac-fee9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T22:30:12", "message_id": "c203f07e-fee7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T22:20:11", "message_id": "5c52717a-fee6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T22:10:11", "message_id": "f6b3b53c-fee4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T22:00:11", "message_id": "911a3b52-fee3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T21:50:11", "message_id": "2b538d38-fee2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T21:40:11", "message_id": "c5adf942-fee0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T21:30:11", "message_id": "5ff421ae-fedf-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T21:20:11", "message_id": "fa473e8c-fedd-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T21:10:11", "message_id": "949a7a6e-fedc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T21:00:11", "message_id": "2ee2d56e-fedb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T20:50:11", "message_id": "c9395554-fed9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T20:40:11", "message_id": "63979176-fed8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T20:30:11", "message_id": "fde373e6-fed6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T20:20:11", "message_id": "983c89b6-fed5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T20:10:10", "message_id": "3280c502-fed4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T20:00:10", "message_id": "ccea7888-fed2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T19:50:10", "message_id": "67311d4a-fed1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T19:40:10", "message_id": "0188bc38-fed0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T19:30:10", "message_id": "9bddf00c-fece-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T19:20:10", "message_id": "36271410-fecd-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T19:10:10", "message_id": "d0781d0e-fecb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T19:00:10", "message_id": "6abc4c16-feca-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T18:50:10", "message_id": "05282c18-fec9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T18:40:10", "message_id": "9f6ee2a0-fec7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T18:30:09", "message_id": "39b8d138-fec6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T18:20:09", "message_id": "d4106c70-fec4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T18:10:09", "message_id": "6e59632e-fec3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T18:00:09", "message_id": "08a0b6be-fec2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T17:50:09", "message_id": "a2f72cb8-fec0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T17:40:09", "message_id": "3d526df6-febf-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T17:30:09", "message_id": "d79a5e84-febd-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T17:20:09", "message_id": "71f25ae2-febc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T17:10:09", "message_id": "0c39f4c2-febb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T17:00:09", "message_id": "a68aac08-feb9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T16:50:09", "message_id": "40debb66-feb8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T16:40:08", "message_id": "db2b01ea-feb6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T16:30:08", "message_id": "757e6266-feb5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T16:20:08", "message_id": "0fd0291e-feb4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T16:10:08", "message_id": "aa274ff8-feb2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T16:00:08", "message_id": "447c0514-feb1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T15:50:08", "message_id": "dec602fc-feaf-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T15:40:08", "message_id": "79206ac4-feae-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T15:30:08", "message_id": "1367ade2-fead-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T15:20:08", "message_id": "adb9a186-feab-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T15:10:08", "message_id": "4809036e-feaa-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T15:00:08", "message_id": "e25b5b30-fea8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T14:50:07", "message_id": "7caea482-fea7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T14:40:07", "message_id": "170f1d92-fea6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T14:30:07", "message_id": "b16a2866-fea4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T14:20:07", "message_id": "4bb982f6-fea3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T14:10:07", "message_id": "e607c11c-fea1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T14:00:07", "message_id": "8072acf0-fea0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T13:50:07", "message_id": "1ab85cc6-fe9f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T13:40:07", "message_id": "b4fcc4cc-fe9d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T13:30:07", "message_id": "4f4fefe2-fe9c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T13:20:07", "message_id": "e9a0e968-fe9a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T13:10:07", "message_id": "83ec555e-fe99-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T13:00:07", "message_id": "1e47e084-fe98-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T12:50:07", "message_id": "b89d14a8-fe96-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T12:40:07", "message_id": "52f81202-fe95-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T12:30:06", "message_id": "ed412bde-fe93-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T12:20:06", "message_id": "878e3e0e-fe92-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T12:10:06", "message_id": "21e76568-fe91-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T12:00:06", "message_id": "bc35576c-fe8f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T11:50:06", "message_id": "568b9be8-fe8e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T11:40:06", "message_id": "f0e6b8d2-fe8c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T11:30:07", "message_id": "8bae212c-fe8b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T11:20:06", "message_id": "2581305c-fe8a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T11:10:06", "message_id": "bfcab2f2-fe88-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T11:00:06", "message_id": "5a21ff92-fe87-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T10:50:05", "message_id": "f474d918-fe85-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T10:40:05", "message_id": "8ec8c846-fe84-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T10:30:05", "message_id": "291763b4-fe83-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T10:20:05", "message_id": "c369afd2-fe81-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T10:10:05", "message_id": "5db3b17a-fe80-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T10:00:05", "message_id": "f80c30f0-fe7e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T09:50:05", "message_id": "92580852-fe7d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T09:40:05", "message_id": "2caea6ba-fe7c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T09:30:05", "message_id": "c701584a-fe7a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T09:20:05", "message_id": "614bd24c-fe79-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T09:10:05", "message_id": "fba60b48-fe77-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T09:00:05", "message_id": "95f5aa34-fe76-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T08:50:04", "message_id": "30463ae2-fe75-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T08:40:04", "message_id": "ca96fca0-fe73-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T08:30:04", "message_id": "64e6e812-fe72-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T08:20:04", "message_id": "ff3cc776-fe70-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T08:10:04", "message_id": "998fad4a-fe6f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T08:00:04", "message_id": "33de5f24-fe6e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T07:50:04", "message_id": "ce30c96a-fe6c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T07:40:04", "message_id": "688f751c-fe6b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T07:30:04", "message_id": "02e13a6c-fe6a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T07:20:04", "message_id": "9d35862e-fe68-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T07:10:04", "message_id": "3786eecc-fe67-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T07:00:04", "message_id": "d1d5223e-fe65-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T06:50:03", "message_id": "6c23d74c-fe64-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T06:40:03", "message_id": "06806d5c-fe63-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T06:30:03", "message_id": "a0d23a68-fe61-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T06:20:03", "message_id": "3b207cee-fe60-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T06:10:03", "message_id": "d56ccaca-fe5e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T06:00:03", "message_id": "6fbe14c8-fe5d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T05:50:03", "message_id": "0a10fde4-fe5c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T05:40:03", "message_id": "a45b2c1e-fe5a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T05:30:03", "message_id": "3eaf346a-fe59-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T05:20:03", "message_id": "d904713a-fe57-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T05:10:03", "message_id": "73580302-fe56-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T05:00:02", "message_id": "0da63dfe-fe55-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T04:50:02", "message_id": "a7f6c2cc-fe53-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T04:40:02", "message_id": "424d9762-fe52-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T04:30:02", "message_id": "dca43610-fe50-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T04:20:02", "message_id": "76ea9d10-fe4f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T04:10:02", "message_id": "11385a44-fe4e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T04:00:02", "message_id": "ab919eae-fe4c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T03:50:02", "message_id": "45de87f8-fe4b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T03:40:02", "message_id": "e0328338-fe49-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T03:30:02", "message_id": "7a7f1912-fe48-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T03:20:01", "message_id": "14cb993e-fe47-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T03:10:01", "message_id": "af29237c-fe45-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T03:00:01", "message_id": "497454f8-fe44-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T02:50:01", "message_id": "e3c530ec-fe42-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T02:40:01", "message_id": "7e11d6de-fe41-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T02:30:01", "message_id": "1870e474-fe40-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T02:20:01", "message_id": "b2c34d84-fe3e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T02:10:01", "message_id": "4d10e7f4-fe3d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T02:00:01", "message_id": "e767943a-fe3b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T01:50:01", "message_id": "81b88474-fe3a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T01:40:01", "message_id": "1c1558e6-fe39-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T01:30:01", "message_id": "b668e388-fe37-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T01:20:01", "message_id": "50bdda08-fe36-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T01:10:00", "message_id": "eb08cbec-fe34-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T01:00:00", "message_id": "8562bf4c-fe33-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T00:50:00", "message_id": "1fab069c-fe32-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T00:40:00", "message_id": "ba006068-fe30-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T00:30:00", "message_id": "544d21e4-fe2f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T00:20:00", "message_id": "ee9bf36c-fe2d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T00:10:00", "message_id": "88f32b44-fe2c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T00:00:00", "message_id": "2341227a-fe2b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T23:50:00", "message_id": "bd95c6fc-fe29-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T23:40:00", "message_id": "57ea7ec0-fe28-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T23:30:00", "message_id": "f2396f88-fe26-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T23:20:00", "message_id": "8c982b98-fe25-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T23:10:00", "message_id": "270bfa1c-fe24-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T23:00:00", "message_id": "c1617b5c-fe22-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T22:49:59", "message_id": "5b7d909c-fe21-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T22:39:59", "message_id": "f5cd02b0-fe1f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T22:29:59", "message_id": "902628ac-fe1e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T22:19:59", "message_id": "2a77fba8-fe1d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T22:09:59", "message_id": "c4c4f852-fe1b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T21:59:59", "message_id": "5f174998-fe1a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T21:49:59", "message_id": "f9657224-fe18-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T21:39:59", "message_id": "93b2b690-fe17-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T21:29:58", "message_id": "2dff7870-fe16-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T21:19:58", "message_id": "c855679c-fe14-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T21:09:58", "message_id": "62a87d22-fe13-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T20:59:58", "message_id": "fcfc6732-fe11-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T20:49:58", "message_id": "974584a6-fe10-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T20:39:58", "message_id": "3195d4c2-fe0f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T20:29:58", "message_id": "cbe58ec0-fe0d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T20:19:58", "message_id": "663d0af4-fe0c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T20:09:58", "message_id": "00893382-fe0b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T19:59:58", "message_id": "9adc67f8-fe09-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T19:49:58", "message_id": "35318934-fe08-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T19:39:57", "message_id": "cf8cd8a0-fe06-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T19:29:57", "message_id": "69d9884c-fe05-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T19:19:57", "message_id": "042b72f4-fe04-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T19:09:57", "message_id": "9e7deda2-fe02-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T18:59:57", "message_id": "38cdf8b8-fe01-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T18:49:57", "message_id": "d31f6642-fdff-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T18:39:57", "message_id": "6d76e6cc-fdfe-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T18:29:57", "message_id": "07cb9a1c-fdfd-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T18:19:57", "message_id": "a21eb6aa-fdfb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T18:09:57", "message_id": "3c7f0a62-fdfa-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T17:59:57", "message_id": "d6c5c2d4-fdf8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T17:49:57", "message_id": "7119b31a-fdf7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T17:39:56", "message_id": "0b6c8c82-fdf6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T17:29:56", "message_id": "a5c2c0f0-fdf4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T17:19:56", "message_id": "4011eed0-fdf3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T17:09:56", "message_id": "da66ddd0-fdf1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T16:59:56", "message_id": "74b7f484-fdf0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T16:49:56", "message_id": "0f091a2e-fdef-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T16:39:56", "message_id": "a9626c58-fded-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T16:29:56", "message_id": "43c1dc68-fdec-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T16:19:56", "message_id": "de0eb310-fdea-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T16:09:56", "message_id": "7867cc32-fde9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T15:59:56", "message_id": "12bc1664-fde8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T15:49:56", "message_id": "ad15ded6-fde6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T15:39:56", "message_id": "4766e1e4-fde5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T15:29:56", "message_id": "e1b6b582-fde3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T15:19:56", "message_id": "7c2cc748-fde2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T15:09:55", "message_id": "165682d4-fde1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T14:59:55", "message_id": "b0a591b0-fddf-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T14:49:55", "message_id": "4affaa68-fdde-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T14:39:55", "message_id": "e54da09a-fddc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T14:29:55", "message_id": "7fa0654e-fddb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T14:19:55", "message_id": "19ef9248-fdda-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T14:09:55", "message_id": "b4452c74-fdd8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T13:59:55", "message_id": "4e91cece-fdd7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T13:49:55", "message_id": "e8e588f0-fdd5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T13:39:55", "message_id": "83348138-fdd4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T13:29:54", "message_id": "1d829b6e-fdd3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T13:19:54", "message_id": "b7d5ae7e-fdd1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T13:09:54", "message_id": "5227ccde-fdd0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T12:59:54", "message_id": "ec7afc18-fdce-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T12:49:54", "message_id": "86cb486a-fdcd-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T12:39:54", "message_id": "211b35b2-fdcc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T12:29:54", "message_id": "bb69dbac-fdca-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T12:19:54", "message_id": "55bd09ce-fdc9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T12:09:54", "message_id": "f0072a8e-fdc7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T11:59:54", "message_id": "8a5de1ba-fdc6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T11:49:54", "message_id": "24b5381e-fdc5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T11:39:54", "message_id": "bf09396c-fdc3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T11:29:53", "message_id": "59588650-fdc2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T11:19:53", "message_id": "f3ac7948-fdc0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T11:09:53", "message_id": "8dff8cda-fdbf-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T10:59:53", "message_id": "2851fb26-fdbe-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T10:49:53", "message_id": "c2a74502-fdbc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T10:39:53", "message_id": "5cf5441c-fdbb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T10:29:53", "message_id": "f74fdbb4-fdb9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T10:19:53", "message_id": "919f463e-fdb8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T10:09:53", "message_id": "2c00959a-fdb7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T09:59:53", "message_id": "c6524aaa-fdb5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T09:49:53", "message_id": "60a947b8-fdb4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T09:39:53", "message_id": "faf96dcc-fdb2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T09:29:53", "message_id": "954e03d0-fdb1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T09:19:52", "message_id": "2f9e2c5a-fdb0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T09:09:52", "message_id": "c9eb02e4-fdae-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T08:59:52", "message_id": "643c4f9e-fdad-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T08:49:52", "message_id": "fea20594-fdab-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T08:39:52", "message_id": "98e93f5c-fdaa-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T08:29:52", "message_id": "3337cee0-fda9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T08:19:52", "message_id": "cd8559ec-fda7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T08:09:52", "message_id": "67ef12b8-fda6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T07:59:52", "message_id": "022dfc1a-fda5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T07:49:52", "message_id": "9c7eb4a0-fda3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T07:39:52", "message_id": "36d5a984-fda2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T07:29:51", "message_id": "d12200c0-fda0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T07:19:51", "message_id": "6b75c38e-fd9f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T07:09:52", "message_id": "05ed5668-fd9e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T06:59:51", "message_id": "a0136f4a-fd9c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T06:49:51", "message_id": "3a69bbfa-fd9b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T06:39:51", "message_id": "d4b0d448-fd99-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T06:29:51", "message_id": "6f059f26-fd98-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T06:19:51", "message_id": "09523fb4-fd97-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T06:09:51", "message_id": "a3a87d78-fd95-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T05:59:51", "message_id": "3dfc7714-fd94-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T05:49:51", "message_id": "d84e3070-fd92-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T05:39:50", "message_id": "729f6808-fd91-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T05:29:50", "message_id": "0cf54ce4-fd90-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T05:19:50", "message_id": "a745dcd4-fd8e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T05:09:50", "message_id": "41942b4e-fd8d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T04:59:50", "message_id": "dbe7a3f8-fd8b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T04:49:50", "message_id": "7649bd8e-fd8a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T04:39:50", "message_id": "10a3135a-fd89-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T04:29:50", "message_id": "ab046680-fd87-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T04:19:50", "message_id": "453b3686-fd86-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T04:09:50", "message_id": "df8102ea-fd84-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T03:59:49", "message_id": "79c1a906-fd83-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T03:49:49", "message_id": "141fc192-fd82-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T03:39:49", "message_id": "ae77de0c-fd80-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T03:29:49", "message_id": "48d26f1e-fd7f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T03:19:49", "message_id": "e330a528-fd7d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T03:09:49", "message_id": "7d883a34-fd7c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T02:59:49", "message_id": "17c820d4-fd7b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T02:49:49", "message_id": "b2076846-fd79-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T02:39:49", "message_id": "4c863ec6-fd78-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T02:29:49", "message_id": "e6cae362-fd76-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T02:19:49", "message_id": "8129436a-fd75-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T02:09:49", "message_id": "1b835952-fd74-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T01:59:49", "message_id": "b5c1c546-fd72-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T01:49:49", "message_id": "50111e3c-fd71-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T01:39:49", "message_id": "ea61cbdc-fd6f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T01:29:49", "message_id": "84db4000-fd6e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T01:19:49", "message_id": "1f3b8e36-fd6d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T01:09:48", "message_id": "b97b618a-fd6b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T00:59:48", "message_id": "53c686c2-fd6a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T00:49:48", "message_id": "ee081a72-fd68-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T00:39:48", "message_id": "886a26c0-fd67-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T00:29:48", "message_id": "22c894ce-fd66-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T00:19:48", "message_id": "bd1b16e8-fd64-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T00:09:48", "message_id": "578ce0e6-fd63-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-04T23:59:48", "message_id": "f1cfdb74-fd61-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-04T23:49:48", "message_id": "8c12e6ba-fd60-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-04T23:39:05", "message_id": "0d1fadda-fd5f-11e2-b8cf-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-04T23:29:05", "message_id": "a78bbd20-fd5d-11e2-b8cf-080027880ca6", "source": "openstack", "counter_unit": "image", "counter_volume": 1.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}], "http://localhost:8777/v2/meters/image.download?q.field=resource_id&q.value=e58bf75a-35e9-4709-9eab-885438f36a34": [{"counter_name": "image.download", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T22:02:13.013000", "message_id": "aed2659e-fe1a-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"receiver_tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "destination_ip": "10.0.2.15", "event_type": "image.send", "bytes_sent": "25165824", "image_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "host": "openstack", "receiver_user_id": "2b8fbe55863d4dfab5310796202b2019", "owner_id": "0c5a6b84fd2a43999c8820060c57da30"}, "counter_type": "delta"}, {"counter_name": "image.download", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T05:17:41.079000", "message_id": "59f39642-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"receiver_tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "destination_ip": "10.0.2.15", "event_type": "image.send", "bytes_sent": "25165824", "image_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "host": "openstack", "receiver_user_id": "2b8fbe55863d4dfab5310796202b2019", "owner_id": "0c5a6b84fd2a43999c8820060c57da30"}, "counter_type": "delta"}, {"counter_name": "image.download", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-04T23:56:53.110000", "message_id": "895b6842-fd61-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"receiver_tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "destination_ip": "10.0.2.15", "event_type": "image.send", "bytes_sent": "25165824", "image_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "host": "openstack", "receiver_user_id": "2b8fbe55863d4dfab5310796202b2019", "owner_id": "0c5a6b84fd2a43999c8820060c57da30"}, "counter_type": "delta"}], "http://localhost:8777/v2/meters/image.serve?q.field=resource_id&q.value=e58bf75a-35e9-4709-9eab-885438f36a34": [{"counter_name": "image.serve", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T22:02:13.013000", "message_id": "aed40e80-fe1a-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"receiver_tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "destination_ip": "10.0.2.15", "event_type": "image.send", "bytes_sent": "25165824", "image_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "host": "openstack", "receiver_user_id": "2b8fbe55863d4dfab5310796202b2019", "owner_id": "0c5a6b84fd2a43999c8820060c57da30"}, "counter_type": "delta"}, {"counter_name": "image.serve", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T05:17:41.079000", "message_id": "59f8f506-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"receiver_tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "destination_ip": "10.0.2.15", "event_type": "image.send", "bytes_sent": "25165824", "image_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "host": "openstack", "receiver_user_id": "2b8fbe55863d4dfab5310796202b2019", "owner_id": "0c5a6b84fd2a43999c8820060c57da30"}, "counter_type": "delta"}, {"counter_name": "image.serve", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-04T23:56:53.110000", "message_id": "89698a26-fd61-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"receiver_tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "destination_ip": "10.0.2.15", "event_type": "image.send", "bytes_sent": "25165824", "image_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "host": "openstack", "receiver_user_id": "2b8fbe55863d4dfab5310796202b2019", "owner_id": "0c5a6b84fd2a43999c8820060c57da30"}, "counter_type": "delta"}], "http://localhost:8777/v2/meters/image.size?q.field=resource_id&q.value=e58bf75a-35e9-4709-9eab-885438f36a34": [{"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-12T04:01:18", "message_id": "d74cc706-0303-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-12T03:51:18", "message_id": "719f9844-0302-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-12T03:41:18", "message_id": "0beeaafe-0301-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-12T03:31:18", "message_id": "a64fcc60-02ff-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-12T03:21:18", "message_id": "409fac56-02fe-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-12T03:11:17", "message_id": "daf615e4-02fc-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-12T03:01:17", "message_id": "75398854-02fb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-12T02:51:17", "message_id": "0f977296-02fa-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-12T02:41:17", "message_id": "a9d411ae-02f8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-12T02:31:17", "message_id": "44342cd6-02f7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-12T02:21:17", "message_id": "de7df0e4-02f5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-12T02:11:17", "message_id": "78cf88a8-02f4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-12T02:01:17", "message_id": "13248360-02f3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-12T01:51:17", "message_id": "ad79148c-02f1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-12T01:41:17", "message_id": "47c24790-02f0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-12T01:31:17", "message_id": "e2194174-02ee-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-12T01:21:16", "message_id": "7c63587a-02ed-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-12T01:11:16", "message_id": "16b96826-02ec-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-12T01:01:16", "message_id": "b0fba5d6-02ea-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-12T00:51:16", "message_id": "4b57d26e-02e9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-12T00:41:16", "message_id": "e59f745a-02e7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-12T00:31:16", "message_id": "7ff0c7d6-02e6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-12T00:21:16", "message_id": "1a6cd72a-02e5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-12T00:11:16", "message_id": "b495f518-02e3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-12T00:01:16", "message_id": "4ee5b7d6-02e2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T23:51:16", "message_id": "e93b6a94-02e0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T23:41:15", "message_id": "839688d2-02df-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T23:31:15", "message_id": "1deb9afa-02de-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T23:21:15", "message_id": "b8310e44-02dc-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T23:11:15", "message_id": "528b7ac6-02db-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T23:01:15", "message_id": "ed08aa4e-02d9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T22:51:15", "message_id": "872e3a00-02d8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T22:41:15", "message_id": "217d2884-02d7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T22:31:15", "message_id": "bbd07eb0-02d5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T22:21:15", "message_id": "561ed75c-02d4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T22:11:15", "message_id": "f06de188-02d2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T22:01:15", "message_id": "8ac4449a-02d1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T21:51:15", "message_id": "251b6a8e-02d0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T21:41:14", "message_id": "bf6f1664-02ce-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T21:31:14", "message_id": "59bcde60-02cd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T21:21:14", "message_id": "f411e2fa-02cb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T21:11:14", "message_id": "8e6179c6-02ca-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T21:01:14", "message_id": "28b1d856-02c9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T20:51:14", "message_id": "c304ab42-02c7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T20:41:14", "message_id": "5d529b84-02c6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T20:31:14", "message_id": "f7a7a79e-02c4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T20:21:14", "message_id": "91fd06f6-02c3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T20:11:14", "message_id": "2c57e4ca-02c2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T20:01:14", "message_id": "c6a155ea-02c0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T19:51:14", "message_id": "60f8deee-02bf-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T19:41:13", "message_id": "fb42e80c-02bd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T19:31:13", "message_id": "959c8374-02bc-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T19:21:13", "message_id": "2febaf42-02bb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T19:11:13", "message_id": "ca375bca-02b9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T19:01:13", "message_id": "6482817a-02b8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T18:51:13", "message_id": "fed227b4-02b6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T18:41:13", "message_id": "99264680-02b5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T18:31:13", "message_id": "33756826-02b4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T18:21:13", "message_id": "cdc5c058-02b2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T18:11:13", "message_id": "6818fa96-02b1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T18:01:12", "message_id": "02664c18-02b0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T17:51:12", "message_id": "9cbc922e-02ae-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T17:41:12", "message_id": "370aedf0-02ad-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T17:31:12", "message_id": "d1606c6a-02ab-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T17:21:12", "message_id": "6bac789c-02aa-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T17:11:12", "message_id": "05fd4950-02a9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T17:01:12", "message_id": "a05f3bb8-02a7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T16:51:12", "message_id": "3aae45f8-02a6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T16:41:12", "message_id": "d50b3b4e-02a4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T16:31:12", "message_id": "6f548400-02a3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T16:21:12", "message_id": "099e6366-02a2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T16:11:11", "message_id": "a3f3b7e2-02a0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T16:01:11", "message_id": "3e50d29a-029f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T15:51:11", "message_id": "d89f99d2-029d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T15:41:11", "message_id": "72fdc2d0-029c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T15:31:11", "message_id": "0d58d704-029b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T15:21:11", "message_id": "a7b88d1e-0299-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T15:11:11", "message_id": "4201bdd4-0298-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T15:01:11", "message_id": "dc51591e-0296-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T14:51:11", "message_id": "769c86f8-0295-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T14:41:11", "message_id": "10efe8b4-0294-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T14:31:11", "message_id": "ab3ff4b0-0292-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T14:21:11", "message_id": "458f1dd6-0291-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T14:11:11", "message_id": "dfe0b41e-028f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T14:01:11", "message_id": "7a3bf9a8-028e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T13:51:10", "message_id": "148f2b30-028d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T13:41:10", "message_id": "aee0efb8-028b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T13:31:10", "message_id": "49344dc8-028a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T13:21:10", "message_id": "e38294c2-0288-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T13:11:10", "message_id": "7ddba718-0287-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T13:01:10", "message_id": "1831c150-0286-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T12:51:10", "message_id": "b2795a2c-0284-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T12:41:10", "message_id": "4ccf9066-0283-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T12:31:10", "message_id": "e71ae41a-0281-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T12:21:10", "message_id": "816adc2a-0280-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T12:11:10", "message_id": "1bbd5ffc-027f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T12:01:09", "message_id": "b60a7c04-027d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T11:51:09", "message_id": "506419ba-027c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T11:41:09", "message_id": "eaa71d58-027a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T11:31:09", "message_id": "84fd0874-0279-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T11:21:09", "message_id": "1f4c06a2-0278-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T11:11:09", "message_id": "b99db0b8-0276-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T11:01:09", "message_id": "53efe21e-0275-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T10:51:09", "message_id": "ee3cdf40-0273-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T10:41:09", "message_id": "88931980-0272-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T10:31:09", "message_id": "22e39336-0271-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T10:21:09", "message_id": "bd31c63a-026f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T10:11:09", "message_id": "57934b88-026e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T10:01:08", "message_id": "f1df3136-026c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T09:51:08", "message_id": "8c30c2e2-026b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T09:41:08", "message_id": "267f7b24-026a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T09:31:08", "message_id": "c0d59e30-0268-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T09:21:08", "message_id": "5b2610ac-0267-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T09:11:08", "message_id": "f57ea86e-0265-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T09:01:08", "message_id": "8fccd794-0264-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T08:51:08", "message_id": "2a2a609c-0263-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T08:41:08", "message_id": "c47fa960-0261-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T08:31:08", "message_id": "5ed34e92-0260-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T08:21:08", "message_id": "f9194404-025e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T08:11:07", "message_id": "936afcb6-025d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T08:01:07", "message_id": "2dbe12dc-025c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T07:51:07", "message_id": "c80e2720-025a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T07:41:07", "message_id": "6260629a-0259-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T07:31:07", "message_id": "fcb72060-0257-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T07:21:07", "message_id": "9706d630-0256-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T07:11:07", "message_id": "314e993c-0255-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T07:01:07", "message_id": "cba91c34-0253-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T06:51:07", "message_id": "65f9071a-0252-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T06:41:07", "message_id": "00478fbe-0251-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T06:31:07", "message_id": "9a9a1584-024f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T06:21:07", "message_id": "34f88176-024e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T06:11:06", "message_id": "cf44be22-024c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T06:01:06", "message_id": "69aabc3e-024b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T05:51:06", "message_id": "03edbfe6-024a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T05:41:06", "message_id": "9e401992-0248-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T05:31:06", "message_id": "3889cef0-0247-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T05:21:06", "message_id": "d2d87abc-0245-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T05:11:06", "message_id": "6d25e4d0-0244-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T05:01:06", "message_id": "077d11d6-0243-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T04:51:06", "message_id": "a1d4a8ae-0241-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T04:41:06", "message_id": "3c225994-0240-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T04:31:06", "message_id": "d67680a8-023e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T04:21:06", "message_id": "70cdcfb4-023d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T04:11:05", "message_id": "0b1442da-023c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T04:01:05", "message_id": "a56dd3de-023a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T03:51:05", "message_id": "3fbfd542-0239-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T03:41:05", "message_id": "da1a0eac-0237-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T03:31:05", "message_id": "74603e70-0236-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T03:21:05", "message_id": "0eaed09c-0235-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T03:11:05", "message_id": "a90214f8-0233-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T03:01:05", "message_id": "434c2668-0232-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T02:51:05", "message_id": "dd99a31e-0230-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T02:41:04", "message_id": "77e2b476-022f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T02:31:04", "message_id": "123d8b1a-022e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T02:21:04", "message_id": "ac899260-022c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T02:11:04", "message_id": "46ddfb28-022b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T02:01:04", "message_id": "e13b1cde-0229-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T01:51:04", "message_id": "7b82b63c-0228-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T01:41:04", "message_id": "15e42186-0227-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T01:31:04", "message_id": "b0321a06-0225-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T01:21:04", "message_id": "4a6c8b62-0224-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T01:11:04", "message_id": "e4bc69fa-0222-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T01:01:04", "message_id": "7f191a86-0221-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T00:51:03", "message_id": "19619160-0220-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T00:41:03", "message_id": "b3b4a39e-021e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T00:31:03", "message_id": "4e06fa70-021d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T00:21:03", "message_id": "e8555f60-021b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T00:11:03", "message_id": "82a632a8-021a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-11T00:01:03", "message_id": "1cfa63ee-0219-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T23:51:03", "message_id": "b74b77c8-0217-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T23:41:03", "message_id": "519b5bc4-0216-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T23:31:03", "message_id": "ebf1aa22-0214-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T23:21:03", "message_id": "86483534-0213-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T23:11:03", "message_id": "20915ee2-0212-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T23:01:03", "message_id": "bb2357f0-0210-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T22:51:02", "message_id": "5546f000-020f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T22:41:07", "message_id": "f23df8c4-020d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T22:31:02", "message_id": "89f26490-020c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T22:21:02", "message_id": "243ba16c-020b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T22:11:02", "message_id": "be9b4368-0209-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T22:01:02", "message_id": "58d85300-0208-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T21:51:02", "message_id": "f342682e-0206-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T21:41:02", "message_id": "8d8e156a-0205-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T21:31:02", "message_id": "27db2c68-0204-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T21:21:02", "message_id": "c23b9042-0202-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T21:11:02", "message_id": "5c86b6a6-0201-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T21:01:02", "message_id": "f6cc7d06-01ff-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T20:51:02", "message_id": "913b41a8-01fe-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T20:41:01", "message_id": "2b7a7f10-01fd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T20:31:01", "message_id": "c5e1233a-01fb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T20:21:01", "message_id": "60198cbe-01fa-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T20:11:01", "message_id": "fa5d802a-01f8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T20:01:01", "message_id": "94baeede-01f7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T19:51:01", "message_id": "2f07bfdc-01f6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T19:41:01", "message_id": "c959f408-01f4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T19:31:01", "message_id": "63b92566-01f3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T19:21:01", "message_id": "fdeec34a-01f1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T19:11:01", "message_id": "984eceb4-01f0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T19:01:00", "message_id": "329de024-01ef-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T18:51:00", "message_id": "cce2ac34-01ed-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T18:41:00", "message_id": "67456296-01ec-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T18:31:00", "message_id": "019262ce-01eb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T18:21:00", "message_id": "9be0b3c8-01e9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T18:11:00", "message_id": "362c650a-01e8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T18:01:00", "message_id": "d07d59b8-01e6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T17:51:00", "message_id": "6ad52b14-01e5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T17:41:00", "message_id": "052b5910-01e4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T17:31:00", "message_id": "9f75ff04-01e2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T17:21:00", "message_id": "39cb1384-01e1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T17:10:59", "message_id": "d415a514-01df-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T17:00:59", "message_id": "6e67504c-01de-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T16:50:59", "message_id": "08bc752a-01dd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T16:40:59", "message_id": "a3091590-01db-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T16:30:59", "message_id": "3d5ebd72-01da-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T16:20:59", "message_id": "d7a9d1e8-01d8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T16:10:59", "message_id": "7203c9f8-01d7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T16:00:59", "message_id": "0c55d098-01d6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T15:50:59", "message_id": "a6ab0f70-01d4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T15:40:59", "message_id": "4107be94-01d3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T15:30:59", "message_id": "db586be4-01d1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T15:20:59", "message_id": "75ab5230-01d0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T15:10:58", "message_id": "0ffb56ca-01cf-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T15:00:58", "message_id": "aa4f24f6-01cd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T14:50:58", "message_id": "44a4e772-01cc-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T14:40:58", "message_id": "dee8a5f0-01ca-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T14:30:58", "message_id": "79350c2c-01c9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T14:20:58", "message_id": "13850630-01c8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T14:10:58", "message_id": "adda97a6-01c6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T14:00:58", "message_id": "483325d6-01c5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T13:50:58", "message_id": "e282ea42-01c3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T13:40:58", "message_id": "7ccbf7b2-01c2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T13:30:58", "message_id": "17288c8c-01c1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T13:20:57", "message_id": "b170435e-01bf-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T13:10:57", "message_id": "4bc318d4-01be-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T13:00:57", "message_id": "e6192ce0-01bc-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T12:50:57", "message_id": "80635872-01bb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T12:40:57", "message_id": "1ab96558-01ba-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T12:30:57", "message_id": "b512095e-01b8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T12:20:57", "message_id": "4f64cf2a-01b7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T12:10:57", "message_id": "e9bc096e-01b5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T12:00:57", "message_id": "84097d96-01b4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T11:50:57", "message_id": "1e5a3acc-01b3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T11:40:57", "message_id": "b8add248-01b1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T11:30:56", "message_id": "52f88d68-01b0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T11:20:56", "message_id": "ed49f6ec-01ae-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T11:10:56", "message_id": "87adaf00-01ad-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T11:00:56", "message_id": "21e563bc-01ac-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T10:50:56", "message_id": "bc4b698a-01aa-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T10:40:56", "message_id": "569beb24-01a9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T10:30:56", "message_id": "f0f36230-01a7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T10:20:56", "message_id": "8b3a292a-01a6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T10:10:56", "message_id": "25967200-01a5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T10:00:56", "message_id": "bfe9cb4c-01a3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T09:50:56", "message_id": "5a32a6e4-01a2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T09:40:56", "message_id": "f488add0-01a0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T09:30:56", "message_id": "8ee61e32-019f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T09:20:55", "message_id": "292b9258-019e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T09:10:55", "message_id": "c38187ce-019c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T09:00:55", "message_id": "5dea2192-019b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T08:50:55", "message_id": "f82405d6-0199-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T08:40:55", "message_id": "928474aa-0198-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T08:30:55", "message_id": "2cb9d27e-0197-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T08:20:55", "message_id": "c7184d5c-0195-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T08:10:55", "message_id": "615a89ae-0194-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T08:00:55", "message_id": "fbae3ce6-0192-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T07:50:55", "message_id": "961072ba-0191-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T07:40:55", "message_id": "3065f6e8-0190-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T07:30:54", "message_id": "cab25be4-018e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T07:20:54", "message_id": "650861cc-018d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T07:10:54", "message_id": "ff5ac8fc-018b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T07:00:54", "message_id": "99a731b8-018a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T06:50:54", "message_id": "33fc29be-0189-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T06:40:54", "message_id": "ce4fc612-0187-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T06:30:54", "message_id": "68a533fc-0186-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T06:20:54", "message_id": "02f25f9a-0185-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T06:10:54", "message_id": "9d3d25dc-0183-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T06:00:54", "message_id": "378be6b6-0182-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T05:50:54", "message_id": "d1e67dd6-0180-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T05:40:53", "message_id": "6c377086-017f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T05:30:53", "message_id": "067ed00a-017e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T05:20:53", "message_id": "a0d7a0ca-017c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T05:10:53", "message_id": "3b297236-017b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T05:00:53", "message_id": "d584ac80-0179-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T04:50:53", "message_id": "6fc86e14-0178-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T04:40:53", "message_id": "0a16b7ac-0177-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T04:30:53", "message_id": "a467b2ea-0175-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T04:20:53", "message_id": "3eb91688-0174-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T04:10:53", "message_id": "d90a8066-0172-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T04:00:53", "message_id": "73662a54-0171-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T03:50:52", "message_id": "0db5df98-0170-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T03:40:52", "message_id": "a80bae30-016e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T03:30:52", "message_id": "425ca158-016d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T03:20:52", "message_id": "dcac9ed6-016b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T03:10:52", "message_id": "76fea58a-016a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T03:00:52", "message_id": "11518104-0169-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T02:50:52", "message_id": "aba1fc04-0167-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T02:40:52", "message_id": "45efabfa-0166-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T02:30:52", "message_id": "e04101f6-0164-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T02:20:52", "message_id": "7a9fe8ae-0163-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T02:10:52", "message_id": "14f47868-0162-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T02:00:51", "message_id": "af4027b6-0160-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T01:50:52", "message_id": "49b304be-015f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T01:40:51", "message_id": "e3f63598-015d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T01:30:51", "message_id": "7e41cd30-015c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T01:20:51", "message_id": "18a22e3a-015b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T01:10:51", "message_id": "b2f2d8f6-0159-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T01:00:51", "message_id": "4d4cea06-0158-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T00:50:51", "message_id": "e7708af4-0156-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T00:40:51", "message_id": "81ce4c00-0155-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T00:30:51", "message_id": "1c1cbbe0-0154-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T00:20:51", "message_id": "b667608a-0152-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T00:10:51", "message_id": "50c0f940-0151-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-10T00:00:50", "message_id": "eb109e08-014f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T23:50:50", "message_id": "855d1e70-014e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T23:40:50", "message_id": "1fab8cf2-014d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T23:30:50", "message_id": "b9f55998-014b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T23:20:50", "message_id": "54545108-014a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T23:10:50", "message_id": "eea2db1e-0148-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T23:00:50", "message_id": "891d6efe-0147-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T22:50:50", "message_id": "2346af7e-0146-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T22:40:50", "message_id": "bd9003d4-0144-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T22:30:50", "message_id": "57e55972-0143-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T22:20:50", "message_id": "f2482442-0141-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T22:10:49", "message_id": "8c85cc82-0140-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T22:00:49", "message_id": "26e2b8c8-013f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T21:50:49", "message_id": "c1371e0c-013d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T21:40:49", "message_id": "5b881fe4-013c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T21:30:49", "message_id": "f5e1dffa-013a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T21:20:49", "message_id": "90344400-0139-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T21:10:49", "message_id": "2a8d1182-0138-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T21:00:49", "message_id": "c4e32da4-0136-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T20:50:49", "message_id": "5f313934-0135-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T20:40:49", "message_id": "f987457a-0133-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T20:30:49", "message_id": "93cc08ac-0132-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T20:20:49", "message_id": "2e3399de-0131-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T20:10:48", "message_id": "c879b8b8-012f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T20:00:48", "message_id": "62c63240-012e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T19:50:48", "message_id": "fd221428-012c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T19:40:48", "message_id": "976a6604-012b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T19:30:48", "message_id": "31c49f96-012a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T19:20:48", "message_id": "cc23b77c-0128-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T19:10:48", "message_id": "6668754a-0127-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T19:00:48", "message_id": "00b10038-0126-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T18:50:48", "message_id": "9afab49c-0124-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T18:40:48", "message_id": "3551661e-0123-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T18:30:48", "message_id": "cfa0f9e8-0121-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T18:20:47", "message_id": "69eed90e-0120-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T18:10:47", "message_id": "043defa6-011f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T18:00:47", "message_id": "9e89ec24-011d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T17:50:47", "message_id": "38e0312c-011c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T17:40:47", "message_id": "d32e21fa-011a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T17:30:47", "message_id": "6d7dabc4-0119-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T17:20:47", "message_id": "07d24704-0118-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T17:10:47", "message_id": "a2203dd6-0116-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T17:00:47", "message_id": "3c75af94-0115-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T16:50:47", "message_id": "d6c11932-0113-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T16:40:46", "message_id": "71121e7a-0112-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T16:30:46", "message_id": "0b73c4f2-0111-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T16:20:46", "message_id": "a5b9db20-010f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T16:10:46", "message_id": "40120e4c-010e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T16:00:46", "message_id": "da61618e-010c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T15:50:48", "message_id": "7608ebea-010b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T15:40:47", "message_id": "0f5a8a80-010a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T15:30:46", "message_id": "a9747470-0108-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T15:20:46", "message_id": "43ad34ca-0107-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T15:10:46", "message_id": "de12ad80-0105-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T15:00:46", "message_id": "78550dfe-0104-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T14:50:46", "message_id": "12a99d36-0103-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T14:40:45", "message_id": "acf82774-0101-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T14:30:45", "message_id": "474517da-0100-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T14:20:45", "message_id": "e19a5c20-00fe-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T14:10:45", "message_id": "7bf3ba20-00fd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T14:00:45", "message_id": "1638599e-00fc-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T13:50:45", "message_id": "b092370a-00fa-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T13:40:45", "message_id": "4ad888de-00f9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T13:30:45", "message_id": "e52d612c-00f7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T13:20:45", "message_id": "7fd1b4fa-00f6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T13:10:45", "message_id": "19c55320-00f5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T13:00:45", "message_id": "b41fc9fc-00f3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T12:50:44", "message_id": "4e67b24c-00f2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T12:40:44", "message_id": "e8c17f5a-00f0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T12:30:44", "message_id": "83157b6c-00ef-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T12:20:44", "message_id": "1d61bdea-00ee-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T12:10:44", "message_id": "b7b542a6-00ec-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T12:00:44", "message_id": "520786cc-00eb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T11:50:44", "message_id": "ec56eb84-00e9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T11:40:44", "message_id": "86a7e0a0-00e8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T11:30:44", "message_id": "21023a44-00e7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T11:20:44", "message_id": "bb4f2654-00e5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T11:10:44", "message_id": "55a558ba-00e4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T11:00:43", "message_id": "efee1bc0-00e2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T10:50:43", "message_id": "8a41f694-00e1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T10:40:43", "message_id": "248fcb06-00e0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T10:30:43", "message_id": "bee7bfbc-00de-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T10:20:43", "message_id": "592fab36-00dd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T10:10:43", "message_id": "f3866c44-00db-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T10:00:43", "message_id": "8dea46b8-00da-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T09:50:43", "message_id": "282aa6ac-00d9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T09:40:43", "message_id": "c2811c24-00d7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T09:30:43", "message_id": "5cd245ac-00d6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T09:20:43", "message_id": "f7267cc4-00d4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T09:10:43", "message_id": "917be2c0-00d3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T09:00:42", "message_id": "2bcc4f9c-00d2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T08:50:42", "message_id": "c6199fde-00d0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T08:40:42", "message_id": "606e5f36-00cf-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T08:30:42", "message_id": "fac731e0-00cd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T08:20:42", "message_id": "95185032-00cc-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T08:10:42", "message_id": "2f63b0e8-00cb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T08:00:42", "message_id": "c9b31df2-00c9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T07:50:42", "message_id": "6404bd9a-00c8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T07:40:42", "message_id": "fe673784-00c6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T07:30:42", "message_id": "98adc094-00c5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T07:20:41", "message_id": "32f59426-00c4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T07:10:41", "message_id": "cd4562c4-00c2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T07:00:41", "message_id": "6799e5c2-00c1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T06:50:41", "message_id": "01e73d02-00c0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T06:40:41", "message_id": "9c3c3a6c-00be-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T06:30:41", "message_id": "369069fa-00bd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T06:20:41", "message_id": "d0da130a-00bb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T06:10:41", "message_id": "6b2ea72e-00ba-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T06:00:41", "message_id": "058e4e34-00b9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T05:50:41", "message_id": "9fd7bac2-00b7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T05:40:41", "message_id": "3a2d1a7e-00b6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T05:30:41", "message_id": "d47b4eb8-00b4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T05:20:40", "message_id": "6ecd9c84-00b3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T05:10:40", "message_id": "09207f10-00b2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T05:00:40", "message_id": "a3767d28-00b0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T04:50:40", "message_id": "3dd68e0a-00af-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T04:40:40", "message_id": "d82e2596-00ad-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T04:30:40", "message_id": "72800b66-00ac-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T04:20:40", "message_id": "0cdb3962-00ab-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T04:10:40", "message_id": "a7371276-00a9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T04:00:40", "message_id": "419d5476-00a8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T03:50:40", "message_id": "dc278a54-00a6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T03:40:40", "message_id": "763e9904-00a5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T03:30:40", "message_id": "10b6d7be-00a4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T03:20:40", "message_id": "aaea0e7a-00a2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T03:10:40", "message_id": "45423e72-00a1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T03:00:40", "message_id": "df99b600-009f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T02:50:40", "message_id": "79df9042-009e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T02:40:40", "message_id": "14591a46-009d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T02:30:39", "message_id": "ae86865a-009b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T02:20:39", "message_id": "48dadb18-009a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T02:10:39", "message_id": "e320ce6e-0098-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T02:00:39", "message_id": "7d81fe44-0097-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T01:50:39", "message_id": "17bc895e-0096-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T01:40:39", "message_id": "b20b37d2-0094-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T01:30:39", "message_id": "4c5f192c-0093-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T01:20:39", "message_id": "e6b75126-0091-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T01:10:39", "message_id": "8102bb3c-0090-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T01:00:39", "message_id": "1b5ccbf2-008f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T00:50:38", "message_id": "b5a7ff9e-008d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T00:40:38", "message_id": "4ff22680-008c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T00:30:38", "message_id": "ea4e30a4-008a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T00:20:38", "message_id": "84a85eec-0089-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T00:10:38", "message_id": "1ef44242-0088-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-09T00:00:38", "message_id": "b9447c42-0086-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T23:50:38", "message_id": "538f25e2-0085-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T23:40:38", "message_id": "ede6df1a-0083-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T23:30:38", "message_id": "8833f550-0082-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T23:20:38", "message_id": "227e6dc2-0081-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T23:10:38", "message_id": "bcd5725a-007f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T23:00:38", "message_id": "575309f2-007e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T22:50:37", "message_id": "f177f986-007c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T22:40:37", "message_id": "8bd03e6e-007b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T22:30:37", "message_id": "26127c50-007a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T22:20:37", "message_id": "c06b65fc-0078-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T22:10:37", "message_id": "5abd1a30-0077-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T22:00:37", "message_id": "f50d543a-0075-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T21:50:37", "message_id": "8f5f2e5c-0074-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T21:40:37", "message_id": "29b4f61e-0073-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T21:30:37", "message_id": "c4072a7c-0071-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T21:20:37", "message_id": "5e64cf22-0070-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T21:10:36", "message_id": "f8adc8b0-006e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T21:00:36", "message_id": "92f4f44a-006d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T20:50:36", "message_id": "2d481632-006c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T20:40:36", "message_id": "c7988020-006a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T20:30:36", "message_id": "61f05154-0069-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T20:20:36", "message_id": "fc3987c8-0067-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T20:10:36", "message_id": "96954f2a-0066-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T20:00:36", "message_id": "30dc3348-0065-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T19:50:36", "message_id": "cb336cce-0063-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T19:40:36", "message_id": "65825a26-0062-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T19:30:35", "message_id": "ffcfeec4-0060-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T19:20:35", "message_id": "9a20345e-005f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T19:10:35", "message_id": "34743bce-005e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T19:00:35", "message_id": "cec77580-005c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T18:50:35", "message_id": "691498fe-005b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T18:40:35", "message_id": "03669fb2-005a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T18:30:35", "message_id": "9dc4d12a-0058-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T18:20:35", "message_id": "380711aa-0057-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T18:10:35", "message_id": "d25d49a6-0055-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T18:00:35", "message_id": "6cb44308-0054-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T17:50:35", "message_id": "070803e2-0053-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T17:40:35", "message_id": "a15fe29a-0051-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T17:30:35", "message_id": "3bb21676-0050-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T17:20:34", "message_id": "d6016148-004e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T17:10:34", "message_id": "7051a0a2-004d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T17:00:34", "message_id": "0aa13ab6-004c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T16:50:34", "message_id": "a4f2f0a2-004a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T16:40:34", "message_id": "3f4f9f80-0049-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T16:30:34", "message_id": "d99f02f8-0047-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T16:20:34", "message_id": "73f3ea3c-0046-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T16:10:34", "message_id": "0e42f288-0045-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T16:00:34", "message_id": "a89a0378-0043-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T15:50:34", "message_id": "42ed1930-0042-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T15:40:34", "message_id": "dd38bfa0-0040-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T15:30:33", "message_id": "778d9c3a-003f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T15:20:33", "message_id": "11e2a30e-003e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T15:10:33", "message_id": "ac3443c4-003c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T15:00:33", "message_id": "467ef336-003b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T14:50:33", "message_id": "e0d5306e-0039-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T14:40:33", "message_id": "7b2031ac-0038-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T14:30:33", "message_id": "1577e58a-0037-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T14:20:33", "message_id": "afc61aaa-0035-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T14:10:33", "message_id": "4a24e04c-0034-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T14:00:33", "message_id": "e4927fe2-0032-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T13:50:33", "message_id": "7eb9fb4c-0031-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T13:40:33", "message_id": "190eb194-0030-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T13:30:32", "message_id": "b3645b56-002e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T13:20:32", "message_id": "4dbc019c-002d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T13:10:32", "message_id": "e807ddae-002b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T13:00:32", "message_id": "8256b56c-002a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T12:50:32", "message_id": "1cad6cf2-0029-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T12:40:32", "message_id": "b6f57f5e-0027-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T12:30:32", "message_id": "514f9762-0026-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T12:20:32", "message_id": "eb965a38-0024-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T12:10:32", "message_id": "85e34134-0023-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T12:00:32", "message_id": "203d6a18-0022-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T11:50:31", "message_id": "ba8c8664-0020-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T11:40:32", "message_id": "54f22bf2-001f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T11:30:31", "message_id": "ef46a568-001d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T11:20:31", "message_id": "898dc22a-001c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T11:10:31", "message_id": "23f18c5e-001b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T11:00:31", "message_id": "be39d7c8-0019-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T10:50:31", "message_id": "589043fe-0018-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T10:40:31", "message_id": "f2ea235e-0016-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T10:30:31", "message_id": "8d4234e8-0015-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T10:20:31", "message_id": "2799434e-0014-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T10:10:31", "message_id": "c201c48a-0012-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T10:00:31", "message_id": "5c2f15dc-0011-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T09:50:31", "message_id": "f67e9902-000f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T09:40:30", "message_id": "90cac3e8-000e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T09:30:30", "message_id": "2b23e2dc-000d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T09:20:30", "message_id": "c56dea74-000b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T09:10:30", "message_id": "5fbc21ec-000a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T09:00:30", "message_id": "fa13f5fa-0008-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T08:50:30", "message_id": "94679fdc-0007-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T08:40:30", "message_id": "2ebbe888-0006-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T08:30:30", "message_id": "c9173844-0004-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T08:20:30", "message_id": "635c2f2e-0003-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T08:10:30", "message_id": "fdbcff78-0001-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T08:00:30", "message_id": "98045b78-0000-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T07:50:30", "message_id": "3250081e-ffff-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T07:40:29", "message_id": "cca2ef28-fffd-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T07:30:29", "message_id": "66f362da-fffc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T07:20:29", "message_id": "014ac97e-fffb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T07:10:29", "message_id": "9b9642da-fff9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T07:00:29", "message_id": "35e0e266-fff8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T06:50:29", "message_id": "d03e8e96-fff6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T06:40:29", "message_id": "6a888328-fff5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T06:30:29", "message_id": "04d7619e-fff4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T06:20:29", "message_id": "9f27a0b2-fff2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T06:10:29", "message_id": "397c73e2-fff1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T06:00:29", "message_id": "d3d1bbc0-ffef-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T05:50:28", "message_id": "6e2466de-ffee-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T05:40:28", "message_id": "087feb24-ffed-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T05:30:28", "message_id": "a2ccfb74-ffeb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T05:20:28", "message_id": "3d16d558-ffea-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T05:10:28", "message_id": "d76bc228-ffe8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T05:00:28", "message_id": "71bf713c-ffe7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T04:50:28", "message_id": "0c06e574-ffe6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T04:40:28", "message_id": "a663c526-ffe4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T04:30:28", "message_id": "40aa4418-ffe3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T04:20:28", "message_id": "db045e74-ffe1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T04:10:28", "message_id": "754faea4-ffe0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T04:00:27", "message_id": "0f9cca66-ffdf-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T03:50:27", "message_id": "a9ea81a0-ffdd-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T03:40:27", "message_id": "44404494-ffdc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T03:30:27", "message_id": "de929d3c-ffda-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T03:20:27", "message_id": "78e1f3d0-ffd9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T03:10:27", "message_id": "13370b98-ffd8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T03:00:27", "message_id": "ad84aac2-ffd6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T02:50:27", "message_id": "47d52d42-ffd5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T02:40:27", "message_id": "e222c8de-ffd3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T02:30:27", "message_id": "7c79402c-ffd2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T02:20:27", "message_id": "16d77122-ffd1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T02:10:26", "message_id": "b1124444-ffcf-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T02:00:26", "message_id": "4b6abc12-ffce-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T01:50:26", "message_id": "e5b88706-ffcc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T01:40:26", "message_id": "800b851c-ffcb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T01:30:26", "message_id": "1a59b8fc-ffca-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T01:20:26", "message_id": "b4b0922e-ffc8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T01:10:26", "message_id": "4f048936-ffc7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T01:00:26", "message_id": "e956ca46-ffc5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T00:50:26", "message_id": "83a8bd18-ffc4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T00:40:26", "message_id": "1dff6a80-ffc3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T00:30:26", "message_id": "b84b37ba-ffc1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T00:20:26", "message_id": "52e9a48e-ffc0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T00:10:25", "message_id": "ecee8a2e-ffbe-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-08T00:00:25", "message_id": "875626e6-ffbd-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T23:50:25", "message_id": "21908eb0-ffbc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T23:40:25", "message_id": "bbee94c2-ffba-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T23:30:25", "message_id": "56397b8e-ffb9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T23:20:25", "message_id": "f0b11278-ffb7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T23:10:25", "message_id": "8afd0a32-ffb6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T23:00:25", "message_id": "255d20b4-ffb5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T22:50:25", "message_id": "bf72451e-ffb3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T22:40:25", "message_id": "59cd3cba-ffb2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T22:30:24", "message_id": "f41ee66c-ffb0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T22:20:24", "message_id": "8e66f7ca-ffaf-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T22:10:24", "message_id": "28c77332-ffae-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T22:00:24", "message_id": "c30fa45c-ffac-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T21:50:24", "message_id": "5d5336d4-ffab-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T21:40:24", "message_id": "f7acd016-ffa9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T21:30:24", "message_id": "9209d084-ffa8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T21:20:24", "message_id": "2c49a5a4-ffa7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T21:10:24", "message_id": "c693a742-ffa5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T21:00:24", "message_id": "60ecd7e8-ffa4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T20:50:23", "message_id": "fb362c98-ffa2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T20:40:23", "message_id": "95896820-ffa1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T20:30:23", "message_id": "2fe24c7c-ffa0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T20:20:23", "message_id": "ca285f58-ff9e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T20:10:23", "message_id": "647852d6-ff9d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T20:00:23", "message_id": "fecfa214-ff9b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T19:50:23", "message_id": "991ba7fc-ff9a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T19:40:23", "message_id": "3370ca6e-ff99-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T19:30:23", "message_id": "cdc3a3e0-ff97-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T19:20:23", "message_id": "68178f30-ff96-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T19:10:22", "message_id": "0264f430-ff95-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T19:00:22", "message_id": "9caf5924-ff93-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T18:50:22", "message_id": "370b3d8c-ff92-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T18:40:22", "message_id": "d1579342-ff90-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T18:30:22", "message_id": "6b9fa82e-ff8f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T18:20:22", "message_id": "05f158a2-ff8e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T18:10:22", "message_id": "a044d43a-ff8c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T18:00:22", "message_id": "3a962e50-ff8b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T17:50:22", "message_id": "d4e6ca52-ff89-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T17:40:22", "message_id": "6f3c9c5a-ff88-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T17:30:22", "message_id": "098d9b76-ff87-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T17:20:21", "message_id": "a3db213c-ff85-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T17:10:21", "message_id": "3e31afb4-ff84-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T17:00:21", "message_id": "d8785520-ff82-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T16:50:21", "message_id": "72c213d4-ff81-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T16:40:21", "message_id": "0d16ac12-ff80-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T16:30:21", "message_id": "a7720934-ff7e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T16:20:21", "message_id": "41b5ebfc-ff7d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T16:10:21", "message_id": "dc1104e0-ff7b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T16:00:21", "message_id": "7665214a-ff7a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T15:50:21", "message_id": "10b41a82-ff79-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T15:40:20", "message_id": "ab0479ee-ff77-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T15:30:20", "message_id": "454ec5e2-ff76-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T15:20:20", "message_id": "dfa19180-ff74-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T15:10:20", "message_id": "79f0c03c-ff73-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T15:00:20", "message_id": "14411d50-ff72-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T14:50:20", "message_id": "ae9509d6-ff70-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T14:40:20", "message_id": "48e47c1c-ff6f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T14:30:20", "message_id": "e349967c-ff6d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T14:20:20", "message_id": "7d96a226-ff6c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T14:10:20", "message_id": "17e701c4-ff6b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T14:00:20", "message_id": "b236b578-ff69-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T13:50:20", "message_id": "4c85378c-ff68-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T13:40:20", "message_id": "e6eaf0fc-ff66-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T13:30:19", "message_id": "81335700-ff65-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T13:20:19", "message_id": "1b8317f2-ff64-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T13:10:19", "message_id": "b5d90a16-ff62-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T13:00:19", "message_id": "50343bfa-ff61-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T12:50:19", "message_id": "ea863f48-ff5f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T12:40:19", "message_id": "84d51f62-ff5e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T12:30:19", "message_id": "1f3014a6-ff5d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T12:20:19", "message_id": "b97b2e9e-ff5b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T12:10:19", "message_id": "53c94ece-ff5a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T12:00:19", "message_id": "ee19508e-ff58-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T11:50:19", "message_id": "886c2622-ff57-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T11:40:18", "message_id": "22c1887c-ff56-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T11:30:18", "message_id": "bd13381e-ff54-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T11:20:18", "message_id": "57622436-ff53-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T11:10:18", "message_id": "f1d220fe-ff51-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T11:00:18", "message_id": "8c14ea40-ff50-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T10:50:18", "message_id": "266a3e1c-ff4f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T10:40:18", "message_id": "c0c2d354-ff4d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T10:30:18", "message_id": "5b0ba9f6-ff4c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T10:20:18", "message_id": "f561606a-ff4a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T10:10:18", "message_id": "8fbcc61a-ff49-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T10:00:18", "message_id": "2a1b3e50-ff48-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T09:50:18", "message_id": "c4563350-ff46-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T09:40:18", "message_id": "5eaf8e8a-ff45-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T09:30:17", "message_id": "f8f07aba-ff43-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T09:20:17", "message_id": "934bc30a-ff42-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T09:10:17", "message_id": "2da06b38-ff41-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T09:00:17", "message_id": "c7e36a62-ff3f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T08:50:17", "message_id": "623592a4-ff3e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T08:40:17", "message_id": "fc8e676a-ff3c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T08:30:17", "message_id": "96d6e3b2-ff3b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T08:20:17", "message_id": "311eba78-ff3a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T08:10:17", "message_id": "cb71e340-ff38-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T08:00:16", "message_id": "65bec320-ff37-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T07:50:16", "message_id": "000f13aa-ff36-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T07:40:16", "message_id": "9a5e59c2-ff34-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T07:30:16", "message_id": "34bac930-ff33-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T07:20:16", "message_id": "cf00b84e-ff31-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T07:10:16", "message_id": "694f4e6c-ff30-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T07:00:16", "message_id": "03a80e56-ff2f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T06:50:16", "message_id": "9dfa01be-ff2d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T06:40:16", "message_id": "38464450-ff2c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T06:30:16", "message_id": "d2944ed2-ff2a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T06:20:16", "message_id": "6cf4231e-ff29-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T06:10:16", "message_id": "074d4942-ff28-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T06:00:15", "message_id": "a19111e8-ff26-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T05:50:15", "message_id": "3bea17be-ff25-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T05:40:15", "message_id": "d63229a8-ff23-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T05:30:15", "message_id": "70972cfc-ff22-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T05:20:15", "message_id": "0ada1b00-ff21-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T05:10:15", "message_id": "a522e108-ff1f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T05:00:15", "message_id": "3f7af6c0-ff1e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T04:50:15", "message_id": "d9cc40a0-ff1c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T04:40:15", "message_id": "74201520-ff1b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T04:30:15", "message_id": "0e7e1844-ff1a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T04:20:15", "message_id": "a8c7cf64-ff18-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T04:10:15", "message_id": "431fb8d0-ff17-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T04:00:14", "message_id": "dd6cc9f2-ff15-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T03:50:14", "message_id": "77bfc934-ff14-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T03:40:14", "message_id": "12179518-ff13-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T03:30:14", "message_id": "ac5d0394-ff11-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T03:20:14", "message_id": "46b23e70-ff10-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T03:10:14", "message_id": "e11882f0-ff0e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T03:00:14", "message_id": "7b5bd2ba-ff0d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T02:50:14", "message_id": "15c41bfc-ff0c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T02:40:14", "message_id": "b010d6f2-ff0a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T02:30:14", "message_id": "4a5eed04-ff09-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T02:20:14", "message_id": "e4aafa9e-ff07-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T02:10:14", "message_id": "7efe384c-ff06-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T02:00:13", "message_id": "1948bb7c-ff05-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T01:50:13", "message_id": "b3a456ec-ff03-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T01:40:13", "message_id": "4dee05a6-ff02-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T01:30:13", "message_id": "e843b800-ff00-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T01:20:13", "message_id": "82982442-feff-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T01:10:13", "message_id": "1cec2842-fefe-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T01:00:13", "message_id": "b735151e-fefc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T00:50:13", "message_id": "518aae28-fefb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T00:40:13", "message_id": "ebe55d80-fef9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T00:30:13", "message_id": "8624fc2c-fef8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T00:20:12", "message_id": "207a878a-fef7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T00:10:12", "message_id": "bacb9ac4-fef5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-07T00:00:12", "message_id": "551640ea-fef4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T23:50:12", "message_id": "ef750cb8-fef2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T23:40:12", "message_id": "89c8ab82-fef1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T23:30:12", "message_id": "241a5be2-fef0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T23:20:12", "message_id": "be77a4bc-feee-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T23:10:12", "message_id": "58b750f6-feed-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T23:00:12", "message_id": "f33cb7c6-feeb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T22:50:12", "message_id": "8d5ced00-feea-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T22:40:12", "message_id": "27b49ed6-fee9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T22:30:12", "message_id": "c2065e68-fee7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T22:20:11", "message_id": "5c535e14-fee6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T22:10:11", "message_id": "f6b4ace4-fee4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T22:00:12", "message_id": "911ba942-fee3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T21:50:11", "message_id": "2b546ec4-fee2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T21:40:11", "message_id": "c5af4af4-fee0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T21:30:11", "message_id": "5ff58152-fedf-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T21:20:11", "message_id": "fa481d48-fedd-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T21:10:11", "message_id": "949b232e-fedc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T21:00:11", "message_id": "2ee37dca-fedb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T20:50:11", "message_id": "c93a12f0-fed9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T20:40:11", "message_id": "63983bd0-fed8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T20:30:11", "message_id": "fde46134-fed6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T20:20:11", "message_id": "983d62f0-fed5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T20:10:10", "message_id": "3281a4ae-fed4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T20:00:10", "message_id": "cceb68ec-fed2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T19:50:10", "message_id": "67324bfc-fed1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T19:40:10", "message_id": "018981f4-fed0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T19:30:10", "message_id": "9bdeb3f2-fece-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T19:20:10", "message_id": "3628738c-fecd-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T19:10:10", "message_id": "d078c614-fecb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T19:00:10", "message_id": "6abd6402-feca-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T18:50:10", "message_id": "052a2a68-fec9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T18:40:10", "message_id": "9f713348-fec7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T18:30:09", "message_id": "39b9b6b6-fec6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T18:20:09", "message_id": "d411372c-fec4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T18:10:09", "message_id": "6e5a2d5e-fec3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T18:00:09", "message_id": "08a16b86-fec2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T17:50:09", "message_id": "a2f81f9c-fec0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T17:40:09", "message_id": "3d536508-febf-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T17:30:09", "message_id": "d79b3458-febd-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T17:20:09", "message_id": "71f35668-febc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T17:10:09", "message_id": "0c3a979c-febb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T17:00:09", "message_id": "a68c2358-feb9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T16:50:09", "message_id": "40e03496-feb8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T16:40:08", "message_id": "db2bc012-feb6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T16:30:08", "message_id": "757f38e4-feb5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T16:20:08", "message_id": "0fd106ae-feb4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T16:10:08", "message_id": "aa288576-feb2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T16:00:08", "message_id": "447cb748-feb1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T15:50:08", "message_id": "dec7080a-feaf-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T15:40:08", "message_id": "7921326a-feae-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T15:30:08", "message_id": "13686fde-fead-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T15:20:08", "message_id": "adba6012-feab-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T15:10:08", "message_id": "480a36b2-feaa-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T15:00:08", "message_id": "e25c89ce-fea8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T14:50:07", "message_id": "7cafa2ce-fea7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T14:40:07", "message_id": "170ff55a-fea6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T14:30:07", "message_id": "b16af214-fea4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T14:20:07", "message_id": "4bba3020-fea3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T14:10:07", "message_id": "e608844e-fea1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T14:00:07", "message_id": "8073c00e-fea0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T13:50:07", "message_id": "1ab92598-fe9f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T13:40:07", "message_id": "b4fd6b0c-fe9d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T13:30:07", "message_id": "4f508696-fe9c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T13:20:07", "message_id": "e9a190ca-fe9a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T13:10:07", "message_id": "83ed100c-fe99-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T13:00:07", "message_id": "1e488a84-fe98-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T12:50:07", "message_id": "b89e7ba4-fe96-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T12:40:07", "message_id": "52f8f23a-fe95-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T12:30:06", "message_id": "ed41bebe-fe93-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T12:20:06", "message_id": "878ec946-fe92-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T12:10:06", "message_id": "21e8f3b0-fe91-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T12:00:06", "message_id": "bc368d80-fe8f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T11:50:06", "message_id": "568cae20-fe8e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T11:40:06", "message_id": "f0e79f7c-fe8c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T11:30:07", "message_id": "8baee2ce-fe8b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T11:20:06", "message_id": "2581d408-fe8a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T11:10:06", "message_id": "bfcbfd38-fe88-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T11:00:06", "message_id": "5a22e182-fe87-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T10:50:06", "message_id": "f4766c06-fe85-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T10:40:05", "message_id": "8ec9c570-fe84-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T10:30:05", "message_id": "29188654-fe83-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T10:20:05", "message_id": "c36a5194-fe81-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T10:10:05", "message_id": "5db4d6cc-fe80-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T10:00:05", "message_id": "f80d02f0-fe7e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T09:50:05", "message_id": "9258d250-fe7d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T09:40:05", "message_id": "2cafc9dc-fe7c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T09:30:05", "message_id": "c7023a9e-fe7a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T09:20:05", "message_id": "614c7e54-fe79-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T09:10:05", "message_id": "fba7a64c-fe77-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T09:00:05", "message_id": "95f6761c-fe76-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T08:50:04", "message_id": "3046fc48-fe75-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T08:40:04", "message_id": "ca97be38-fe73-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T08:30:04", "message_id": "64e7ae5a-fe72-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T08:20:04", "message_id": "ff3d8ef4-fe70-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T08:10:04", "message_id": "99908d96-fe6f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T08:00:04", "message_id": "33df4286-fe6e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T07:50:04", "message_id": "ce32409c-fe6c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T07:40:04", "message_id": "68905cfc-fe6b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T07:30:04", "message_id": "02e1f420-fe6a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T07:20:04", "message_id": "9d364e6a-fe68-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T07:10:04", "message_id": "3787ddbe-fe67-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T07:00:04", "message_id": "d1d5d8c8-fe65-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T06:50:03", "message_id": "6c2543c0-fe64-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T06:40:03", "message_id": "068175d0-fe63-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T06:30:03", "message_id": "a0d311e0-fe61-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T06:20:03", "message_id": "3b2129d2-fe60-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T06:10:03", "message_id": "d56d9b80-fe5e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T06:00:03", "message_id": "6fbeedf8-fe5d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T05:50:03", "message_id": "0a1220c0-fe5c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T05:40:03", "message_id": "a45be294-fe5a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T05:30:03", "message_id": "3eafe6f8-fe59-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T05:20:03", "message_id": "d905508c-fe57-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T05:10:03", "message_id": "73598c86-fe56-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T05:00:02", "message_id": "0da73736-fe55-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T04:50:02", "message_id": "a7f79d96-fe53-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T04:40:02", "message_id": "424e5f26-fe52-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T04:30:02", "message_id": "dca50932-fe50-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T04:20:02", "message_id": "76eb5642-fe4f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T04:10:02", "message_id": "1139005c-fe4e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T04:00:02", "message_id": "ab93029e-fe4c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T03:50:02", "message_id": "45dfe9a4-fe4b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T03:40:02", "message_id": "e034760c-fe49-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T03:30:02", "message_id": "7a7fca2e-fe48-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T03:20:01", "message_id": "14ccb1a2-fe47-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T03:10:01", "message_id": "af29c868-fe45-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T03:00:01", "message_id": "49754b74-fe44-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T02:50:01", "message_id": "e3c5e398-fe42-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T02:40:01", "message_id": "7e12af64-fe41-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T02:30:01", "message_id": "18723de2-fe40-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T02:20:01", "message_id": "b2c40b66-fe3e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T02:10:01", "message_id": "4d1245a4-fe3d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T02:00:01", "message_id": "e768b86a-fe3b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T01:50:01", "message_id": "81b94b2a-fe3a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T01:40:01", "message_id": "1c17679e-fe39-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T01:30:01", "message_id": "b6699698-fe37-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T01:20:01", "message_id": "50be925e-fe36-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T01:10:00", "message_id": "eb096e6c-fe34-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T01:00:00", "message_id": "8563876a-fe33-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T00:50:00", "message_id": "1fabdab8-fe32-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T00:40:00", "message_id": "ba02026a-fe30-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T00:30:00", "message_id": "544de43a-fe2f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T00:20:00", "message_id": "ee9cce18-fe2d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T00:10:00", "message_id": "88f40550-fe2c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-06T00:00:00", "message_id": "23422634-fe2b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T23:50:00", "message_id": "bd9681dc-fe29-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T23:40:00", "message_id": "57eb6bfa-fe28-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T23:30:00", "message_id": "f23a466a-fe26-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T23:20:00", "message_id": "8c9924e4-fe25-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T23:10:00", "message_id": "270cfc0a-fe24-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T23:00:00", "message_id": "c16223b8-fe22-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T22:49:59", "message_id": "5b7e48de-fe21-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T22:39:59", "message_id": "f5cda332-fe1f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T22:29:59", "message_id": "9026dacc-fe1e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T22:19:59", "message_id": "2a790c1e-fe1d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T22:09:59", "message_id": "c4c5c99e-fe1b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T21:59:59", "message_id": "5f17f582-fe1a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T21:49:59", "message_id": "f966273c-fe18-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T21:39:59", "message_id": "93b36d38-fe17-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T21:29:58", "message_id": "2e002fe0-fe16-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T21:19:58", "message_id": "c8562830-fe14-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T21:09:58", "message_id": "62a92326-fe13-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T20:59:58", "message_id": "fcfd0f16-fe11-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T20:49:58", "message_id": "97462136-fe10-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T20:39:58", "message_id": "319671c0-fe0f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T20:29:58", "message_id": "cbe63596-fe0d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T20:19:58", "message_id": "663dccb4-fe0c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T20:09:58", "message_id": "008a4038-fe0b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T19:59:58", "message_id": "9add19b4-fe09-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T19:49:58", "message_id": "3532b61a-fe08-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T19:39:57", "message_id": "cf8d8ad4-fe06-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T19:29:57", "message_id": "69da63a2-fe05-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T19:19:57", "message_id": "042c1efc-fe04-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T19:09:57", "message_id": "9e7eca60-fe02-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T18:59:57", "message_id": "38cee7be-fe01-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T18:49:57", "message_id": "d320384c-fdff-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T18:39:57", "message_id": "6d779ef0-fdfe-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T18:29:57", "message_id": "07cc5682-fdfd-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T18:19:57", "message_id": "a21fa204-fdfb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T18:09:57", "message_id": "3c801a4c-fdfa-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T17:59:57", "message_id": "d6c6a410-fdf8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T17:49:57", "message_id": "711aaff4-fdf7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T17:39:57", "message_id": "0b6d7d54-fdf6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T17:29:56", "message_id": "a5c394b2-fdf4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T17:19:56", "message_id": "401296be-fdf3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T17:09:56", "message_id": "da6796ee-fdf1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T16:59:56", "message_id": "74b8c83c-fdf0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T16:49:56", "message_id": "0f09c9d8-fdef-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T16:39:56", "message_id": "a9634470-fded-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T16:29:56", "message_id": "43c2833e-fdec-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T16:19:56", "message_id": "de0f7250-fdea-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T16:09:56", "message_id": "7869430a-fde9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T15:59:56", "message_id": "12bcaaa2-fde8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T15:49:56", "message_id": "ad167c38-fde6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T15:39:56", "message_id": "47681532-fde5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T15:29:56", "message_id": "e1b77062-fde3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T15:19:56", "message_id": "7c2daef6-fde2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T15:09:55", "message_id": "1657278e-fde1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T14:59:55", "message_id": "b0a6cc56-fddf-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T14:49:55", "message_id": "4b005350-fdde-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T14:39:55", "message_id": "e54e4176-fddc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T14:29:55", "message_id": "7fa154f4-fddb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T14:19:55", "message_id": "19f05b24-fdda-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T14:09:55", "message_id": "b445e3b2-fdd8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T13:59:55", "message_id": "4e9278ba-fdd7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T13:49:55", "message_id": "e8e76738-fdd5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T13:39:55", "message_id": "83352af2-fdd4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T13:29:54", "message_id": "1d8382f4-fdd3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T13:19:54", "message_id": "b7d66288-fdd1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T13:09:54", "message_id": "5228bd6a-fdd0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T12:59:54", "message_id": "ec7b9df8-fdce-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T12:49:54", "message_id": "86cc0354-fdcd-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T12:39:54", "message_id": "211c05f0-fdcc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T12:29:54", "message_id": "bb6a8eda-fdca-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T12:19:54", "message_id": "55be35c4-fdc9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T12:09:54", "message_id": "f007e8ac-fdc7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T11:59:54", "message_id": "8a5e8c00-fdc6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T11:49:54", "message_id": "24b61e64-fdc5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T11:39:54", "message_id": "bf0a08f6-fdc3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T11:29:53", "message_id": "59592560-fdc2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T11:19:53", "message_id": "f3ad288e-fdc0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T11:09:53", "message_id": "8e007c80-fdbf-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T10:59:53", "message_id": "2852a288-fdbe-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T10:49:53", "message_id": "c2a7f506-fdbc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T10:39:53", "message_id": "5cf60870-fdbb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T10:29:53", "message_id": "f751a9c6-fdb9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T10:19:53", "message_id": "91a0421e-fdb8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T10:09:53", "message_id": "2c018054-fdb7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T09:59:53", "message_id": "c6530c56-fdb5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T09:49:53", "message_id": "60aa0586-fdb4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T09:39:53", "message_id": "fafa393c-fdb2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T09:29:53", "message_id": "954f17f2-fdb1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T09:19:52", "message_id": "2f9f1ba6-fdb0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T09:09:52", "message_id": "c9eba596-fdae-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T08:59:52", "message_id": "643d117c-fdad-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T08:49:52", "message_id": "fea2b4b2-fdab-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T08:39:52", "message_id": "98e9dac0-fdaa-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T08:29:52", "message_id": "3338c5a2-fda9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T08:19:52", "message_id": "cd8604f0-fda7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T08:09:52", "message_id": "67efb27c-fda6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T07:59:52", "message_id": "022f040c-fda5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T07:49:52", "message_id": "9c7f6468-fda3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T07:39:52", "message_id": "36d6627a-fda2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T07:29:51", "message_id": "d1229a26-fda0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T07:19:51", "message_id": "6b76844a-fd9f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T07:09:52", "message_id": "05ee275a-fd9e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T06:59:51", "message_id": "a0147124-fd9c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T06:49:51", "message_id": "3a6a8a26-fd9b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T06:39:51", "message_id": "d4b170ec-fd99-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T06:29:51", "message_id": "6f067400-fd98-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T06:19:51", "message_id": "0952f328-fd97-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T06:09:51", "message_id": "a3a975ca-fd95-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T05:59:51", "message_id": "3dfd1778-fd94-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T05:49:51", "message_id": "d84ee2f4-fd92-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T05:39:50", "message_id": "72a01ab4-fd91-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T05:29:50", "message_id": "0cf6330c-fd90-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T05:19:50", "message_id": "a746c4e6-fd8e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T05:09:50", "message_id": "4194c5a4-fd8d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T04:59:50", "message_id": "dbe8cf44-fd8b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T04:49:50", "message_id": "764a936c-fd8a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T04:39:50", "message_id": "10a43ad2-fd89-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T04:29:50", "message_id": "ab0519c2-fd87-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T04:19:50", "message_id": "453c0610-fd86-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T04:09:50", "message_id": "df82096a-fd84-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T03:59:49", "message_id": "79c237d6-fd83-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T03:49:49", "message_id": "14208dd4-fd82-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T03:39:49", "message_id": "ae794b70-fd80-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T03:29:49", "message_id": "48d3a564-fd7f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T03:19:49", "message_id": "e331627e-fd7d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T03:09:49", "message_id": "7d890798-fd7c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T02:59:49", "message_id": "17c8b526-fd7b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T02:49:49", "message_id": "b20824fc-fd79-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T02:39:49", "message_id": "4c873fec-fd78-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T02:29:49", "message_id": "e6ccac4c-fd76-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T02:19:49", "message_id": "8129ff26-fd75-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T02:09:49", "message_id": "1b848e6c-fd74-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T01:59:49", "message_id": "b5c28d1e-fd72-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T01:49:49", "message_id": "5011ae4c-fd71-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T01:39:49", "message_id": "ea628aae-fd6f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T01:29:49", "message_id": "84dc0634-fd6e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T01:19:49", "message_id": "1f3d0536-fd6d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T01:09:48", "message_id": "b97d1b06-fd6b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T00:59:48", "message_id": "53c7184e-fd6a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T00:49:48", "message_id": "ee08d638-fd68-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T00:39:48", "message_id": "886ae92a-fd67-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T00:29:48", "message_id": "22c92eac-fd66-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T00:19:48", "message_id": "bd1c1142-fd64-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-05T00:09:48", "message_id": "578de6da-fd63-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-04T23:59:48", "message_id": "f1d2f656-fd61-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-04T23:49:48", "message_id": "8c186022-fd60-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-04T23:39:06", "message_id": "0d65c54a-fd5f-11e2-b8cf-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}, {"counter_name": "image.size", "user_id": null, "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34", "timestamp": "2013-08-04T23:29:06", "message_id": "a7d5e2f6-fd5d-11e2-b8cf-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 25165824.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "counter_type": "gauge"}]} \ No newline at end of file diff --git a/tests/data/map_fixture_26.json b/tests/data/map_fixture_26.json new file mode 100644 index 0000000..c615582 --- /dev/null +++ b/tests/data/map_fixture_26.json @@ -0,0 +1 @@ +{"http://localhost:8777/v2/meters/storage.objects?q.field=resource_id&q.value=e88ef09124594ede8ecea0b1628a05bf": [{"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-12T04:01:18", "message_id": "d7698242-0303-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-12T03:51:18", "message_id": "71b91d32-0302-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-12T03:41:18", "message_id": "0c072e80-0301-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-12T03:31:18", "message_id": "a66ac5ec-02ff-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-12T03:21:18", "message_id": "40b619be-02fe-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-12T03:11:18", "message_id": "db0c61a0-02fc-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-12T03:01:17", "message_id": "7551cf22-02fb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-12T02:51:17", "message_id": "0fae1974-02fa-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-12T02:41:17", "message_id": "a9e9f334-02f8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-12T02:31:17", "message_id": "4446dd04-02f7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-12T02:21:17", "message_id": "de91d8e8-02f5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-12T02:11:17", "message_id": "78e4e7f2-02f4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-12T02:01:17", "message_id": "133daf66-02f3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-12T01:51:17", "message_id": "ad936e7c-02f1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-12T01:41:17", "message_id": "47def4a8-02f0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-12T01:31:17", "message_id": "e2329a8e-02ee-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-12T01:21:17", "message_id": "7c7d0036-02ed-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-12T01:11:16", "message_id": "16d41130-02ec-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-12T01:01:16", "message_id": "b1115b88-02ea-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-12T00:51:16", "message_id": "4b77d8c0-02e9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-12T00:41:16", "message_id": "e5bdc3d8-02e7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-12T00:31:16", "message_id": "800cdfb6-02e6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-12T00:21:16", "message_id": "1a8ae256-02e5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-12T00:11:16", "message_id": "b4adcb2a-02e3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-12T00:01:16", "message_id": "4f011a3a-02e2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T23:51:16", "message_id": "e9543bb4-02e0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T23:41:16", "message_id": "83ae4602-02df-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T23:31:16", "message_id": "1e0392e0-02de-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T23:21:15", "message_id": "b84a721c-02dc-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T23:11:15", "message_id": "52ab06d4-02db-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T23:01:16", "message_id": "ed3463f0-02d9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T22:51:15", "message_id": "874be0c8-02d8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T22:41:15", "message_id": "21976b68-02d7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T22:31:15", "message_id": "bbea7dd8-02d5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T22:21:15", "message_id": "563638b6-02d4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T22:11:15", "message_id": "f08667d0-02d2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T22:01:15", "message_id": "8add36d0-02d1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T21:51:15", "message_id": "253574b0-02d0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T21:41:15", "message_id": "bf8684a2-02ce-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T21:31:14", "message_id": "59d29322-02cd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T21:21:14", "message_id": "f428a990-02cb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T21:11:14", "message_id": "8e79c8fa-02ca-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T21:01:14", "message_id": "28c94fae-02c9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T20:51:14", "message_id": "c31e9c14-02c7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T20:41:14", "message_id": "5d697304-02c6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T20:31:14", "message_id": "f7c2ca2e-02c4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T20:21:14", "message_id": "9213e6d2-02c3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T20:11:14", "message_id": "2c70f3ca-02c2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T20:01:14", "message_id": "c6ba7304-02c0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T19:51:14", "message_id": "61101ab4-02bf-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T19:41:14", "message_id": "fb5e3026-02bd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T19:31:13", "message_id": "95b3bb52-02bc-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T19:21:13", "message_id": "3001fab8-02bb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T19:11:13", "message_id": "ca4f7534-02b9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T19:01:13", "message_id": "649a505c-02b8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T18:51:13", "message_id": "fee7e81a-02b6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T18:41:13", "message_id": "99402fe6-02b5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T18:31:13", "message_id": "338d1cf0-02b4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T18:21:13", "message_id": "cdddbe06-02b2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T18:11:13", "message_id": "682f576e-02b1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T18:01:13", "message_id": "027e74aa-02b0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T17:51:12", "message_id": "9cd3ae0a-02ae-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T17:41:12", "message_id": "3721ce1c-02ad-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T17:31:12", "message_id": "d1798902-02ab-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T17:21:12", "message_id": "6bc715b2-02aa-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T17:11:12", "message_id": "0614bfa4-02a9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T17:01:12", "message_id": "a074d4c8-02a7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T16:51:12", "message_id": "3ac52f34-02a6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T16:41:12", "message_id": "d52532c4-02a4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T16:31:12", "message_id": "6f6d6128-02a3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T16:21:12", "message_id": "09b5f486-02a2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T16:11:12", "message_id": "a40ba172-02a0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T16:01:12", "message_id": "3e679d04-029f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T15:51:12", "message_id": "d8b64a92-029d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T15:41:12", "message_id": "7314d664-029c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T15:31:11", "message_id": "0d6f6cbc-029b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T15:21:11", "message_id": "a7cead6a-0299-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T15:11:11", "message_id": "421beb64-0298-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T15:01:11", "message_id": "dc6a78b8-0296-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T14:51:11", "message_id": "76b53d9c-0295-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T14:41:11", "message_id": "11076bec-0294-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T14:31:11", "message_id": "ab56b29a-0292-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T14:21:11", "message_id": "45a93a9a-0291-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T14:11:11", "message_id": "dff7ef1c-028f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T14:01:11", "message_id": "7a527534-028e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T13:51:11", "message_id": "14a6e6ee-028d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T13:41:11", "message_id": "aef9860e-028b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T13:31:10", "message_id": "494a9f4c-028a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T13:21:10", "message_id": "e3968716-0288-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T13:11:10", "message_id": "7def4eb2-0287-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T13:01:10", "message_id": "18472b9e-0286-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T12:51:10", "message_id": "b2917814-0284-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T12:41:10", "message_id": "4ce6ebbc-0283-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T12:31:10", "message_id": "e733bfda-0281-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T12:21:10", "message_id": "817fde9a-0280-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T12:11:10", "message_id": "1bd291c4-027f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T12:01:10", "message_id": "b620617c-027d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T11:51:10", "message_id": "50793656-027c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T11:41:09", "message_id": "eabeda4c-027a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T11:31:09", "message_id": "85138a0e-0279-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T11:21:09", "message_id": "1f6426ec-0278-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T11:11:09", "message_id": "b9b59f66-0276-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T11:01:09", "message_id": "5405e64a-0275-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T10:51:09", "message_id": "ee54fc38-0273-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T10:41:09", "message_id": "88ab136e-0272-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T10:31:09", "message_id": "2300aca0-0271-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T10:21:09", "message_id": "bd489ee6-026f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T10:11:09", "message_id": "57ab2e56-026e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T10:01:09", "message_id": "f1f7edb6-026c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T09:51:08", "message_id": "8c47b0a6-026b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T09:41:08", "message_id": "26962a5e-026a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T09:31:08", "message_id": "c0edcdc0-0268-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T09:21:08", "message_id": "5b3d65a4-0267-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T09:11:08", "message_id": "f5957f58-0265-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T09:01:08", "message_id": "8fe5bc5a-0264-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T08:51:08", "message_id": "2a43019c-0263-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T08:41:08", "message_id": "c4963cac-0261-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T08:31:08", "message_id": "5eebcf12-0260-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T08:21:08", "message_id": "f93028cc-025e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T08:11:08", "message_id": "93847c7c-025d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T08:01:08", "message_id": "2ddab392-025c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T07:51:07", "message_id": "c824ffea-025a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T07:41:07", "message_id": "62806ef0-0259-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T07:31:07", "message_id": "fccbe46e-0257-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T07:21:07", "message_id": "9720e1ec-0256-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T07:11:07", "message_id": "316427a2-0255-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T07:01:07", "message_id": "cbc7f1ae-0253-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T06:51:07", "message_id": "6613a7e6-0252-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T06:41:07", "message_id": "0063c6e8-0251-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T06:31:07", "message_id": "9ab39dd8-024f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T06:21:07", "message_id": "35146c38-024e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T06:11:07", "message_id": "cf5cf01e-024c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T06:01:07", "message_id": "69c6eee0-024b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T05:51:06", "message_id": "040c30e8-024a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T05:41:06", "message_id": "9e5a3afc-0248-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T05:31:06", "message_id": "38a3b806-0247-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T05:21:06", "message_id": "d2f66568-0245-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T05:11:06", "message_id": "6d3e79d2-0244-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T05:01:06", "message_id": "079602cc-0243-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T04:51:06", "message_id": "a1ee70a4-0241-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T04:41:06", "message_id": "3c3bb3e4-0240-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T04:31:06", "message_id": "d6904e34-023e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T04:21:06", "message_id": "70f8f3d8-023d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T04:11:06", "message_id": "0b2ffe8a-023c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T04:01:05", "message_id": "a5875fc0-023a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T03:51:05", "message_id": "3fda831a-0239-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T03:41:05", "message_id": "da42c96e-0237-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T03:31:05", "message_id": "74770d62-0236-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T03:21:05", "message_id": "0ec91614-0235-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T03:11:05", "message_id": "a9174d28-0233-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T03:01:05", "message_id": "436718c4-0232-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T02:51:05", "message_id": "ddb461f4-0230-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T02:41:05", "message_id": "77f6941e-022f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T02:31:05", "message_id": "12551776-022e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T02:21:04", "message_id": "aca3b5f0-022c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T02:11:04", "message_id": "46f528fc-022b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T02:01:04", "message_id": "e15127d6-0229-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T01:51:04", "message_id": "7b9a3c8a-0228-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T01:41:04", "message_id": "15fe08f8-0227-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T01:31:04", "message_id": "b04ba1ec-0225-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T01:21:04", "message_id": "4a84918a-0224-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T01:11:04", "message_id": "e4d7213c-0222-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T01:01:04", "message_id": "7f32e650-0221-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T00:51:04", "message_id": "197bb9a0-0220-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T00:41:04", "message_id": "b3cd7a22-021e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T00:31:03", "message_id": "4e1cd520-021d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T00:21:03", "message_id": "e86dc76c-021b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T00:11:03", "message_id": "82bc47e6-021a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T00:01:03", "message_id": "1d11bfa8-0219-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T23:51:03", "message_id": "b764db50-0217-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T23:41:03", "message_id": "51b33b86-0216-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T23:31:03", "message_id": "ec0b083c-0214-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T23:21:03", "message_id": "86631980-0213-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T23:11:03", "message_id": "20a8aaf2-0212-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T23:01:03", "message_id": "bb54ea36-0210-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T22:51:03", "message_id": "5560cea8-020f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T22:41:08", "message_id": "f2bfa9f0-020d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T22:31:03", "message_id": "8a0e552e-020c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T22:21:02", "message_id": "24562c8a-020b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T22:11:02", "message_id": "bebbd290-0209-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T22:01:02", "message_id": "58fbfd00-0208-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T21:51:02", "message_id": "f36510ae-0206-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T21:41:02", "message_id": "8daccf50-0205-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T21:31:02", "message_id": "27f7898a-0204-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T21:21:02", "message_id": "c261839c-0202-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T21:11:02", "message_id": "5ca4784e-0201-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T21:01:02", "message_id": "f6e2ccd2-01ff-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T20:51:02", "message_id": "9194ceee-01fe-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T20:41:02", "message_id": "2b9919b6-01fd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T20:31:02", "message_id": "c61a9426-01fb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T20:21:01", "message_id": "603615dc-01fa-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T20:11:01", "message_id": "fa799ef4-01f8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T20:01:01", "message_id": "94d1a354-01f7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T19:51:01", "message_id": "2f2613f6-01f6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T19:41:01", "message_id": "c977c410-01f4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T19:31:01", "message_id": "63d1398a-01f3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T19:21:01", "message_id": "fe088bc2-01f1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T19:11:01", "message_id": "986a7402-01f0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T19:01:01", "message_id": "32bb5852-01ef-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T18:51:00", "message_id": "ccfa46b4-01ed-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T18:41:00", "message_id": "6760ae98-01ec-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T18:31:00", "message_id": "01ac1eb2-01eb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T18:21:00", "message_id": "9bfb0264-01e9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T18:11:00", "message_id": "36462b3e-01e8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T18:01:00", "message_id": "d09524da-01e6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T17:51:00", "message_id": "6af037c4-01e5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T17:41:00", "message_id": "0545b65c-01e4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T17:31:00", "message_id": "9f90fa0c-01e2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T17:21:00", "message_id": "39e36a92-01e1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T17:11:00", "message_id": "d42ee0d8-01df-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T17:00:59", "message_id": "6e80af6a-01de-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T16:50:59", "message_id": "08d5dd6c-01dd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T16:40:59", "message_id": "a322b90a-01db-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T16:30:59", "message_id": "3d789594-01da-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T16:20:59", "message_id": "d7c1a002-01d8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T16:10:59", "message_id": "721d7164-01d7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T16:00:59", "message_id": "0c736ae0-01d6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T15:50:59", "message_id": "a6c364f8-01d4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T15:40:59", "message_id": "412472c8-01d3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T15:30:59", "message_id": "db7193c6-01d1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T15:20:59", "message_id": "75caef0a-01d0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T15:10:59", "message_id": "1019a670-01cf-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T15:00:58", "message_id": "aa647414-01cd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T14:50:58", "message_id": "44bbfc8c-01cc-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T14:40:58", "message_id": "df03afc6-01ca-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T14:30:58", "message_id": "794be3fc-01c9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T14:20:58", "message_id": "139cad4e-01c8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T14:10:58", "message_id": "adf6e208-01c6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T14:00:58", "message_id": "4848e06a-01c5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T13:50:58", "message_id": "e29c91ea-01c3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T13:40:58", "message_id": "7ce61052-01c2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T13:30:58", "message_id": "17431b6a-01c1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T13:20:58", "message_id": "b18ae182-01bf-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T13:10:57", "message_id": "4bdcb500-01be-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T13:00:57", "message_id": "e62f7950-01bc-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T12:50:57", "message_id": "807d94a8-01bb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T12:40:57", "message_id": "1ad2c5d4-01ba-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T12:30:57", "message_id": "b52aa932-01b8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T12:20:57", "message_id": "4f803a4e-01b7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T12:10:57", "message_id": "e9d7bc7c-01b5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T12:00:57", "message_id": "841fc9fc-01b4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T11:50:57", "message_id": "1e76179c-01b3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T11:40:57", "message_id": "b8d13116-01b1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T11:30:57", "message_id": "531c6fda-01b0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T11:20:57", "message_id": "ed6fb83c-01ae-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T11:10:57", "message_id": "87c8adaa-01ad-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T11:00:56", "message_id": "2203b5c4-01ac-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T10:50:57", "message_id": "bc88779e-01aa-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T10:40:56", "message_id": "56b49da4-01a9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T10:30:56", "message_id": "f1118e90-01a7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T10:20:56", "message_id": "8b575acc-01a6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T10:10:56", "message_id": "25c70aa0-01a5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T10:00:56", "message_id": "c0035efe-01a3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T09:50:56", "message_id": "5a486f56-01a2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T09:40:56", "message_id": "f4a56a74-01a0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T09:30:56", "message_id": "8f10fad0-019f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T09:20:56", "message_id": "2945c240-019e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T09:10:55", "message_id": "c39e8356-019c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T09:00:56", "message_id": "5e0807fc-019b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T08:50:55", "message_id": "f83f292e-0199-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T08:40:55", "message_id": "929ea410-0198-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T08:30:55", "message_id": "2cd31ed2-0197-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T08:20:55", "message_id": "c7322ba0-0195-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T08:10:55", "message_id": "6172cb36-0194-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T08:00:55", "message_id": "fbc721fc-0192-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T07:50:55", "message_id": "962a6602-0191-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T07:40:55", "message_id": "307f94f4-0190-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T07:30:55", "message_id": "caca7fda-018e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T07:20:54", "message_id": "65209850-018d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T07:10:54", "message_id": "ff7242ac-018b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T07:00:54", "message_id": "99bffa4a-018a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T06:50:54", "message_id": "341679f4-0189-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T06:40:54", "message_id": "ce693ff2-0187-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T06:30:54", "message_id": "68bccf1c-0186-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T06:20:54", "message_id": "03120048-0185-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T06:10:54", "message_id": "9d577978-0183-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T06:00:54", "message_id": "379fe3fa-0182-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T05:50:54", "message_id": "d20165ec-0180-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T05:40:54", "message_id": "6c4e8b86-017f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T05:30:53", "message_id": "06952b02-017e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T05:20:53", "message_id": "a0ec50b0-017c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T05:10:53", "message_id": "3b4233e8-017b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T05:00:53", "message_id": "d59afdfa-0179-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T04:50:53", "message_id": "6fe033a0-0178-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T04:40:53", "message_id": "0a2a8340-0177-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T04:30:53", "message_id": "a47f6624-0175-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T04:20:53", "message_id": "3ecf59de-0174-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T04:10:53", "message_id": "d92234d6-0172-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T04:00:53", "message_id": "737d7600-0171-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T03:50:53", "message_id": "0dcf031a-0170-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T03:40:53", "message_id": "a822e88e-016e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T03:30:52", "message_id": "42780e98-016d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T03:20:52", "message_id": "dcc420d8-016b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T03:10:52", "message_id": "7715f532-016a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T03:00:52", "message_id": "11685a14-0169-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T02:50:52", "message_id": "abbc5c02-0167-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T02:40:52", "message_id": "4605fd56-0166-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T02:30:52", "message_id": "e0573822-0164-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T02:20:52", "message_id": "7abb2650-0163-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T02:10:52", "message_id": "150cfd98-0162-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T02:00:52", "message_id": "af5753dc-0160-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T01:50:52", "message_id": "49cf894a-015f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T01:40:52", "message_id": "e4132702-015d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T01:30:52", "message_id": "7e71d3ae-015c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T01:20:52", "message_id": "18c957ee-015b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T01:10:51", "message_id": "b30b76a4-0159-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T01:00:51", "message_id": "4d66497e-0158-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T00:50:51", "message_id": "e793d87e-0156-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T00:40:51", "message_id": "81eae70c-0155-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T00:30:51", "message_id": "1c3b681a-0154-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T00:20:51", "message_id": "b67e86c0-0152-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T00:10:51", "message_id": "50dbc5f4-0151-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T00:00:51", "message_id": "eb2969b0-014f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T23:50:50", "message_id": "857bbc2c-014e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T23:40:50", "message_id": "1fc75464-014d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T23:30:50", "message_id": "ba0e25ae-014b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T23:20:50", "message_id": "547136f6-014a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T23:10:50", "message_id": "eeba4fe2-0148-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T23:00:50", "message_id": "894af2d4-0147-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T22:50:50", "message_id": "235f5e2a-0146-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T22:40:50", "message_id": "bda8fda8-0144-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T22:30:50", "message_id": "57fe5012-0143-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T22:20:50", "message_id": "f261eeb8-0141-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T22:10:49", "message_id": "8c9dabfe-0140-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T22:00:49", "message_id": "26fc7d80-013f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T21:50:49", "message_id": "c1507dac-013d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T21:40:49", "message_id": "5ba9257c-013c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T21:30:49", "message_id": "f60038c4-013a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T21:20:49", "message_id": "9049a61a-0139-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T21:10:49", "message_id": "2aa5c0a6-0138-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T21:00:49", "message_id": "c4fcd5b0-0136-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T20:50:49", "message_id": "5f49ef2e-0135-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T20:40:49", "message_id": "f9a06f82-0133-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T20:30:49", "message_id": "93e58b10-0132-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T20:20:49", "message_id": "2e586c14-0131-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T20:10:49", "message_id": "c8944ae8-012f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T20:00:49", "message_id": "62e4d60a-012e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T19:50:49", "message_id": "fd42021a-012c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T19:40:48", "message_id": "978380bc-012b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T19:30:48", "message_id": "31dbc630-012a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T19:20:48", "message_id": "cc3d92a0-0128-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T19:10:48", "message_id": "668278fa-0127-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T19:00:48", "message_id": "00cd44fa-0126-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T18:50:48", "message_id": "9b1928d2-0124-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T18:40:48", "message_id": "356e4428-0123-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T18:30:48", "message_id": "cfb80246-0121-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T18:20:48", "message_id": "6a065160-0120-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T18:10:47", "message_id": "04568a98-011f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T18:00:47", "message_id": "9e9f0e74-011d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T17:50:47", "message_id": "38f93cbc-011c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T17:40:47", "message_id": "d3459e66-011a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T17:30:47", "message_id": "6d948d58-0119-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T17:20:47", "message_id": "07edcf74-0118-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T17:10:47", "message_id": "a23b7538-0116-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T17:00:47", "message_id": "3c8e2cf4-0115-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T16:50:47", "message_id": "d6d9669a-0113-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T16:40:47", "message_id": "7129e780-0112-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T16:30:47", "message_id": "0b8b1558-0111-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T16:20:46", "message_id": "a5d18a0e-010f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T16:10:46", "message_id": "4029584a-010e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T16:00:46", "message_id": "da783aa8-010c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T15:50:49", "message_id": "764e3a7e-010b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T15:40:47", "message_id": "0f7942a4-010a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T15:30:46", "message_id": "a9926476-0108-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T15:20:46", "message_id": "43c95164-0107-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T15:10:46", "message_id": "de30c9e6-0105-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T15:00:46", "message_id": "786f4c14-0104-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T14:50:46", "message_id": "12ca2d9e-0103-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T14:40:46", "message_id": "ad15b0aa-0101-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T14:30:46", "message_id": "475fe10a-0100-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T14:20:46", "message_id": "e1bddf4c-00fe-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T14:10:46", "message_id": "7c452ef0-00fd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T14:00:45", "message_id": "164d042a-00fc-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T13:50:45", "message_id": "b0ace2f8-00fa-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T13:40:45", "message_id": "4af66764-00f9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T13:30:45", "message_id": "e5477b20-00f7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T13:20:46", "message_id": "7ffcac82-00f6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T13:10:45", "message_id": "19dcbc86-00f5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T13:00:45", "message_id": "b439cf96-00f3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T12:50:45", "message_id": "4e814bda-00f2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T12:40:45", "message_id": "e8dac000-00f0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T12:30:44", "message_id": "8330c386-00ef-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T12:20:44", "message_id": "1d7b1074-00ee-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T12:10:44", "message_id": "b7cc563a-00ec-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T12:00:44", "message_id": "521f697c-00eb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T11:50:44", "message_id": "ec78936a-00e9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T11:40:44", "message_id": "86c193a6-00e8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T11:30:44", "message_id": "211aa3fe-00e7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T11:20:44", "message_id": "bb69eab6-00e5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T11:10:44", "message_id": "55c17446-00e4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T11:00:44", "message_id": "f0091362-00e2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T10:50:44", "message_id": "8a5adc22-00e1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T10:40:43", "message_id": "24aa6952-00e0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T10:30:43", "message_id": "bf01b980-00de-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T10:20:43", "message_id": "594d7382-00dd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T10:10:43", "message_id": "f3a1b1c0-00db-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T10:00:43", "message_id": "8e02f9d8-00da-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T09:50:43", "message_id": "284206a8-00d9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T09:40:43", "message_id": "c29ca188-00d7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T09:30:43", "message_id": "5cecbd60-00d6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T09:20:43", "message_id": "f73eead4-00d4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T09:10:43", "message_id": "91991282-00d3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T09:00:43", "message_id": "2be5a582-00d2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T08:50:42", "message_id": "c62f629c-00d0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T08:40:42", "message_id": "6089f0fc-00cf-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T08:30:42", "message_id": "fade2044-00cd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T08:20:42", "message_id": "952edece-00cc-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T08:10:42", "message_id": "2f79a524-00cb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T08:00:42", "message_id": "c9c9604e-00c9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T07:50:42", "message_id": "641a7bd0-00c8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T07:40:42", "message_id": "fe965730-00c6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T07:30:42", "message_id": "98c76210-00c5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T07:20:42", "message_id": "330ac79c-00c4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T07:10:42", "message_id": "cd5da6c2-00c2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T07:00:41", "message_id": "67b335f4-00c1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T06:50:41", "message_id": "01fe9b28-00c0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T06:40:41", "message_id": "9c5301e8-00be-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T06:30:41", "message_id": "36a5d47a-00bd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T06:20:41", "message_id": "d0f1f33a-00bb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T06:10:41", "message_id": "6b486952-00ba-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T06:00:41", "message_id": "05a3a3f6-00b9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T05:50:41", "message_id": "9fef9728-00b7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T05:40:41", "message_id": "3a46f5ca-00b6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T05:30:41", "message_id": "d4932ea2-00b4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T05:20:41", "message_id": "6ee474f4-00b3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T05:10:41", "message_id": "0937f2c6-00b2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T05:00:40", "message_id": "a38cce48-00b0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T04:50:40", "message_id": "3df286b4-00af-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T04:40:40", "message_id": "d84a5b3a-00ad-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T04:30:40", "message_id": "72978ef8-00ac-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T04:20:40", "message_id": "0cf7b7e0-00ab-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T04:10:40", "message_id": "a7515a32-00a9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T04:00:40", "message_id": "41c6a83a-00a8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T03:50:41", "message_id": "dc439a1e-00a6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T03:40:40", "message_id": "7656a17a-00a5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T03:30:40", "message_id": "10dc5aa2-00a4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T03:20:40", "message_id": "ab0528cc-00a2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T03:10:40", "message_id": "45609c78-00a1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T03:00:40", "message_id": "dfb4948e-009f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T02:50:40", "message_id": "79f83048-009e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T02:40:40", "message_id": "14811a78-009d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T02:30:40", "message_id": "ae9efab4-009b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T02:20:40", "message_id": "48f51cda-009a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T02:10:39", "message_id": "e348f114-0098-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T02:00:39", "message_id": "7d9b386e-0097-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T01:50:39", "message_id": "17d868f4-0096-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T01:40:39", "message_id": "b22831ca-0094-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T01:30:39", "message_id": "4c7afb9c-0093-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T01:20:39", "message_id": "e6d77528-0091-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T01:10:39", "message_id": "811c03b2-0090-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T01:00:39", "message_id": "1b7a495c-008f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T00:50:39", "message_id": "b5c1002a-008d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T00:40:38", "message_id": "500b6794-008c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T00:30:38", "message_id": "ea6bbe08-008a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T00:20:38", "message_id": "84c0e94e-0089-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T00:10:38", "message_id": "1f0d66d2-0088-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T00:00:38", "message_id": "b95e1dd2-0086-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T23:50:38", "message_id": "53a9299c-0085-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T23:40:38", "message_id": "ee0a0d32-0083-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T23:30:38", "message_id": "88500a7e-0082-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T23:20:38", "message_id": "229a12fc-0081-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T23:10:38", "message_id": "bcf6afd8-007f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T23:00:38", "message_id": "577ec7b8-007e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T22:50:38", "message_id": "f1913766-007c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T22:40:37", "message_id": "8be9d5fe-007b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T22:30:37", "message_id": "2629cde2-007a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T22:20:37", "message_id": "c0861500-0078-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T22:10:37", "message_id": "5ad5c44a-0077-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T22:00:37", "message_id": "f5271af0-0075-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T21:50:37", "message_id": "8f830264-0074-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T21:40:37", "message_id": "29cc9af8-0073-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T21:30:37", "message_id": "c421df3e-0071-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T21:20:37", "message_id": "5e8290e8-0070-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T21:10:37", "message_id": "f8c6a18c-006e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T21:00:36", "message_id": "930fe61a-006d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T20:50:36", "message_id": "2d5d6ece-006c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T20:40:36", "message_id": "c7b0560a-006a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T20:30:36", "message_id": "6208ec96-0069-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T20:20:36", "message_id": "fc4e1832-0067-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T20:10:36", "message_id": "96ab269c-0066-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T20:00:36", "message_id": "30f691ac-0065-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T19:50:36", "message_id": "cb4e7b18-0063-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T19:40:36", "message_id": "65996f22-0062-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T19:30:36", "message_id": "ffebb910-0060-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T19:20:36", "message_id": "9a37c4ca-005f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T19:10:35", "message_id": "348caf92-005e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T19:00:35", "message_id": "cee076c0-005c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T18:50:35", "message_id": "6930194e-005b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T18:40:35", "message_id": "037cc99a-005a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T18:30:35", "message_id": "9ddd04d4-0058-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T18:20:35", "message_id": "381d04a6-0057-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T18:10:35", "message_id": "d27a37aa-0055-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T18:00:35", "message_id": "6ccc1758-0054-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T17:50:35", "message_id": "071ed3c4-0053-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T17:40:35", "message_id": "a178855c-0051-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T17:30:35", "message_id": "3bcc9d52-0050-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T17:20:35", "message_id": "d619fe6a-004e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T17:10:34", "message_id": "706a4cec-004d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T17:00:34", "message_id": "0ab90312-004c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T16:50:34", "message_id": "a50bdedc-004a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T16:40:34", "message_id": "3f66ff5e-0049-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T16:30:34", "message_id": "d9b92822-0047-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T16:20:34", "message_id": "740dc042-0046-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T16:10:34", "message_id": "0e5a1a62-0045-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T16:00:34", "message_id": "a8b56c58-0043-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T15:50:34", "message_id": "43044e02-0042-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T15:40:34", "message_id": "dd515c9a-0040-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T15:30:34", "message_id": "77a6711a-003f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T15:20:34", "message_id": "11fc593e-003e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T15:10:33", "message_id": "ac4b6fae-003c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T15:00:33", "message_id": "46963bea-003b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T14:50:33", "message_id": "e0ee989c-0039-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T14:40:33", "message_id": "7b38a750-0038-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T14:30:33", "message_id": "15930626-0037-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T14:20:33", "message_id": "afde7e06-0035-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T14:10:33", "message_id": "4a40a962-0034-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T14:00:33", "message_id": "e4c1e4a8-0032-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T13:50:33", "message_id": "7ed3da9e-0031-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T13:40:33", "message_id": "1931e98e-0030-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T13:30:33", "message_id": "b380122e-002e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T13:20:33", "message_id": "4ddb6b4a-002d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T13:10:32", "message_id": "e827dc08-002b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T13:00:32", "message_id": "82760174-002a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T12:50:32", "message_id": "1cca3e0e-0029-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T12:40:32", "message_id": "b7103b28-0027-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T12:30:32", "message_id": "516934ec-0026-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T12:20:32", "message_id": "ebb3418e-0024-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T12:10:32", "message_id": "85fd4ff2-0023-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T12:00:32", "message_id": "205a74b4-0022-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T11:50:32", "message_id": "baa65224-0020-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T11:40:32", "message_id": "550d4202-001f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T11:30:32", "message_id": "ef630212-001d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T11:20:31", "message_id": "89a477b8-001c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T11:10:32", "message_id": "241555e4-001b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T11:00:31", "message_id": "be54f95e-0019-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T10:50:31", "message_id": "58a6ebae-0018-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T10:40:31", "message_id": "f3032dea-0016-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T10:30:31", "message_id": "8d709752-0015-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T10:20:31", "message_id": "27ba73fc-0014-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T10:10:31", "message_id": "c2214de6-0012-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T10:00:31", "message_id": "5c457aca-0011-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T09:50:31", "message_id": "f694f8be-000f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T09:40:31", "message_id": "90de1312-000e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T09:30:31", "message_id": "2b40c80c-000d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T09:20:30", "message_id": "c5853fda-000b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T09:10:30", "message_id": "5fd3dbf2-000a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T09:00:30", "message_id": "fa2dd8da-0008-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T08:50:30", "message_id": "947c8f46-0007-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T08:40:30", "message_id": "2ed58bf8-0006-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T08:30:30", "message_id": "c92b4924-0004-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T08:20:30", "message_id": "63770d76-0003-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T08:10:30", "message_id": "fdd6a0ea-0001-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T08:00:30", "message_id": "981cdf0e-0000-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T07:50:30", "message_id": "326be6ec-ffff-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T07:40:30", "message_id": "ccbcb336-fffd-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T07:30:30", "message_id": "670b967a-fffc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T07:20:29", "message_id": "01657d64-fffb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T07:10:29", "message_id": "9bacdbee-fff9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T07:00:29", "message_id": "35f7fce4-fff8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T06:50:29", "message_id": "d05aefd2-fff6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T06:40:29", "message_id": "6aa2d642-fff5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T06:30:29", "message_id": "04f04826-fff4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T06:20:29", "message_id": "9f441936-fff2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T06:10:29", "message_id": "39949f6c-fff1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T06:00:29", "message_id": "d3ecda68-ffef-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T05:50:29", "message_id": "6e45818e-ffee-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T05:40:29", "message_id": "089e70d0-ffed-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T05:30:28", "message_id": "a2e72d82-ffeb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T05:20:28", "message_id": "3d2e8d4c-ffea-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T05:10:28", "message_id": "d783e556-ffe8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T05:00:28", "message_id": "71d8d898-ffe7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T04:50:28", "message_id": "0c1ca332-ffe6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T04:40:28", "message_id": "a67e0e68-ffe4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T04:30:28", "message_id": "40c1ff72-ffe3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T04:20:28", "message_id": "db1c060a-ffe1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T04:10:28", "message_id": "756cdf7e-ffe0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T04:00:28", "message_id": "0fb55bee-ffdf-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T03:50:28", "message_id": "aa0c72a6-ffdd-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T03:40:27", "message_id": "4459d0e4-ffdc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T03:30:27", "message_id": "deab1592-ffda-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T03:20:27", "message_id": "78fa9dcc-ffd9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T03:10:27", "message_id": "134f299e-ffd8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T03:00:27", "message_id": "ada187b4-ffd6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T02:50:27", "message_id": "47ecc402-ffd5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T02:40:27", "message_id": "e23b5ae8-ffd3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T02:30:27", "message_id": "7c95d908-ffd2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T02:20:27", "message_id": "17002996-ffd1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T02:10:27", "message_id": "b129f67a-ffcf-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T02:00:26", "message_id": "4b858ac4-ffce-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T01:50:26", "message_id": "e5cfe13a-ffcc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T01:40:26", "message_id": "80218772-ffcb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T01:30:26", "message_id": "1a72a696-ffca-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T01:20:26", "message_id": "b4ca3aa8-ffc8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T01:10:26", "message_id": "4f204b6c-ffc7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T01:00:26", "message_id": "e96dc85e-ffc5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T00:50:26", "message_id": "83c3548e-ffc4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T00:40:26", "message_id": "1e1788cc-ffc3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T00:30:26", "message_id": "b8658d5e-ffc1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T00:20:26", "message_id": "5310d25c-ffc0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T00:10:25", "message_id": "ed05ba82-ffbe-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T00:00:26", "message_id": "878190d8-ffbd-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T23:50:25", "message_id": "21b1f546-ffbc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T23:40:25", "message_id": "bc07cb9a-ffba-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T23:30:25", "message_id": "56609c78-ffb9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T23:20:25", "message_id": "f0cc4f7a-ffb7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T23:10:25", "message_id": "8b1d4a5e-ffb6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T23:00:25", "message_id": "25956fe6-ffb5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T22:50:25", "message_id": "bf900e28-ffb3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T22:40:25", "message_id": "59ede7e4-ffb2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T22:30:25", "message_id": "f43e0808-ffb0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T22:20:24", "message_id": "8e7e4e70-ffaf-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T22:10:24", "message_id": "28e3b54c-ffae-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T22:00:24", "message_id": "c329ed12-ffac-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T21:50:24", "message_id": "5d6c59d4-ffab-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T21:40:24", "message_id": "f7c651ee-ffa9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T21:30:24", "message_id": "921ebfe4-ffa8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T21:20:24", "message_id": "2c66dbba-ffa7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T21:10:24", "message_id": "c6aaf028-ffa5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T21:00:24", "message_id": "61055700-ffa4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T20:50:24", "message_id": "fb558160-ffa2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T20:40:23", "message_id": "95a186b2-ffa1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T20:30:23", "message_id": "2ff777d2-ffa0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T20:20:23", "message_id": "ca49df16-ff9e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T20:10:23", "message_id": "648f0fee-ff9d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T20:00:23", "message_id": "fee85138-ff9b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T19:50:23", "message_id": "9931ec24-ff9a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T19:40:23", "message_id": "338b747c-ff99-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T19:30:23", "message_id": "cddcb484-ff97-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T19:20:23", "message_id": "68327ac0-ff96-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T19:10:23", "message_id": "02815cba-ff95-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T19:00:23", "message_id": "9cca6674-ff93-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T18:50:22", "message_id": "37242658-ff92-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T18:40:22", "message_id": "d176307c-ff90-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T18:30:22", "message_id": "6bb69368-ff8f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T18:20:22", "message_id": "06062f2a-ff8e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T18:10:22", "message_id": "a05b7a5a-ff8c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T18:00:22", "message_id": "3aaf9304-ff8b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T17:50:22", "message_id": "d4ff9cd0-ff89-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T17:40:22", "message_id": "6f573970-ff88-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T17:30:22", "message_id": "09a69234-ff87-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T17:20:22", "message_id": "a3f2c576-ff85-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T17:10:22", "message_id": "3e4b7476-ff84-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T17:00:21", "message_id": "d890669c-ff82-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T16:50:21", "message_id": "72d8fb8a-ff81-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T16:40:21", "message_id": "0d2f3804-ff80-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T16:30:21", "message_id": "a78c10d6-ff7e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T16:20:21", "message_id": "41cf66ae-ff7d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T16:10:21", "message_id": "dc29c2a0-ff7b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T16:00:21", "message_id": "767b28a0-ff7a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T15:50:21", "message_id": "10cf44ce-ff79-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T15:40:21", "message_id": "ab1a968e-ff77-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T15:30:21", "message_id": "4566e4ba-ff76-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T15:20:20", "message_id": "dfbad168-ff74-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T15:10:20", "message_id": "7a07f540-ff73-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T15:00:20", "message_id": "1458146a-ff72-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T14:50:20", "message_id": "aeab36c0-ff70-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T14:40:20", "message_id": "48f9ea20-ff6f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T14:30:20", "message_id": "e36020c2-ff6d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T14:20:20", "message_id": "7dafd5de-ff6c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T14:10:20", "message_id": "17fee64a-ff6b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T14:00:20", "message_id": "b24f5380-ff69-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T13:50:20", "message_id": "4c9cd43c-ff68-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T13:40:20", "message_id": "e704c3ce-ff66-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T13:30:20", "message_id": "814a31fa-ff65-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T13:20:19", "message_id": "1b9c1a2c-ff64-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T13:10:19", "message_id": "b5f2e1a2-ff62-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T13:00:19", "message_id": "504e1368-ff61-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T12:50:19", "message_id": "eaa3d6d4-ff5f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T12:40:19", "message_id": "84ee815a-ff5e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T12:30:19", "message_id": "1f44b960-ff5d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T12:20:19", "message_id": "b99a0602-ff5b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T12:10:19", "message_id": "53df90d0-ff5a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T12:00:19", "message_id": "ee2dbe7a-ff58-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T11:50:19", "message_id": "8886453e-ff57-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T11:40:19", "message_id": "22db0888-ff56-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T11:30:19", "message_id": "bd2b46b6-ff54-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T11:20:18", "message_id": "577b21de-ff53-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T11:10:19", "message_id": "f1e8b440-ff51-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T11:00:18", "message_id": "8c2f7040-ff50-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T10:50:18", "message_id": "2682f362-ff4f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T10:40:18", "message_id": "c0deb61e-ff4d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T10:30:18", "message_id": "5b276a1a-ff4c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T10:20:18", "message_id": "f57a6682-ff4a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T10:10:18", "message_id": "8fd85740-ff49-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T10:00:18", "message_id": "2a33fb2a-ff48-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T09:50:18", "message_id": "c472b0ac-ff46-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T09:40:18", "message_id": "5ecce6e2-ff45-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T09:30:18", "message_id": "f90c4718-ff43-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T09:20:18", "message_id": "936555a4-ff42-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T09:10:17", "message_id": "2db65d58-ff41-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T09:00:17", "message_id": "c7fa8846-ff3f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T08:50:17", "message_id": "624d8a8a-ff3e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T08:40:17", "message_id": "fca5333c-ff3c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T08:30:17", "message_id": "96f301e6-ff3b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T08:20:17", "message_id": "31363392-ff3a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T08:10:17", "message_id": "cb87072a-ff38-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T08:00:17", "message_id": "65d62d9e-ff37-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T07:50:17", "message_id": "00273390-ff36-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T07:40:16", "message_id": "9a745e98-ff34-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T07:30:16", "message_id": "34d03b9e-ff33-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T07:20:16", "message_id": "cf178c0e-ff31-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T07:10:16", "message_id": "6966db7c-ff30-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T07:00:16", "message_id": "03c118a6-ff2f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T06:50:16", "message_id": "9e1353da-ff2d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T06:40:16", "message_id": "38637156-ff2c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T06:30:16", "message_id": "d2aa46ec-ff2a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T06:20:16", "message_id": "6d0c9656-ff29-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T06:10:16", "message_id": "0769b1ae-ff28-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T06:00:16", "message_id": "a1a9c92c-ff26-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T05:50:16", "message_id": "3c05eebc-ff25-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T05:40:15", "message_id": "d6480566-ff23-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T05:30:16", "message_id": "70c1390c-ff22-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T05:20:15", "message_id": "0af52d28-ff21-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T05:10:15", "message_id": "a53a1ba2-ff1f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T05:00:15", "message_id": "3fa0f014-ff1e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T04:50:15", "message_id": "d9e47d64-ff1c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T04:40:15", "message_id": "743d7ffc-ff1b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T04:30:15", "message_id": "0e9c0fac-ff1a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T04:20:15", "message_id": "a8dcf4f2-ff18-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T04:10:15", "message_id": "43390b3c-ff17-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T04:00:15", "message_id": "dd863f36-ff15-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T03:50:15", "message_id": "77ef4bfa-ff14-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T03:40:14", "message_id": "1230265a-ff13-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T03:30:14", "message_id": "ac778fca-ff11-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T03:20:14", "message_id": "46ce5fe2-ff10-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T03:10:14", "message_id": "e132e1ae-ff0e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T03:00:14", "message_id": "7b70b86a-ff0d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T02:50:14", "message_id": "15de61c4-ff0c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T02:40:14", "message_id": "b028972e-ff0a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T02:30:14", "message_id": "4a7acc04-ff09-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T02:20:14", "message_id": "e4c2d718-ff07-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T02:10:14", "message_id": "7f138076-ff06-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T02:00:14", "message_id": "1960d810-ff05-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T01:50:14", "message_id": "b3c11b24-ff03-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T01:40:13", "message_id": "4e05b890-ff02-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T01:30:13", "message_id": "e85e0e76-ff00-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T01:20:13", "message_id": "82afec76-feff-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T01:10:13", "message_id": "1d08acb0-fefe-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T01:00:13", "message_id": "b74ba81a-fefc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T00:50:13", "message_id": "51a841f4-fefb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T00:40:13", "message_id": "ebfd94ae-fef9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T00:30:13", "message_id": "863f764c-fef8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T00:20:13", "message_id": "20915776-fef7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T00:10:13", "message_id": "bae435e8-fef5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T00:00:12", "message_id": "552c1afa-fef4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T23:50:12", "message_id": "ef8f6cf2-fef2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T23:40:12", "message_id": "89df9cc0-fef1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T23:30:12", "message_id": "24359b0a-fef0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T23:20:12", "message_id": "be971c98-feee-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T23:10:12", "message_id": "58cf17d6-feed-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T23:00:12", "message_id": "f36ccd94-feeb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T22:50:12", "message_id": "8d78daf6-feea-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T22:40:12", "message_id": "27cddee6-fee9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T22:30:12", "message_id": "c2201f6a-fee7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T22:20:12", "message_id": "5c68dad2-fee6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T22:10:12", "message_id": "f6d093fa-fee4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T22:00:12", "message_id": "9139ef06-fee3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T21:50:11", "message_id": "2b696b44-fee2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T21:40:12", "message_id": "c5e0fbda-fee0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T21:30:11", "message_id": "6017d9be-fedf-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T21:20:11", "message_id": "fa6aa75a-fedd-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T21:10:11", "message_id": "94b352b4-fedc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T21:00:11", "message_id": "2efa2304-fedb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T20:50:11", "message_id": "c956e48e-fed9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T20:40:11", "message_id": "63b574ac-fed8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T20:30:11", "message_id": "fe0153de-fed6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T20:20:11", "message_id": "987f1858-fed5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T20:10:11", "message_id": "329e2516-fed4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T20:00:11", "message_id": "cd07476a-fed2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T19:50:10", "message_id": "674f5dc8-fed1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T19:40:10", "message_id": "01a6c2be-fed0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T19:30:10", "message_id": "9bf7a9e8-fece-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T19:20:10", "message_id": "36447ece-fecd-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T19:10:10", "message_id": "d094889a-fecb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T19:00:10", "message_id": "6ad45bd0-feca-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T18:50:10", "message_id": "0550ded8-fec9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T18:40:10", "message_id": "9f882684-fec7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T18:30:10", "message_id": "39d218be-fec6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T18:20:10", "message_id": "d42838a0-fec4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T18:10:09", "message_id": "6e74a968-fec3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T18:00:09", "message_id": "08b9480a-fec2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T17:50:09", "message_id": "a3118982-fec0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T17:40:09", "message_id": "3d694eb8-febf-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T17:30:09", "message_id": "d7b4d138-febd-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T17:20:09", "message_id": "720c6978-febc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T17:10:09", "message_id": "0c52675a-febb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T17:00:09", "message_id": "a6a4c732-feb9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T16:50:09", "message_id": "40f85850-feb8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T16:40:09", "message_id": "db414810-feb6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T16:30:08", "message_id": "75988ccc-feb5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T16:20:08", "message_id": "0fe54740-feb4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T16:10:08", "message_id": "aa428728-feb2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T16:00:08", "message_id": "4494e58e-feb1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T15:50:08", "message_id": "deddd97c-feaf-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T15:40:08", "message_id": "793bde30-feae-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T15:30:08", "message_id": "13812cd6-fead-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T15:20:08", "message_id": "add6b032-feab-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T15:10:08", "message_id": "4824728e-feaa-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T15:00:08", "message_id": "e2758c3a-fea8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T14:50:08", "message_id": "7ccb3a3e-fea7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T14:40:08", "message_id": "1729a2e8-fea6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T14:30:08", "message_id": "b1832bcc-fea4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T14:20:07", "message_id": "4bd1c2bc-fea3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T14:10:07", "message_id": "e61eb2aa-fea1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T14:00:07", "message_id": "808c6744-fea0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T13:50:07", "message_id": "1ad01d02-fe9f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T13:40:07", "message_id": "b512a65c-fe9d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T13:30:07", "message_id": "4f65ac60-fe9c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T13:20:07", "message_id": "e9b5bf00-fe9a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T13:10:07", "message_id": "84045bfe-fe99-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T13:00:07", "message_id": "1e5fd28e-fe98-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T12:50:07", "message_id": "b8b47af8-fe96-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T12:40:07", "message_id": "53193270-fe95-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T12:30:07", "message_id": "ed587848-fe93-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T12:20:06", "message_id": "87a3c634-fe92-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T12:10:06", "message_id": "22019640-fe91-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T12:00:06", "message_id": "bc52b26c-fe8f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T11:50:06", "message_id": "56a12ddc-fe8e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T11:40:06", "message_id": "f0ff320e-fe8c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T11:30:07", "message_id": "8bd0c420-fe8b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T11:20:06", "message_id": "25977718-fe8a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T11:10:06", "message_id": "bfe37a30-fe88-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T11:00:06", "message_id": "5a3c714c-fe87-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T10:50:06", "message_id": "f49084b0-fe85-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T10:40:06", "message_id": "8ee22160-fe84-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T10:30:05", "message_id": "292fd200-fe83-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T10:20:05", "message_id": "c385dc16-fe81-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T10:10:05", "message_id": "5dcc3f74-fe80-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T10:00:05", "message_id": "f823823c-fe7e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T09:50:05", "message_id": "926fc456-fe7d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T09:40:05", "message_id": "2cc656ac-fe7c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T09:30:05", "message_id": "c71b66fe-fe7a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T09:20:05", "message_id": "6164d468-fe79-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T09:10:05", "message_id": "fbbd8ea8-fe77-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T09:00:05", "message_id": "960c0040-fe76-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T08:50:05", "message_id": "305d394a-fe75-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T08:40:04", "message_id": "caaff8fe-fe73-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T08:30:04", "message_id": "64fe9084-fe72-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T08:20:04", "message_id": "ff52247c-fe70-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T08:10:04", "message_id": "99a72fec-fe6f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T08:00:04", "message_id": "33f927b4-fe6e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T07:50:04", "message_id": "ce49cd98-fe6c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T07:40:04", "message_id": "68aaee32-fe6b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T07:30:04", "message_id": "02fb1eb4-fe6a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T07:20:04", "message_id": "9d4f2bf6-fe68-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T07:10:04", "message_id": "379eb9d0-fe67-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T07:00:04", "message_id": "d1eedb66-fe65-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T06:50:04", "message_id": "6c3e88da-fe64-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T06:40:04", "message_id": "069b2eda-fe63-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T06:30:03", "message_id": "a0edf438-fe61-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T06:20:03", "message_id": "3b387592-fe60-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T06:10:03", "message_id": "d58432a0-fe5e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T06:00:03", "message_id": "6fd5895a-fe5d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T05:50:03", "message_id": "0a27d640-fe5c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T05:40:03", "message_id": "a47ef072-fe5a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T05:30:03", "message_id": "3ec6910a-fe59-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T05:20:03", "message_id": "d91a8f9c-fe57-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T05:10:03", "message_id": "7371ff14-fe56-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T05:00:03", "message_id": "0dbd94f4-fe55-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T04:50:02", "message_id": "a80fd30c-fe53-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T04:40:02", "message_id": "426645be-fe52-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T04:30:02", "message_id": "dcbdba86-fe50-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T04:20:02", "message_id": "7706410a-fe4f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T04:10:02", "message_id": "114d1f06-fe4e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T04:00:02", "message_id": "aba8ee56-fe4c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T03:50:02", "message_id": "45f7c2f4-fe4b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T03:40:02", "message_id": "e04cc7c0-fe49-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T03:30:02", "message_id": "7a973678-fe48-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T03:20:02", "message_id": "14e4c486-fe47-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T03:10:02", "message_id": "af414d12-fe45-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T03:00:01", "message_id": "498c6c14-fe44-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T02:50:01", "message_id": "e3dbb024-fe42-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T02:40:01", "message_id": "7e2a1dfc-fe41-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T02:30:01", "message_id": "1888dcdc-fe40-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T02:20:01", "message_id": "b2dc0a86-fe3e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T02:10:01", "message_id": "4d26e43c-fe3d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T02:00:01", "message_id": "e77df4b4-fe3b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T01:50:01", "message_id": "81d110de-fe3a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T01:40:01", "message_id": "1c2ef044-fe39-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T01:30:01", "message_id": "b67e5a4c-fe37-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T01:20:01", "message_id": "50da0caa-fe36-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T01:10:01", "message_id": "eb2097d6-fe34-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T01:00:01", "message_id": "857a0094-fe33-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T00:50:00", "message_id": "1fc10bfe-fe32-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T00:40:00", "message_id": "ba19b20c-fe30-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T00:30:00", "message_id": "54652500-fe2f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T00:20:00", "message_id": "eeb47608-fe2d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T00:10:00", "message_id": "8908451a-fe2c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T00:00:00", "message_id": "235b2fda-fe2b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T23:50:00", "message_id": "bdade6d8-fe29-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T23:40:00", "message_id": "58027cc8-fe28-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T23:30:00", "message_id": "f2511976-fe26-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T23:20:00", "message_id": "8cae8032-fe25-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T23:10:00", "message_id": "273a9b10-fe24-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T23:00:00", "message_id": "c18d70fe-fe22-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T22:49:59", "message_id": "5b96604a-fe21-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T22:39:59", "message_id": "f5e24e36-fe1f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T22:29:59", "message_id": "903c6658-fe1e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T22:19:59", "message_id": "2a90dd9e-fe1d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T22:09:59", "message_id": "c4ddac26-fe1b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T21:59:59", "message_id": "5f2deeaa-fe1a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T21:49:59", "message_id": "f97f2a16-fe18-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T21:39:59", "message_id": "93cb9c5a-fe17-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T21:29:59", "message_id": "2e158188-fe16-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T21:19:58", "message_id": "c86cf9c0-fe14-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T21:09:58", "message_id": "62bdf8fa-fe13-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T20:59:58", "message_id": "fd125902-fe11-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T20:49:58", "message_id": "9758c0fc-fe10-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T20:39:58", "message_id": "31aa0da2-fe0f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T20:29:58", "message_id": "cbf975d4-fe0d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T20:19:58", "message_id": "66540bdc-fe0c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T20:09:58", "message_id": "009deb92-fe0b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T19:59:58", "message_id": "9af3d442-fe09-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T19:49:58", "message_id": "35468d16-fe08-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T19:39:58", "message_id": "cfa34f5e-fe06-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T19:29:58", "message_id": "69efe862-fe05-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T19:19:57", "message_id": "04413526-fe04-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T19:09:57", "message_id": "9e977998-fe02-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T18:59:57", "message_id": "38e649ea-fe01-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T18:49:57", "message_id": "d3352536-fdff-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T18:39:57", "message_id": "6d8e1ab8-fdfe-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T18:29:57", "message_id": "07e0f1c8-fdfd-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T18:19:57", "message_id": "a2364f2c-fdfb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T18:09:57", "message_id": "3c95fe20-fdfa-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T17:59:57", "message_id": "d6db5022-fdf8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T17:49:57", "message_id": "71314e3a-fdf7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T17:39:57", "message_id": "0b824c3e-fdf6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T17:29:57", "message_id": "a5d83dd6-fdf4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T17:19:56", "message_id": "4027c552-fdf3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T17:09:56", "message_id": "da7bf0c6-fdf1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T16:59:56", "message_id": "74ccff78-fdf0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T16:49:56", "message_id": "0f1dc7a8-fdef-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T16:39:56", "message_id": "a9792d1c-fded-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T16:29:56", "message_id": "43f3a446-fdec-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T16:19:56", "message_id": "de25129a-fdea-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T16:09:56", "message_id": "7881a792-fde9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T15:59:56", "message_id": "12d18f1c-fde8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T15:49:56", "message_id": "ad295f60-fde6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T15:39:56", "message_id": "477d65cc-fde5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T15:29:56", "message_id": "e1cea1a6-fde3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T15:19:56", "message_id": "7c500a1e-fde2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T15:09:56", "message_id": "1669812c-fde1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T14:59:55", "message_id": "b0b925cc-fddf-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T14:49:55", "message_id": "4b16d40e-fdde-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T14:39:55", "message_id": "e56131f0-fddc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T14:29:55", "message_id": "7fb5b1b0-fddb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T14:19:55", "message_id": "1a06929a-fdda-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T14:09:55", "message_id": "b45cce42-fdd8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T13:59:55", "message_id": "4ea8aac2-fdd7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T13:49:55", "message_id": "e8fdd022-fdd5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T13:39:55", "message_id": "834a1ffc-fdd4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T13:29:55", "message_id": "1d981f34-fdd3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T13:19:55", "message_id": "b7e9b02c-fdd1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T13:09:54", "message_id": "523e9946-fdd0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T12:59:54", "message_id": "ec91ced4-fdce-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T12:49:54", "message_id": "86e28b56-fdcd-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T12:39:54", "message_id": "213160da-fdcc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T12:29:54", "message_id": "bb81d2f2-fdca-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T12:19:54", "message_id": "55d5a2fe-fdc9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T12:09:54", "message_id": "f0202e30-fdc7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T11:59:54", "message_id": "8a763dbe-fdc6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T11:49:54", "message_id": "24cb74b2-fdc5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T11:39:54", "message_id": "bf1fc894-fdc3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T11:29:54", "message_id": "596f8756-fdc2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T11:19:53", "message_id": "f3c5a864-fdc0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T11:09:53", "message_id": "8e16a7a8-fdbf-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T10:59:53", "message_id": "286a74da-fdbe-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T10:49:54", "message_id": "c2e5f7f2-fdbc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T10:39:53", "message_id": "5d0c6548-fdbb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T10:29:53", "message_id": "f768d736-fdb9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T10:19:53", "message_id": "91b69a28-fdb8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T10:09:53", "message_id": "2c179aba-fdb7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T09:59:53", "message_id": "c669f70e-fdb5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T09:49:53", "message_id": "60be5478-fdb4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T09:39:53", "message_id": "fb0f20ae-fdb2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T09:29:53", "message_id": "956423b8-fdb1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T09:19:53", "message_id": "2fb29294-fdb0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T09:09:52", "message_id": "c9ffe844-fdae-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T08:59:52", "message_id": "6456abaa-fdad-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T08:49:52", "message_id": "feb7782a-fdab-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T08:39:52", "message_id": "98fc559c-fdaa-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T08:29:52", "message_id": "334c7cdc-fda9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T08:19:52", "message_id": "cd9bcf60-fda7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T08:09:52", "message_id": "68083144-fda6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T07:59:52", "message_id": "024377f2-fda5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T07:49:52", "message_id": "9c917a72-fda3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T07:39:52", "message_id": "36e9a4f2-fda2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T07:29:52", "message_id": "d13852da-fda0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T07:19:52", "message_id": "6b8c36c8-fd9f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T07:09:52", "message_id": "0604a386-fd9e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T06:59:51", "message_id": "a028e9a6-fd9c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T06:49:51", "message_id": "3a7fb572-fd9b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T06:39:51", "message_id": "d4c70632-fd99-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T06:29:51", "message_id": "6f1bbda6-fd98-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T06:19:51", "message_id": "0966efae-fd97-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T06:09:51", "message_id": "a3bc7350-fd95-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T05:59:51", "message_id": "3e0feb6e-fd94-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T05:49:51", "message_id": "d8616294-fd92-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T05:39:51", "message_id": "72b2eae0-fd91-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T05:29:51", "message_id": "0d0fb732-fd90-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T05:19:50", "message_id": "a75dd456-fd8e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T05:09:50", "message_id": "41a8cb58-fd8d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T04:59:50", "message_id": "dc092c44-fd8b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T04:49:50", "message_id": "766698fa-fd8a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T04:39:50", "message_id": "10c5a24e-fd89-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T04:29:50", "message_id": "ab18d570-fd87-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T04:19:50", "message_id": "45518a08-fd86-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T04:09:50", "message_id": "dfbd86d4-fd84-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T03:59:50", "message_id": "79d4955c-fd83-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T03:49:50", "message_id": "144529dc-fd82-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T03:39:50", "message_id": "ae9dc220-fd80-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T03:29:50", "message_id": "48f9b42a-fd7f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T03:19:50", "message_id": "e3588caa-fd7d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T03:09:50", "message_id": "7da4c15e-fd7c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T02:59:49", "message_id": "17db7274-fd7b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T02:49:49", "message_id": "b21ce1b2-fd79-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T02:39:49", "message_id": "4cae109a-fd78-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T02:29:49", "message_id": "e6ef666a-fd76-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T02:19:49", "message_id": "814a7b8e-fd75-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T02:09:49", "message_id": "1b95c8f8-fd74-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T01:59:49", "message_id": "b5d49c20-fd72-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T01:49:49", "message_id": "502936fc-fd71-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T01:39:49", "message_id": "ea86a2d6-fd6f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T01:29:49", "message_id": "8503d524-fd6e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T01:19:49", "message_id": "1f64f97e-fd6d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T01:09:49", "message_id": "b9a1aee4-fd6b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T00:59:48", "message_id": "53da65a2-fd6a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T00:49:48", "message_id": "ee1b6f5a-fd68-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T00:39:48", "message_id": "88828f44-fd67-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T00:29:48", "message_id": "22db5d98-fd66-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T00:19:48", "message_id": "bd36d23e-fd64-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T00:09:48", "message_id": "57a78978-fd63-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-04T23:59:48", "message_id": "f1fe3122-fd61-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-04T23:49:48", "message_id": "8c38d500-fd60-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-04T23:39:05", "message_id": "0cfd459c-fd5f-11e2-b8cf-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-04T23:29:05", "message_id": "a768fc18-fd5d-11e2-b8cf-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}], "http://localhost:8777/v2/meters/storage.objects.size?q.field=resource_id&q.value=e88ef09124594ede8ecea0b1628a05bf": [{"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-12T04:01:18", "message_id": "d76a9e3e-0303-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-12T03:51:18", "message_id": "71ba1c6e-0302-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-12T03:41:18", "message_id": "0c0832da-0301-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-12T03:31:18", "message_id": "a66b951c-02ff-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-12T03:21:18", "message_id": "40b7219c-02fe-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-12T03:11:18", "message_id": "db0d05e2-02fc-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-12T03:01:17", "message_id": "7552cd6e-02fb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-12T02:51:17", "message_id": "0faee41c-02fa-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-12T02:41:17", "message_id": "a9eafcf2-02f8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-12T02:31:17", "message_id": "444782c2-02f7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-12T02:21:17", "message_id": "de9290e4-02f5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-12T02:11:17", "message_id": "78e5b25e-02f4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-12T02:01:17", "message_id": "133ea0e2-02f3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-12T01:51:17", "message_id": "ad94281c-02f1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-12T01:41:17", "message_id": "47e027ec-02f0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-12T01:31:17", "message_id": "e233574e-02ee-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-12T01:21:17", "message_id": "7c7e24ac-02ed-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-12T01:11:16", "message_id": "16d55acc-02ec-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-12T01:01:16", "message_id": "b11299bc-02ea-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-12T00:51:16", "message_id": "4b78cd20-02e9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-12T00:41:16", "message_id": "e5be803e-02e7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-12T00:31:16", "message_id": "800e0d0a-02e6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-12T00:21:16", "message_id": "1a8cad98-02e5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-12T00:11:16", "message_id": "b4ae770a-02e3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-12T00:01:16", "message_id": "4f0243f6-02e2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T23:51:16", "message_id": "e9552574-02e0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T23:41:16", "message_id": "83af0ede-02df-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T23:31:16", "message_id": "1e04d2b8-02de-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T23:21:15", "message_id": "b84b6d02-02dc-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T23:11:15", "message_id": "52ac3194-02db-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T23:01:16", "message_id": "ed3543ba-02d9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T22:51:15", "message_id": "874c9ea0-02d8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T22:41:15", "message_id": "2198af14-02d7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T22:31:15", "message_id": "bbebcb02-02d5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T22:21:15", "message_id": "56372582-02d4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T22:11:15", "message_id": "f0873f48-02d2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T22:01:15", "message_id": "8addf03e-02d1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T21:51:15", "message_id": "25368a94-02d0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T21:41:15", "message_id": "bf87580a-02ce-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T21:31:14", "message_id": "59d36b80-02cd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T21:21:14", "message_id": "f429f444-02cb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T21:11:14", "message_id": "8e7ae1ae-02ca-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T21:01:14", "message_id": "28ca13a8-02c9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T20:51:14", "message_id": "c31fcc24-02c7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T20:41:14", "message_id": "5d6a81a4-02c6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T20:31:14", "message_id": "f7c3e1de-02c4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T20:21:14", "message_id": "9214dc40-02c3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T20:11:14", "message_id": "2c71ec1c-02c2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T20:01:14", "message_id": "c6bc05b6-02c0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T19:51:14", "message_id": "6111127a-02bf-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T19:41:14", "message_id": "fb5f13ec-02bd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T19:31:13", "message_id": "95b4862c-02bc-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T19:21:13", "message_id": "300333e2-02bb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T19:11:13", "message_id": "ca503f14-02b9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T19:01:13", "message_id": "649b1712-02b8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T18:51:13", "message_id": "fee8ff8e-02b6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T18:41:13", "message_id": "99417e0a-02b5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T18:31:13", "message_id": "338e3888-02b4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T18:21:13", "message_id": "cddf38f8-02b2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T18:11:13", "message_id": "68301866-02b1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T18:01:13", "message_id": "027f23b4-02b0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T17:51:12", "message_id": "9cd4ee46-02ae-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T17:41:12", "message_id": "3722a0a8-02ad-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T17:31:12", "message_id": "d17a90cc-02ab-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T17:21:12", "message_id": "6bc85706-02aa-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T17:11:12", "message_id": "0615ba80-02a9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T17:01:12", "message_id": "a0759354-02a7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T16:51:12", "message_id": "3ac6662e-02a6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T16:41:12", "message_id": "d525dfda-02a4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T16:31:12", "message_id": "6f6eba0a-02a3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T16:21:12", "message_id": "09b6cc08-02a2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T16:11:12", "message_id": "a40c8cea-02a0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T16:01:12", "message_id": "3e685320-029f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T15:51:12", "message_id": "d8b7654e-029d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T15:41:12", "message_id": "7315e3ce-029c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T15:31:11", "message_id": "0d704862-029b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T15:21:11", "message_id": "a7cf716e-0299-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T15:11:11", "message_id": "421cc908-0298-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T15:01:11", "message_id": "dc6b58c8-0296-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T14:51:11", "message_id": "76b6363e-0295-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T14:41:11", "message_id": "11081470-0294-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T14:31:11", "message_id": "ab57f240-0292-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T14:21:11", "message_id": "45aa67f8-0291-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T14:11:11", "message_id": "dff88f1c-028f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T14:01:11", "message_id": "7a53290c-028e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T13:51:11", "message_id": "14a7c578-028d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T13:41:11", "message_id": "aefa3c34-028b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T13:31:10", "message_id": "494bb148-028a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T13:21:10", "message_id": "e3972d1a-0288-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T13:11:10", "message_id": "7df01dd8-0287-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T13:01:10", "message_id": "18480d34-0286-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T12:51:10", "message_id": "b2925d74-0284-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T12:41:10", "message_id": "4ce82d24-0283-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T12:31:10", "message_id": "e734948c-0281-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T12:21:10", "message_id": "8180772e-0280-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T12:11:10", "message_id": "1bd396be-027f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T12:01:10", "message_id": "b62132dc-027d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T11:51:10", "message_id": "5079e966-027c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T11:41:09", "message_id": "eabfa5bc-027a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T11:31:09", "message_id": "85145858-0279-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T11:21:09", "message_id": "1f64dad8-0278-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T11:11:09", "message_id": "b9b6e8a8-0276-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T11:01:09", "message_id": "54077212-0275-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T10:51:09", "message_id": "ee55b6be-0273-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T10:41:09", "message_id": "88abe190-0272-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T10:31:09", "message_id": "2301b6a4-0271-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T10:21:09", "message_id": "bd49b466-026f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T10:11:09", "message_id": "57ac7f5e-026e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T10:01:09", "message_id": "f1f8b98a-026c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T09:51:08", "message_id": "8c48ebb0-026b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T09:41:08", "message_id": "269756e0-026a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T09:31:08", "message_id": "c0eee8c2-0268-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T09:21:08", "message_id": "5b3ecaac-0267-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T09:11:08", "message_id": "f5967660-0265-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T09:01:08", "message_id": "8fe70790-0264-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T08:51:08", "message_id": "2a43f156-0263-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T08:41:08", "message_id": "c4970e0c-0261-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T08:31:08", "message_id": "5eed40d6-0260-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T08:21:08", "message_id": "f9317812-025e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T08:11:08", "message_id": "938559bc-025d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T08:01:08", "message_id": "2ddc8e60-025c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T07:51:07", "message_id": "c825d208-025a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T07:41:07", "message_id": "62817976-0259-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T07:31:07", "message_id": "fccddaa8-0257-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T07:21:07", "message_id": "9722bb7a-0256-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T07:11:07", "message_id": "31652878-0255-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T07:01:07", "message_id": "cbc9bb10-0253-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T06:51:07", "message_id": "66159a2e-0252-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T06:41:07", "message_id": "0064e582-0251-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T06:31:07", "message_id": "9ab4f796-024f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T06:21:07", "message_id": "35155fbc-024e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T06:11:07", "message_id": "cf5da9f0-024c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T06:01:07", "message_id": "69c7ca04-024b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T05:51:07", "message_id": "040d0cfc-024a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T05:41:06", "message_id": "9e5b9f82-0248-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T05:31:06", "message_id": "38a4f1bc-0247-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T05:21:06", "message_id": "d2f71c4c-0245-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T05:11:06", "message_id": "6d3f9754-0244-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T05:01:06", "message_id": "07977904-0243-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T04:51:06", "message_id": "a1ef6888-0241-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T04:41:06", "message_id": "3c3c982c-0240-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T04:31:06", "message_id": "d6910ed2-023e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T04:21:06", "message_id": "70f9fb2a-023d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T04:11:06", "message_id": "0b30d0c6-023c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T04:01:05", "message_id": "a5884458-023a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T03:51:05", "message_id": "3fdb3f30-0239-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T03:41:05", "message_id": "da44293a-0237-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T03:31:05", "message_id": "7477c75c-0236-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T03:21:05", "message_id": "0eca42f0-0235-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T03:11:05", "message_id": "a918063c-0233-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T03:01:05", "message_id": "4367d660-0232-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T02:51:05", "message_id": "ddb5cd6e-0230-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T02:41:05", "message_id": "77f73c5c-022f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T02:31:05", "message_id": "1255e0c0-022e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T02:21:04", "message_id": "aca47daa-022c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T02:11:04", "message_id": "46f60d3a-022b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T02:01:04", "message_id": "e152b5f6-0229-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T01:51:04", "message_id": "7b9aeff4-0228-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T01:41:04", "message_id": "15ff295e-0227-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T01:31:04", "message_id": "b04c94d0-0225-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T01:21:04", "message_id": "4a855494-0224-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T01:11:04", "message_id": "e4d7ced4-0222-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T01:01:04", "message_id": "7f33fd7e-0221-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T00:51:04", "message_id": "197cc106-0220-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T00:41:04", "message_id": "b3ce4fe2-021e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T00:31:03", "message_id": "4e1db968-021d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T00:21:03", "message_id": "e86e7702-021b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T00:11:03", "message_id": "82bcff7e-021a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T00:01:03", "message_id": "1d135f0c-0219-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T23:51:03", "message_id": "b765b728-0217-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T23:41:03", "message_id": "51b4322a-0216-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T23:31:03", "message_id": "ec0beb12-0214-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T23:21:03", "message_id": "8663d2bc-0213-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T23:11:03", "message_id": "20a981d4-0212-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T23:01:03", "message_id": "bb55e65c-0210-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T22:51:03", "message_id": "5561ee64-020f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T22:41:08", "message_id": "f2c15264-020d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T22:31:03", "message_id": "8a0f19be-020c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T22:21:02", "message_id": "24572ad6-020b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T22:11:02", "message_id": "bebcc4a2-0209-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T22:01:02", "message_id": "58fd084e-0208-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T21:51:02", "message_id": "f36602d4-0206-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T21:41:02", "message_id": "8dadc2ac-0205-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T21:31:02", "message_id": "27f85f5e-0204-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T21:21:02", "message_id": "c26c0100-0202-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T21:11:02", "message_id": "5ca549a4-0201-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T21:01:02", "message_id": "f6e3b598-01ff-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T20:51:02", "message_id": "91962910-01fe-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T20:41:02", "message_id": "2b99f53e-01fd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T20:31:02", "message_id": "c61ba712-01fb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T20:21:01", "message_id": "603740f6-01fa-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T20:11:01", "message_id": "fa7a50ba-01f8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T20:01:01", "message_id": "94d264e2-01f7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T19:51:01", "message_id": "2f26e75e-01f6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T19:41:01", "message_id": "c97924c2-01f4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T19:31:01", "message_id": "63d20586-01f3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T19:21:01", "message_id": "fe097b36-01f1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T19:11:01", "message_id": "986b45bc-01f0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T19:01:01", "message_id": "32bc2f98-01ef-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T18:51:00", "message_id": "ccfb228c-01ed-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T18:41:00", "message_id": "67619a6a-01ec-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T18:31:00", "message_id": "01ad66c8-01eb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T18:21:00", "message_id": "9bfc1b86-01e9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T18:11:00", "message_id": "364704d2-01e8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T18:01:00", "message_id": "d0975caa-01e6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T17:51:00", "message_id": "6af1968c-01e5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T17:41:00", "message_id": "0546bb1a-01e4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T17:31:00", "message_id": "9f91f498-01e2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T17:21:00", "message_id": "39e5029e-01e1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T17:11:00", "message_id": "d42fa57c-01df-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T17:00:59", "message_id": "6e818462-01de-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T16:50:59", "message_id": "08d6a706-01dd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T16:40:59", "message_id": "a323a2fc-01db-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T16:30:59", "message_id": "3d79685c-01da-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T16:20:59", "message_id": "d7c272f2-01d8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T16:10:59", "message_id": "721e19e8-01d7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T16:00:59", "message_id": "0c748d08-01d6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T15:50:59", "message_id": "a6c45ba6-01d4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T15:40:59", "message_id": "4125a7ec-01d3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T15:30:59", "message_id": "db72bf4e-01d1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T15:20:59", "message_id": "75cbbe58-01d0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T15:10:59", "message_id": "101a6cc2-01cf-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T15:00:58", "message_id": "aa652ecc-01cd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T14:50:58", "message_id": "44bcea52-01cc-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T14:40:58", "message_id": "df0479f6-01ca-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T14:30:58", "message_id": "794c9644-01c9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T14:20:58", "message_id": "139db400-01c8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T14:10:58", "message_id": "adf7e3f6-01c6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T14:00:58", "message_id": "48498790-01c5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T13:50:58", "message_id": "e29da0bc-01c3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T13:40:58", "message_id": "7ce71272-01c2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T13:30:58", "message_id": "1744a458-01c1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T13:20:58", "message_id": "b18bbf76-01bf-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T13:10:57", "message_id": "4bdd88b8-01be-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T13:00:57", "message_id": "e63046c8-01bc-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T12:50:57", "message_id": "807eb7a2-01bb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T12:40:57", "message_id": "1ad3dfc8-01ba-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T12:30:57", "message_id": "b52bb156-01b8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T12:20:57", "message_id": "4f81e38a-01b7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T12:10:57", "message_id": "e9d8aefc-01b5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T12:00:57", "message_id": "84208c34-01b4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T11:50:57", "message_id": "1e777ed4-01b3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T11:40:57", "message_id": "b8d20118-01b1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T11:30:57", "message_id": "531dc182-01b0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T11:20:57", "message_id": "ed712276-01ae-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T11:10:57", "message_id": "87c97d16-01ad-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T11:00:56", "message_id": "22049868-01ac-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T10:50:57", "message_id": "bc898922-01aa-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T10:40:56", "message_id": "56b59b64-01a9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T10:30:56", "message_id": "f1128034-01a7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T10:20:56", "message_id": "8b583514-01a6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T10:10:56", "message_id": "25c81c6a-01a5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T10:00:56", "message_id": "c0043f54-01a3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T09:50:56", "message_id": "5a493bde-01a2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T09:40:56", "message_id": "f4a62676-01a0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T09:30:56", "message_id": "8f11aee4-019f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T09:20:56", "message_id": "2946cdfc-019e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T09:10:55", "message_id": "c39f336e-019c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T09:00:56", "message_id": "5e08f4f0-019b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T08:50:55", "message_id": "f840304e-0199-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T08:40:55", "message_id": "929f93f2-0198-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T08:30:55", "message_id": "2cd3ea92-0197-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T08:20:55", "message_id": "c7335174-0195-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T08:10:55", "message_id": "6173cacc-0194-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T08:00:55", "message_id": "fbc88420-0192-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T07:50:55", "message_id": "962b254c-0191-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T07:40:55", "message_id": "30804ffc-0190-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T07:30:55", "message_id": "cacb3cd6-018e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T07:20:54", "message_id": "652150c4-018d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T07:10:54", "message_id": "ff7371c2-018b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T07:00:54", "message_id": "99c0990a-018a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T06:50:54", "message_id": "34174bf4-0189-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T06:40:54", "message_id": "ce6a27aa-0187-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T06:30:54", "message_id": "68bd7fa2-0186-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T06:20:54", "message_id": "0312b682-0185-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T06:10:54", "message_id": "9d583200-0183-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T06:00:54", "message_id": "37a09d2c-0182-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T05:50:54", "message_id": "d202c9dc-0180-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T05:40:54", "message_id": "6c4f4e68-017f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T05:30:53", "message_id": "0695f9f6-017e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T05:20:53", "message_id": "a0ed1ac2-017c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T05:10:53", "message_id": "3b43d018-017b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T05:00:53", "message_id": "d59be666-0179-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T04:50:53", "message_id": "6fe15cb2-0178-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T04:40:53", "message_id": "0a2b4b0e-0177-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T04:30:53", "message_id": "a480878e-0175-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T04:20:53", "message_id": "3ed0a550-0174-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T04:10:53", "message_id": "d9231d4c-0172-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T04:00:53", "message_id": "737e5250-0171-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T03:50:53", "message_id": "0dd024c0-0170-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T03:40:53", "message_id": "a8239c70-016e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T03:30:52", "message_id": "4278ecb4-016d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T03:20:52", "message_id": "dcc4d6d6-016b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T03:10:52", "message_id": "7716d01a-016a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T03:00:52", "message_id": "116907fc-0169-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T02:50:52", "message_id": "abbd6fd4-0167-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T02:40:52", "message_id": "4606c830-0166-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T02:30:52", "message_id": "e057ffaa-0164-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T02:20:52", "message_id": "7abc10d8-0163-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T02:10:52", "message_id": "150dfed2-0162-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T02:00:52", "message_id": "af584e0e-0160-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T01:50:52", "message_id": "49d0d782-015f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T01:40:52", "message_id": "e4146004-015d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T01:30:52", "message_id": "7e775040-015c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T01:20:52", "message_id": "18ca5cc0-015b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T01:10:51", "message_id": "b30c216c-0159-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T01:00:51", "message_id": "4d67739e-0158-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T00:50:51", "message_id": "e794d454-0156-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T00:40:51", "message_id": "81ec2734-0155-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T00:30:51", "message_id": "1c3cc980-0154-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T00:20:51", "message_id": "b67f659a-0152-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T00:10:51", "message_id": "50dc8af2-0151-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T00:00:51", "message_id": "eb2ada0c-014f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T23:50:50", "message_id": "857cb24e-014e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T23:40:50", "message_id": "1fc85274-014d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T23:30:50", "message_id": "ba0f04c4-014b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T23:20:50", "message_id": "5471f56e-014a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T23:10:50", "message_id": "eebb29ee-0148-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T23:00:50", "message_id": "894c3478-0147-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T22:50:50", "message_id": "2360846c-0146-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T22:40:50", "message_id": "bdaa08ec-0144-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T22:30:50", "message_id": "57ff1d08-0143-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T22:20:50", "message_id": "f26333c2-0141-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T22:10:49", "message_id": "8c9ea1da-0140-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T22:00:49", "message_id": "26fd9d82-013f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T21:50:49", "message_id": "c1513b7a-013d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T21:40:49", "message_id": "5baa2ba2-013c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T21:30:49", "message_id": "f60111d6-013a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T21:20:49", "message_id": "904ade54-0139-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T21:10:49", "message_id": "2aa69666-0138-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T21:00:49", "message_id": "c4fdacb0-0136-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T20:50:49", "message_id": "5f4b2bb4-0135-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T20:40:49", "message_id": "f9a18020-0133-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T20:30:49", "message_id": "93e6829a-0132-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T20:20:49", "message_id": "2e597a3c-0131-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T20:10:49", "message_id": "c894f52e-012f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T20:00:49", "message_id": "62e5de6a-012e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T19:50:49", "message_id": "fd42a5b2-012c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T19:40:48", "message_id": "97848db8-012b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T19:30:48", "message_id": "31dc8796-012a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T19:20:48", "message_id": "cc3e5f64-0128-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T19:10:48", "message_id": "66835d10-0127-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T19:00:48", "message_id": "00cebb1e-0126-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T18:50:48", "message_id": "9b1a158a-0124-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T18:40:48", "message_id": "356f177c-0123-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T18:30:48", "message_id": "cfb8e3c8-0121-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T18:20:48", "message_id": "6a07f6fa-0120-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T18:10:47", "message_id": "04578fd8-011f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T18:00:47", "message_id": "9e9fb496-011d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T17:50:47", "message_id": "38fa0908-011c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T17:40:47", "message_id": "d346796c-011a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T17:30:47", "message_id": "6d955b5c-0119-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T17:20:47", "message_id": "07eea160-0118-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T17:10:47", "message_id": "a23c4706-0116-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T17:00:47", "message_id": "3c8fc03c-0115-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T16:50:47", "message_id": "d6db0fae-0113-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T16:40:47", "message_id": "712ab336-0112-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T16:30:47", "message_id": "0b8bfedc-0111-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T16:20:46", "message_id": "a5d2428c-010f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T16:10:46", "message_id": "402a961a-010e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T16:00:46", "message_id": "da794998-010c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T15:50:49", "message_id": "764fc0f6-010b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T15:40:47", "message_id": "0f7a17ec-010a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T15:30:46", "message_id": "a99413e8-0108-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T15:20:46", "message_id": "43ca37f0-0107-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T15:10:46", "message_id": "de31be28-0105-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T15:00:46", "message_id": "78704a74-0104-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T14:50:46", "message_id": "12cb3072-0103-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T14:40:46", "message_id": "ad171512-0101-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T14:30:46", "message_id": "4760e6b8-0100-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T14:20:46", "message_id": "e1bea9fe-00fe-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T14:10:46", "message_id": "7c460302-00fd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T14:00:45", "message_id": "164db5dc-00fc-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T13:50:45", "message_id": "b0ae2ea6-00fa-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T13:40:45", "message_id": "4af79706-00f9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T13:30:45", "message_id": "e5489d0c-00f7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T13:20:46", "message_id": "7ffd8440-00f6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T13:10:45", "message_id": "19dda376-00f5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T13:00:45", "message_id": "b43b2e72-00f3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T12:50:45", "message_id": "4e8221fe-00f2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T12:40:45", "message_id": "e8dbb88e-00f0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T12:30:44", "message_id": "83323bbc-00ef-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T12:20:44", "message_id": "1d7c0344-00ee-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T12:10:44", "message_id": "b7cd09fe-00ec-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T12:00:44", "message_id": "522040b8-00eb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T11:50:44", "message_id": "ec79976a-00e9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T11:40:44", "message_id": "86c26c4a-00e8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T11:30:44", "message_id": "211ba3d0-00e7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T11:20:44", "message_id": "bb6a9c72-00e5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T11:10:44", "message_id": "55c24704-00e4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T11:00:44", "message_id": "f009f62e-00e2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T10:50:44", "message_id": "8a5bc114-00e1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T10:40:43", "message_id": "24ab70ae-00e0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T10:30:43", "message_id": "bf027fb4-00de-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T10:20:43", "message_id": "594eac16-00dd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T10:10:43", "message_id": "f3a2a92c-00db-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T10:00:43", "message_id": "8e045486-00da-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T09:50:43", "message_id": "2842a81a-00d9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T09:40:43", "message_id": "c29dbd20-00d7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T09:30:43", "message_id": "5cedc6c4-00d6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T09:20:43", "message_id": "f740507c-00d4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T09:10:43", "message_id": "919a0598-00d3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T09:00:43", "message_id": "2be64582-00d2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T08:50:42", "message_id": "c6305508-00d0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T08:40:42", "message_id": "608adf44-00cf-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T08:30:42", "message_id": "fadee2c2-00cd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T08:20:42", "message_id": "952fdd24-00cc-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T08:10:42", "message_id": "2f7a80e8-00cb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T08:00:42", "message_id": "c9ca2218-00c9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T07:50:42", "message_id": "641b6f86-00c8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T07:40:42", "message_id": "fe97a428-00c6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T07:30:42", "message_id": "98c84e3c-00c5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T07:20:42", "message_id": "330b7700-00c4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T07:10:42", "message_id": "cd5e720a-00c2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T07:00:41", "message_id": "67b408da-00c1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T06:50:41", "message_id": "01ff5d74-00c0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T06:40:41", "message_id": "9c54331a-00be-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T06:30:41", "message_id": "36a71af6-00bd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T06:20:41", "message_id": "d0f2e4c0-00bb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T06:10:41", "message_id": "6b494bc4-00ba-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T06:00:41", "message_id": "05a45526-00b9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T05:50:41", "message_id": "9ff05410-00b7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T05:40:41", "message_id": "3a48d0f2-00b6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T05:30:41", "message_id": "d4943338-00b4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T05:20:41", "message_id": "6ee56760-00b3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T05:10:41", "message_id": "0938fe00-00b2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T05:00:40", "message_id": "a38dbf6a-00b0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T04:50:40", "message_id": "3df39efa-00af-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T04:40:40", "message_id": "d84b01a2-00ad-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T04:30:40", "message_id": "7298719c-00ac-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T04:20:40", "message_id": "0cf9d796-00ab-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T04:10:40", "message_id": "a752d1be-00a9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T04:00:40", "message_id": "41c7d6c4-00a8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T03:50:41", "message_id": "dc445d0a-00a6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T03:40:40", "message_id": "7657755a-00a5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T03:30:40", "message_id": "10dd1514-00a4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T03:20:40", "message_id": "ab061f8e-00a2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T03:10:40", "message_id": "4561a21c-00a1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T03:00:40", "message_id": "dfb561ac-009f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T02:50:40", "message_id": "79f9621a-009e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T02:40:40", "message_id": "14824cc2-009d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T02:30:40", "message_id": "ae9feb72-009b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T02:20:40", "message_id": "48f5d814-009a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T02:10:39", "message_id": "e349bc8e-0098-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T02:00:39", "message_id": "7d9c04c4-0097-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T01:50:39", "message_id": "17d98b30-0096-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T01:40:39", "message_id": "b22946f0-0094-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T01:30:39", "message_id": "4c7bf3b2-0093-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T01:20:39", "message_id": "e6d8d544-0091-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T01:10:39", "message_id": "811cc7c0-0090-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T01:00:39", "message_id": "1b7b356a-008f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T00:50:39", "message_id": "b5c1dd06-008d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T00:40:38", "message_id": "500ce498-008c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T00:30:38", "message_id": "ea6d1cc6-008a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T00:20:38", "message_id": "84c19b28-0089-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T00:10:38", "message_id": "1f0e8b5c-0088-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T00:00:38", "message_id": "b95f4a18-0086-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T23:50:38", "message_id": "53aa2388-0085-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T23:40:38", "message_id": "ee0ad0b4-0083-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T23:30:38", "message_id": "8850f88a-0082-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T23:20:38", "message_id": "229acc9c-0081-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T23:10:38", "message_id": "bcf79150-007f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T23:00:38", "message_id": "577fcf8c-007e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T22:50:38", "message_id": "f19232e2-007c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T22:40:37", "message_id": "8beb297c-007b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T22:30:37", "message_id": "262a8e58-007a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T22:20:37", "message_id": "c0871414-0078-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T22:10:37", "message_id": "5ad70f08-0077-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T22:00:37", "message_id": "f527c054-0075-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T21:50:37", "message_id": "8f847f68-0074-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T21:40:37", "message_id": "29cd52e0-0073-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T21:30:37", "message_id": "c422f6a8-0071-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T21:20:37", "message_id": "5e83aaaa-0070-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T21:10:37", "message_id": "f8c7a6cc-006e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T21:00:37", "message_id": "9310c620-006d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T20:50:36", "message_id": "2d5e5078-006c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T20:40:36", "message_id": "c7b1187e-006a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T20:30:36", "message_id": "620a246c-0069-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T20:20:36", "message_id": "fc4eccaa-0067-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T20:10:36", "message_id": "96ac3a8c-0066-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T20:00:36", "message_id": "30f77202-0065-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T19:50:36", "message_id": "cb4f7450-0063-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T19:40:36", "message_id": "659a52e8-0062-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T19:30:36", "message_id": "ffed1cba-0060-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T19:20:36", "message_id": "9a38cb90-005f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T19:10:35", "message_id": "348db5f4-005e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T19:00:35", "message_id": "cee19938-005c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T18:50:35", "message_id": "693163da-005b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T18:40:35", "message_id": "037da572-005a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T18:30:35", "message_id": "9dddff92-0058-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T18:20:35", "message_id": "381dc77e-0057-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T18:10:35", "message_id": "d27b5c0c-0055-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T18:00:35", "message_id": "6ccd0582-0054-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T17:50:35", "message_id": "071f985e-0053-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T17:40:35", "message_id": "a17989c0-0051-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T17:30:35", "message_id": "3bcd6b24-0050-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T17:20:35", "message_id": "d61b040e-004e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T17:10:34", "message_id": "706b6ba4-004d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T17:00:34", "message_id": "0aba0258-004c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T16:50:34", "message_id": "a50ca808-004a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T16:40:34", "message_id": "3f67b098-0049-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T16:30:34", "message_id": "d9baaea4-0047-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T16:20:34", "message_id": "740f1604-0046-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T16:10:34", "message_id": "0e5b3780-0045-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T16:00:34", "message_id": "a8b696c8-0043-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T15:50:34", "message_id": "43051ca6-0042-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T15:40:34", "message_id": "dd5210e0-0040-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T15:30:34", "message_id": "77a75756-003f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T15:20:34", "message_id": "11fd1e78-003e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T15:10:33", "message_id": "ac4cbaf8-003c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T15:00:33", "message_id": "4697085e-003b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T14:50:33", "message_id": "e0efbe52-0039-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T14:40:33", "message_id": "7b39acea-0038-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T14:30:33", "message_id": "1593eb40-0037-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T14:20:33", "message_id": "afdf95d4-0035-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T14:10:33", "message_id": "4a41ae34-0034-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T14:00:33", "message_id": "e4c2fd84-0032-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T13:50:33", "message_id": "7ed4aed8-0031-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T13:40:33", "message_id": "1932ca98-0030-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T13:30:33", "message_id": "b380d132-002e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T13:20:33", "message_id": "4ddca406-002d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T13:10:32", "message_id": "e828c15e-002b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T13:00:32", "message_id": "8276c44c-002a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T12:50:32", "message_id": "1ccaeb06-0029-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T12:40:32", "message_id": "b71107ba-0027-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T12:30:32", "message_id": "516aab10-0026-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T12:20:32", "message_id": "ebb42e5a-0024-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T12:10:32", "message_id": "85fe7f30-0023-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T12:00:32", "message_id": "205b27d8-0022-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T11:50:32", "message_id": "baa7215e-0020-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T11:40:32", "message_id": "550ef5d4-001f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T11:30:32", "message_id": "ef6409b4-001d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T11:20:31", "message_id": "89a54fa8-001c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T11:10:32", "message_id": "2416e1ca-001b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T11:00:31", "message_id": "be55e9b8-0019-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T10:50:31", "message_id": "58a80aa2-0018-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T10:40:31", "message_id": "f3042844-0016-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T10:30:31", "message_id": "8d7199e0-0015-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T10:20:31", "message_id": "27bb80bc-0014-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T10:10:31", "message_id": "c2225452-0012-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T10:00:31", "message_id": "5c462402-0011-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T09:50:31", "message_id": "f695f21e-000f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T09:40:31", "message_id": "90def4c6-000e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T09:30:31", "message_id": "2b42a348-000d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T09:20:30", "message_id": "c585e84a-000b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T09:10:30", "message_id": "5fd48db8-000a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T09:00:30", "message_id": "fa2ee7f2-0008-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T08:50:30", "message_id": "947d91f2-0007-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T08:40:30", "message_id": "2ed6354e-0006-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T08:30:30", "message_id": "c92bf57c-0004-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T08:20:30", "message_id": "63789d80-0003-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T08:10:30", "message_id": "fdd7d000-0001-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T08:00:30", "message_id": "981d9d86-0000-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T07:50:30", "message_id": "326cdab6-ffff-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T07:40:30", "message_id": "ccbd5b38-fffd-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T07:30:30", "message_id": "670c5a10-fffc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T07:20:29", "message_id": "0166c7c8-fffb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T07:10:29", "message_id": "9badd9e0-fff9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T07:00:29", "message_id": "35f8eb7c-fff8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T06:50:29", "message_id": "d05bf062-fff6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T06:40:29", "message_id": "6aa3930c-fff5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T06:30:29", "message_id": "04f0ff50-fff4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T06:20:29", "message_id": "9f44e154-fff2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T06:10:29", "message_id": "3995475a-fff1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T06:00:29", "message_id": "d3ed93e0-ffef-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T05:50:29", "message_id": "6e46e9de-ffee-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T05:40:29", "message_id": "089f7674-ffed-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T05:30:29", "message_id": "a2e7e308-ffeb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T05:20:28", "message_id": "3d2f58bc-ffea-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T05:10:28", "message_id": "d784c688-ffe8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T05:00:28", "message_id": "71d9c424-ffe7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T04:50:28", "message_id": "0c1d553e-ffe6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T04:40:28", "message_id": "a67ec010-ffe4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T04:30:28", "message_id": "40c321e0-ffe3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T04:20:28", "message_id": "db1cdada-ffe1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T04:10:28", "message_id": "756e3a5e-ffe0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T04:00:28", "message_id": "0fb66c00-ffdf-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T03:50:28", "message_id": "aa0d2d5e-ffdd-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T03:40:27", "message_id": "445a795e-ffdc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T03:30:27", "message_id": "deabdbf8-ffda-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T03:20:27", "message_id": "78fb799a-ffd9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T03:10:27", "message_id": "1350a1ca-ffd8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T03:00:27", "message_id": "ada2a5d6-ffd6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T02:50:27", "message_id": "47edd176-ffd5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T02:40:27", "message_id": "e23c3dfa-ffd3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T02:30:27", "message_id": "7c96a716-ffd2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T02:20:27", "message_id": "17014c86-ffd1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T02:10:27", "message_id": "b12b1532-ffcf-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T02:00:26", "message_id": "4b86434c-ffce-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T01:50:26", "message_id": "e5d0ba24-ffcc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T01:40:26", "message_id": "80224298-ffcb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T01:30:26", "message_id": "1a738cfa-ffca-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T01:20:26", "message_id": "b4cb66b2-ffc8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T01:10:26", "message_id": "4f216a9c-ffc7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T01:00:26", "message_id": "e96e9f54-ffc5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T00:50:26", "message_id": "83c495c4-ffc4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T00:40:26", "message_id": "1e184d2a-ffc3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T00:30:26", "message_id": "b8668268-ffc1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T00:20:26", "message_id": "5311a394-ffc0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T00:10:26", "message_id": "ed067eb8-ffbe-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T00:00:26", "message_id": "87826ed6-ffbd-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T23:50:25", "message_id": "21b2e1a4-ffbc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T23:40:25", "message_id": "bc088aee-ffba-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T23:30:25", "message_id": "5661c800-ffb9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T23:20:25", "message_id": "f0cdbca2-ffb7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T23:10:25", "message_id": "8b1e8518-ffb6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T23:00:25", "message_id": "25966b44-ffb5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T22:50:25", "message_id": "bf917aba-ffb3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T22:40:25", "message_id": "59ef5372-ffb2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T22:30:25", "message_id": "f43f1f7c-ffb0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T22:20:24", "message_id": "8e7f7764-ffaf-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T22:10:24", "message_id": "28e4725c-ffae-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T22:00:24", "message_id": "c32aae96-ffac-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T21:50:24", "message_id": "5d6d037a-ffab-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T21:40:24", "message_id": "f7c75f62-ffa9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T21:30:24", "message_id": "921fc75e-ffa8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T21:20:24", "message_id": "2c67c98a-ffa7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T21:10:24", "message_id": "c6ab9e88-ffa5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T21:00:24", "message_id": "610627d4-ffa4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T20:50:24", "message_id": "fb56f446-ffa2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T20:40:23", "message_id": "95a2bf8c-ffa1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T20:30:23", "message_id": "2ff82876-ffa0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T20:20:23", "message_id": "ca4abba2-ff9e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T20:10:23", "message_id": "648fd6b8-ff9d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T20:00:23", "message_id": "fee90dc6-ff9b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T19:50:23", "message_id": "993296d8-ff9a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T19:40:23", "message_id": "338c5a4a-ff99-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T19:30:23", "message_id": "cddd7c5c-ff97-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T19:20:23", "message_id": "68335242-ff96-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T19:10:23", "message_id": "02822168-ff95-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T19:00:23", "message_id": "9ccbda68-ff93-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T18:50:22", "message_id": "3724eab6-ff92-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T18:40:22", "message_id": "d17777d4-ff90-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T18:30:22", "message_id": "6bb73de0-ff8f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T18:20:22", "message_id": "06070b8e-ff8e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T18:10:22", "message_id": "a05c628a-ff8c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T18:00:22", "message_id": "3ab0d264-ff8b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T17:50:22", "message_id": "d5007ca4-ff89-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T17:40:22", "message_id": "6f58a6e8-ff88-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T17:30:22", "message_id": "09a7e990-ff87-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T17:20:22", "message_id": "a3f43abe-ff85-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T17:10:22", "message_id": "3e4c5fa8-ff84-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T17:00:21", "message_id": "d891348c-ff82-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T16:50:21", "message_id": "72d9bc32-ff81-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T16:40:21", "message_id": "0d301e2c-ff80-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T16:30:21", "message_id": "a78cf960-ff7e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T16:20:21", "message_id": "41d076e8-ff7d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T16:10:21", "message_id": "dc2a94fa-ff7b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T16:00:21", "message_id": "767c0c20-ff7a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T15:50:21", "message_id": "10cff482-ff79-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T15:40:21", "message_id": "ab1be1f6-ff77-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T15:30:21", "message_id": "4567d80c-ff76-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T15:20:20", "message_id": "dfbba6a6-ff74-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T15:10:20", "message_id": "7a096556-ff73-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T15:00:20", "message_id": "1459312e-ff72-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T14:50:20", "message_id": "aeabfe02-ff70-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T14:40:20", "message_id": "48fab266-ff6f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T14:30:20", "message_id": "e36100fa-ff6d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T14:20:20", "message_id": "7db09050-ff6c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T14:10:20", "message_id": "17fffeea-ff6b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T14:00:20", "message_id": "b2505212-ff69-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T13:50:20", "message_id": "4c9ddc24-ff68-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T13:40:20", "message_id": "e70577ce-ff66-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T13:30:20", "message_id": "814b20d8-ff65-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T13:20:19", "message_id": "1b9cf938-ff64-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T13:10:19", "message_id": "b5f3feac-ff62-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T13:00:19", "message_id": "504ee806-ff61-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T12:50:19", "message_id": "eaa4e0a6-ff5f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T12:40:19", "message_id": "84ef37e4-ff5e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T12:30:19", "message_id": "1f458020-ff5d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T12:20:19", "message_id": "b99b1a88-ff5b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T12:10:19", "message_id": "53e08788-ff5a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T12:00:19", "message_id": "ee2e655a-ff58-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T11:50:19", "message_id": "88870424-ff57-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T11:40:19", "message_id": "22dc59cc-ff56-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T11:30:19", "message_id": "bd2c1f0a-ff54-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T11:20:18", "message_id": "577bc8dc-ff53-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T11:10:19", "message_id": "f1e95d64-ff51-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T11:00:18", "message_id": "8c31179c-ff50-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T10:50:18", "message_id": "268423ea-ff4f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T10:40:18", "message_id": "c0df944e-ff4d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T10:30:18", "message_id": "5b28e124-ff4c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T10:20:18", "message_id": "f57b3e54-ff4a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T10:10:18", "message_id": "8fd96482-ff49-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T10:00:18", "message_id": "2a34afe8-ff48-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T09:50:18", "message_id": "c4742f72-ff46-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T09:40:18", "message_id": "5ecddad4-ff45-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T09:30:18", "message_id": "f90d03c4-ff43-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T09:20:18", "message_id": "936680a0-ff42-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T09:10:17", "message_id": "2db7738c-ff41-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T09:00:17", "message_id": "c7fb2b8e-ff3f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T08:50:17", "message_id": "624e3a20-ff3e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T08:40:17", "message_id": "fca5e426-ff3c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T08:30:17", "message_id": "96f3ed2c-ff3b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T08:20:17", "message_id": "31372374-ff3a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T08:10:17", "message_id": "cb87cc46-ff38-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T08:00:17", "message_id": "65d6fd78-ff37-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T07:50:17", "message_id": "002847ee-ff36-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T07:40:16", "message_id": "9a753638-ff34-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T07:30:16", "message_id": "34d0f34a-ff33-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T07:20:16", "message_id": "cf185de6-ff31-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T07:10:16", "message_id": "69678202-ff30-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T07:00:16", "message_id": "03c2112a-ff2f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T06:50:16", "message_id": "9e1467e8-ff2d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T06:40:16", "message_id": "38647cfe-ff2c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T06:30:16", "message_id": "d2ab32e6-ff2a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T06:20:16", "message_id": "6d0d6932-ff29-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T06:10:16", "message_id": "076acb48-ff28-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T06:00:16", "message_id": "a1aa8e34-ff26-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T05:50:16", "message_id": "3c06d35e-ff25-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T05:40:15", "message_id": "d648ce92-ff23-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T05:30:16", "message_id": "70c2594a-ff22-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T05:20:15", "message_id": "0af60270-ff21-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T05:10:15", "message_id": "a53ace6c-ff1f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T05:00:15", "message_id": "3fa1f8ba-ff1e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T04:50:15", "message_id": "d9e55766-ff1c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T04:40:15", "message_id": "743e6e08-ff1b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T04:30:15", "message_id": "0e9d1294-ff1a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T04:20:15", "message_id": "a8ddb928-ff18-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T04:10:15", "message_id": "433a0028-ff17-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T04:00:15", "message_id": "dd8833b8-ff15-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T03:50:15", "message_id": "77f06ea4-ff14-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T03:40:14", "message_id": "12315494-ff13-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T03:30:14", "message_id": "ac7893c0-ff11-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T03:20:14", "message_id": "46cf3b6a-ff10-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T03:10:14", "message_id": "e1343752-ff0e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T03:00:14", "message_id": "7b71ca66-ff0d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T02:50:14", "message_id": "15df3946-ff0c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T02:40:14", "message_id": "b0295e7a-ff0a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T02:30:14", "message_id": "4a7cbafa-ff09-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T02:20:14", "message_id": "e4c3d82a-ff07-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T02:10:14", "message_id": "7f1429f4-ff06-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T02:00:14", "message_id": "1961af60-ff05-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T01:50:14", "message_id": "b3c1ec02-ff03-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T01:40:13", "message_id": "4e068ae0-ff02-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T01:30:13", "message_id": "e85f560a-ff00-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T01:20:13", "message_id": "82b13e46-feff-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T01:10:13", "message_id": "1d096448-fefe-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T01:00:13", "message_id": "b74ccc36-fefc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T00:50:13", "message_id": "51a951fc-fefb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T00:40:13", "message_id": "ebfe9818-fef9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T00:30:13", "message_id": "8640574c-fef8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T00:20:13", "message_id": "20923f6a-fef7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T00:10:13", "message_id": "bae51224-fef5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T00:00:12", "message_id": "552d4b8c-fef4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T23:50:12", "message_id": "ef905900-fef2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T23:40:12", "message_id": "89e07bd6-fef1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T23:30:12", "message_id": "243689ca-fef0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T23:20:12", "message_id": "be983ff6-feee-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T23:10:12", "message_id": "58cff98a-feed-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T23:00:12", "message_id": "f36dc08c-feeb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T22:50:12", "message_id": "8d79b99e-feea-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T22:40:12", "message_id": "27ce7fb8-fee9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T22:30:12", "message_id": "c220eed6-fee7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T22:20:12", "message_id": "5c69fe26-fee6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T22:10:12", "message_id": "f6d26a18-fee4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T22:00:12", "message_id": "913aaa2c-fee3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T21:50:11", "message_id": "2b6a32c2-fee2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T21:40:12", "message_id": "c5e27b9a-fee0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T21:30:11", "message_id": "6018d454-fedf-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T21:20:11", "message_id": "fa6bebf6-fedd-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T21:10:11", "message_id": "94b4ad9e-fedc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T21:00:11", "message_id": "2efacfac-fedb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T20:50:11", "message_id": "c957b044-fed9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T20:40:11", "message_id": "63b683d8-fed8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T20:30:11", "message_id": "fe02379a-fed6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T20:20:11", "message_id": "98801230-fed5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T20:10:11", "message_id": "329f04e0-fed4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T20:00:11", "message_id": "cd08065a-fed2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T19:50:10", "message_id": "67503fd6-fed1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T19:40:10", "message_id": "01a791c6-fed0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T19:30:10", "message_id": "9bf8489e-fece-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T19:20:10", "message_id": "364539fe-fecd-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T19:10:10", "message_id": "d09532fe-fecb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T19:00:10", "message_id": "6ad58546-feca-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T18:50:10", "message_id": "05520128-fec9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T18:40:10", "message_id": "9f89eaa0-fec7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T18:30:10", "message_id": "39d2f0b8-fec6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T18:20:10", "message_id": "d4290f00-fec4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T18:10:09", "message_id": "6e75994a-fec3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T18:00:09", "message_id": "08ba1e42-fec2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T17:50:09", "message_id": "a3124bb0-fec0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T17:40:09", "message_id": "3d6a6640-febf-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T17:30:09", "message_id": "d7b5b88c-febd-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T17:20:09", "message_id": "720d3a88-febc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T17:10:09", "message_id": "0c533504-febb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T17:00:09", "message_id": "a6a60ab6-feb9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T16:50:09", "message_id": "40f98f04-feb8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T16:40:09", "message_id": "db423a9a-feb6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T16:30:09", "message_id": "759971f0-feb5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T16:20:08", "message_id": "0fe69320-feb4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T16:10:08", "message_id": "aa434da2-feb2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T16:00:08", "message_id": "44959c54-feb1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T15:50:08", "message_id": "dedefd16-feaf-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T15:40:08", "message_id": "793ca31a-feae-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T15:30:08", "message_id": "13824cba-fead-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T15:20:08", "message_id": "add76676-feab-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T15:10:08", "message_id": "48254916-feaa-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T15:00:08", "message_id": "e27658d6-fea8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T14:50:08", "message_id": "7ccc5482-fea7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T14:40:08", "message_id": "172a87b2-fea6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T14:30:08", "message_id": "b1842676-fea4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T14:20:07", "message_id": "4bd2e1d8-fea3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T14:10:07", "message_id": "e61f87de-fea1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T14:00:07", "message_id": "808d819c-fea0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T13:50:07", "message_id": "1ad0d59e-fe9f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T13:40:07", "message_id": "b513e6ca-fe9d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T13:30:07", "message_id": "4f664dbe-fe9c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T13:20:07", "message_id": "e9b6af64-fe9a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T13:10:07", "message_id": "84054c08-fe99-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T13:00:07", "message_id": "1e60e30e-fe98-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T12:50:07", "message_id": "b8b56ee0-fe96-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T12:40:07", "message_id": "531aaa10-fe95-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T12:30:07", "message_id": "ed595ca4-fe93-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T12:20:06", "message_id": "87a49442-fe92-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T12:10:06", "message_id": "220247ca-fe91-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T12:00:06", "message_id": "bc537666-fe8f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T11:50:06", "message_id": "56a1f9ce-fe8e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T11:40:06", "message_id": "f100c38a-fe8c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T11:30:07", "message_id": "8bdeadb0-fe8b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T11:20:06", "message_id": "259858b8-fe8a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T11:10:06", "message_id": "bfe44ea6-fe88-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T11:00:06", "message_id": "5a3d8668-fe87-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T10:50:06", "message_id": "f4914c1a-fe85-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T10:40:06", "message_id": "8ee302d8-fe84-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T10:30:05", "message_id": "293092ee-fe83-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T10:20:05", "message_id": "c3869f8e-fe81-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T10:10:05", "message_id": "5dcd2100-fe80-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T10:00:05", "message_id": "f8242e30-fe7e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T09:50:05", "message_id": "9270b8b6-fe7d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T09:40:05", "message_id": "2cc83166-fe7c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T09:30:05", "message_id": "c71ce7d6-fe7a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T09:20:05", "message_id": "6165dce6-fe79-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T09:10:05", "message_id": "fbbe8af6-fe77-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T09:00:05", "message_id": "960ccf3e-fe76-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T08:50:05", "message_id": "305e6aae-fe75-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T08:40:04", "message_id": "cab10f0a-fe73-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T08:30:04", "message_id": "64ff742c-fe72-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T08:20:04", "message_id": "ff52e25e-fe70-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T08:10:04", "message_id": "99a802fa-fe6f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T08:00:04", "message_id": "33fa2cfe-fe6e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T07:50:04", "message_id": "ce4ac5f4-fe6c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T07:40:04", "message_id": "68ac248c-fe6b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T07:30:04", "message_id": "02fbe89e-fe6a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T07:20:04", "message_id": "9d501f2a-fe68-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T07:10:04", "message_id": "379f5e44-fe67-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T07:00:04", "message_id": "d1efea60-fe65-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T06:50:04", "message_id": "6c3f3e74-fe64-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T06:40:04", "message_id": "069cc0ce-fe63-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T06:30:03", "message_id": "a0eed1a0-fe61-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T06:20:03", "message_id": "3b398d88-fe60-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T06:10:03", "message_id": "d5853588-fe5e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T06:00:03", "message_id": "6fd64a84-fe5d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T05:50:03", "message_id": "0a28ca6e-fe5c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T05:40:03", "message_id": "a47feed2-fe5a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T05:30:03", "message_id": "3ec7a9be-fe59-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T05:20:03", "message_id": "d91bb034-fe57-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T05:10:03", "message_id": "7372ea8c-fe56-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T05:00:03", "message_id": "0dbf5654-fe55-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T04:50:02", "message_id": "a810a660-fe53-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T04:40:02", "message_id": "426a34ee-fe52-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T04:30:02", "message_id": "dcbeb58a-fe50-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T04:20:02", "message_id": "7706fb04-fe4f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T04:10:02", "message_id": "114e020e-fe4e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T04:00:02", "message_id": "abaa10e2-fe4c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T03:50:02", "message_id": "45f93d46-fe4b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T03:40:02", "message_id": "e04e02ac-fe49-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T03:30:02", "message_id": "7a986246-fe48-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T03:20:02", "message_id": "14e58376-fe47-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T03:10:02", "message_id": "af41f3b6-fe45-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T03:00:01", "message_id": "498d613c-fe44-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T02:50:01", "message_id": "e3dc68e8-fe42-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T02:40:01", "message_id": "7e2b3f02-fe41-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T02:30:01", "message_id": "1889d9b6-fe40-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T02:20:01", "message_id": "b2de9724-fe3e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T02:10:01", "message_id": "4d278d88-fe3d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T02:00:01", "message_id": "e77eb570-fe3b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T01:50:01", "message_id": "81d210f6-fe3a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T01:40:01", "message_id": "1c2fd1d0-fe39-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T01:30:01", "message_id": "b67fc602-fe37-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T01:20:01", "message_id": "50dae062-fe36-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T01:10:01", "message_id": "eb21d60a-fe34-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T01:00:01", "message_id": "857abd18-fe33-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T00:50:00", "message_id": "1fc26620-fe32-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T00:40:00", "message_id": "ba1a7a7a-fe30-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T00:30:00", "message_id": "54661bc2-fe2f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T00:20:00", "message_id": "eeb594e8-fe2d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T00:10:00", "message_id": "89099334-fe2c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T00:00:00", "message_id": "235bd66a-fe2b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T23:50:00", "message_id": "bdaea78a-fe29-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T23:40:00", "message_id": "5803761e-fe28-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T23:30:00", "message_id": "f2525b60-fe26-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T23:20:00", "message_id": "8caf71cc-fe25-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T23:10:00", "message_id": "273b6f9a-fe24-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T23:00:00", "message_id": "c18ed390-fe22-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T22:49:59", "message_id": "5b97d79a-fe21-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T22:39:59", "message_id": "f5e36d66-fe1f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T22:29:59", "message_id": "903d4118-fe1e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T22:19:59", "message_id": "2a91f6f2-fe1d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T22:09:59", "message_id": "c4dfa288-fe1b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T21:59:59", "message_id": "5f2f810c-fe1a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T21:49:59", "message_id": "f97fe5be-fe18-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T21:39:59", "message_id": "93ccfd98-fe17-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T21:29:59", "message_id": "2e163132-fe16-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T21:19:58", "message_id": "c86e052c-fe14-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T21:09:58", "message_id": "62bf4804-fe13-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T20:59:58", "message_id": "fd13738c-fe11-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T20:49:58", "message_id": "9759740c-fe10-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T20:39:58", "message_id": "31aad692-fe0f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T20:29:58", "message_id": "cbfa17c8-fe0d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T20:19:58", "message_id": "66550e42-fe0c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T20:09:58", "message_id": "009f6c1a-fe0b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T19:59:58", "message_id": "9af4d20c-fe09-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T19:49:58", "message_id": "35473716-fe08-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T19:39:58", "message_id": "cfa4175e-fe06-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T19:29:58", "message_id": "69f12038-fe05-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T19:19:57", "message_id": "0442049c-fe04-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T19:09:57", "message_id": "9e98dd06-fe02-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T18:59:57", "message_id": "38e71316-fe01-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T18:49:57", "message_id": "d335f498-fdff-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T18:39:57", "message_id": "6d8ee466-fdfe-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T18:29:57", "message_id": "07e1d642-fdfd-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T18:19:57", "message_id": "a2370818-fdfb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T18:09:57", "message_id": "3c9719cc-fdfa-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T17:59:57", "message_id": "d6dc1d72-fdf8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T17:49:57", "message_id": "713217ca-fdf7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T17:39:57", "message_id": "0b8358d6-fdf6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T17:29:57", "message_id": "a5d8fec4-fdf4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T17:19:56", "message_id": "402897fc-fdf3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T17:09:56", "message_id": "da7c9dc8-fdf1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T16:59:56", "message_id": "74ce0652-fdf0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T16:49:56", "message_id": "0f1e7ff4-fdef-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T16:39:56", "message_id": "a979fb52-fded-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T16:29:56", "message_id": "43f4be44-fdec-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T16:19:56", "message_id": "de25c186-fdea-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T16:09:56", "message_id": "788259ee-fde9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T15:59:56", "message_id": "12d22ecc-fde8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T15:49:56", "message_id": "ad2a0096-fde6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T15:39:56", "message_id": "477e09a0-fde5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T15:29:56", "message_id": "e1cf65a0-fde3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T15:19:56", "message_id": "7c50d160-fde2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T15:09:56", "message_id": "166a6074-fde1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T14:59:55", "message_id": "b0b9e598-fddf-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T14:49:55", "message_id": "4b17f2f8-fdde-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T14:39:55", "message_id": "e561fed2-fddc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T14:29:55", "message_id": "7fb68504-fddb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T14:19:55", "message_id": "1a076080-fdda-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T14:09:55", "message_id": "b45dade4-fdd8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T13:59:55", "message_id": "4ea994c8-fdd7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T13:49:55", "message_id": "e8fe79b4-fdd5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T13:39:55", "message_id": "834ad7f8-fdd4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T13:29:55", "message_id": "1d98e87e-fdd3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T13:19:55", "message_id": "b7ea5f9a-fdd1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T13:09:54", "message_id": "523fbb50-fdd0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T12:59:54", "message_id": "ec92d00e-fdce-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T12:49:54", "message_id": "86e3ac98-fdcd-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T12:39:54", "message_id": "21322f6a-fdcc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T12:29:54", "message_id": "bb828724-fdca-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T12:19:54", "message_id": "55d677e2-fdc9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T12:09:54", "message_id": "f0210724-fdc7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T11:59:54", "message_id": "8a7726de-fdc6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T11:49:54", "message_id": "24cc685e-fdc5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T11:39:54", "message_id": "bf2136b6-fdc3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T11:29:54", "message_id": "59710ec8-fdc2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T11:19:53", "message_id": "f3c6cc30-fdc0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T11:09:53", "message_id": "8e17d11e-fdbf-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T10:59:53", "message_id": "286b5544-fdbe-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T10:49:54", "message_id": "c2e6f79c-fdbc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T10:39:53", "message_id": "5d0d6196-fdbb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T10:29:53", "message_id": "f769c09c-fdb9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T10:19:53", "message_id": "91b78df2-fdb8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T10:09:53", "message_id": "2c1851f8-fdb7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T09:59:53", "message_id": "c66af384-fdb5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T09:49:53", "message_id": "60bef716-fdb4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T09:39:53", "message_id": "fb101fea-fdb2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T09:29:53", "message_id": "9564cf3e-fdb1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T09:19:53", "message_id": "2fb378d0-fdb0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T09:09:52", "message_id": "ca008b82-fdae-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T08:59:52", "message_id": "64581742-fdad-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T08:49:52", "message_id": "feb833e6-fdab-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T08:39:52", "message_id": "98fd2850-fdaa-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T08:29:52", "message_id": "334e38f6-fda9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T08:19:52", "message_id": "cd9d11ae-fda7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T08:09:52", "message_id": "6808d3ce-fda6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T07:59:52", "message_id": "02444fa6-fda5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T07:49:52", "message_id": "9c928b1a-fda3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T07:39:52", "message_id": "36eb34ac-fda2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T07:29:52", "message_id": "d1392368-fda0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T07:19:52", "message_id": "6b8d2e70-fd9f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T07:09:52", "message_id": "06055448-fd9e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T06:59:51", "message_id": "a02a039a-fd9c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T06:49:51", "message_id": "3a807214-fd9b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T06:39:51", "message_id": "d4c7d40e-fd99-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T06:29:51", "message_id": "6f1c5a54-fd98-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T06:19:51", "message_id": "0967e9a4-fd97-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T06:09:51", "message_id": "a3bd4c62-fd95-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T05:59:51", "message_id": "3e109ece-fd94-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T05:49:51", "message_id": "d862bba8-fd92-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T05:39:51", "message_id": "72b3a2a0-fd91-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T05:29:51", "message_id": "0d109bf2-fd90-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T05:19:50", "message_id": "a75fadd0-fd8e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T05:09:50", "message_id": "41a9ee0c-fd8d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T04:59:50", "message_id": "dc09dcf2-fd8b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T04:49:50", "message_id": "76677054-fd8a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T04:39:50", "message_id": "10c75c1a-fd89-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T04:29:50", "message_id": "ab19e30c-fd87-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T04:19:50", "message_id": "455230fc-fd86-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T04:09:50", "message_id": "dfbe9920-fd84-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T03:59:50", "message_id": "79d55424-fd83-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T03:49:50", "message_id": "144613d8-fd82-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T03:39:50", "message_id": "ae9f07ac-fd80-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T03:29:50", "message_id": "48fb486c-fd7f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T03:19:50", "message_id": "e3598402-fd7d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T03:09:50", "message_id": "7da54eb2-fd7c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T02:59:49", "message_id": "17dc0e1e-fd7b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T02:49:49", "message_id": "b21ddcde-fd79-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T02:39:49", "message_id": "4cafcade-fd78-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T02:29:49", "message_id": "e6f133be-fd76-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T02:19:49", "message_id": "814b9a28-fd75-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T02:09:49", "message_id": "1b966b64-fd74-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T01:59:49", "message_id": "b5d578e8-fd72-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T01:49:49", "message_id": "502c24de-fd71-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T01:39:49", "message_id": "ea879c54-fd6f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T01:29:49", "message_id": "8505896e-fd6e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T01:19:49", "message_id": "1f66187c-fd6d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T01:09:49", "message_id": "b9a3cc24-fd6b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T00:59:48", "message_id": "53db505c-fd6a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T00:49:48", "message_id": "ee1c43a8-fd68-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T00:39:48", "message_id": "88835df2-fd67-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T00:29:48", "message_id": "22dc36f0-fd66-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T00:19:48", "message_id": "bd37b546-fd64-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T00:09:48", "message_id": "57a87234-fd63-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-04T23:59:48", "message_id": "f1ff3752-fd61-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-04T23:49:48", "message_id": "8c39c550-fd60-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-04T23:39:06", "message_id": "0d681b42-fd5f-11e2-b8cf-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-04T23:29:06", "message_id": "a7d6c356-fd5d-11e2-b8cf-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}], "http://localhost:8777/v2/meters/storage.objects.containers?q.field=resource_id&q.value=e88ef09124594ede8ecea0b1628a05bf": [{"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-12T04:01:18", "message_id": "d76c8a50-0303-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-12T03:51:18", "message_id": "71bb0340-0302-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-12T03:41:18", "message_id": "0c094530-0301-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-12T03:31:18", "message_id": "a66c597a-02ff-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-12T03:21:18", "message_id": "40b7e8c0-02fe-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-12T03:11:18", "message_id": "db0dff2e-02fc-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-12T03:01:17", "message_id": "755380ec-02fb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-12T02:51:17", "message_id": "0fafe13c-02fa-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-12T02:41:17", "message_id": "a9ec7aaa-02f8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-12T02:31:17", "message_id": "444838e8-02f7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-12T02:21:17", "message_id": "de93b334-02f5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-12T02:11:17", "message_id": "78e66f0a-02f4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-12T02:01:17", "message_id": "133f695a-02f3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-12T01:51:17", "message_id": "ad950ebc-02f1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-12T01:41:17", "message_id": "47e16558-02f0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-12T01:31:17", "message_id": "e233fae6-02ee-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-12T01:21:17", "message_id": "7c7f352c-02ed-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-12T01:11:16", "message_id": "16d62e2a-02ec-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-12T01:01:16", "message_id": "b1135c76-02ea-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-12T00:51:16", "message_id": "4b7b2480-02e9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-12T00:41:16", "message_id": "e5bf5f04-02e7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-12T00:31:16", "message_id": "800f4b98-02e6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-12T00:21:16", "message_id": "1a8de208-02e5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-12T00:11:16", "message_id": "b4af378a-02e3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-12T00:01:16", "message_id": "4f0551a4-02e2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T23:51:16", "message_id": "e9564314-02e0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T23:41:16", "message_id": "83afdb7a-02df-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T23:31:16", "message_id": "1e05bc6e-02de-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T23:21:15", "message_id": "b84c508c-02dc-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T23:11:15", "message_id": "52ad33dc-02db-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T23:01:16", "message_id": "ed360ed0-02d9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T22:51:15", "message_id": "874e15f0-02d8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T22:41:15", "message_id": "2199cbce-02d7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T22:31:15", "message_id": "bbece85c-02d5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T22:21:15", "message_id": "56381b18-02d4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T22:11:15", "message_id": "f087fb22-02d2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T22:01:15", "message_id": "8ade92c8-02d1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T21:51:15", "message_id": "25376626-02d0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T21:41:15", "message_id": "bf887ee2-02ce-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T21:31:14", "message_id": "59d4930c-02cd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T21:21:14", "message_id": "f42addfa-02cb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T21:11:14", "message_id": "8e7beb30-02ca-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T21:01:14", "message_id": "28caf304-02c9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T20:51:14", "message_id": "c320cc3c-02c7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T20:41:14", "message_id": "5d6b7e06-02c6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T20:31:14", "message_id": "f7c4c8d8-02c4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T20:21:14", "message_id": "9215d884-02c3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T20:11:14", "message_id": "2c72e3e2-02c2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T20:01:14", "message_id": "c6bcfb06-02c0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T19:51:14", "message_id": "61122a3e-02bf-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T19:41:14", "message_id": "fb6023ea-02bd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T19:31:14", "message_id": "95b54418-02bc-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T19:21:13", "message_id": "300476a8-02bb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T19:11:13", "message_id": "ca512e92-02b9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T19:01:13", "message_id": "649c4cfe-02b8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T18:51:13", "message_id": "feea3534-02b6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T18:41:13", "message_id": "9942e0e2-02b5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T18:31:13", "message_id": "338ef82c-02b4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T18:21:13", "message_id": "cddfffcc-02b2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T18:11:13", "message_id": "6830d576-02b1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T18:01:13", "message_id": "0280da7e-02b0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T17:51:13", "message_id": "9cd5e3c8-02ae-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T17:41:12", "message_id": "3723bec0-02ad-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T17:31:12", "message_id": "d17b52aa-02ab-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T17:21:12", "message_id": "6bc92dfc-02aa-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T17:11:12", "message_id": "0617357c-02a9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T17:01:12", "message_id": "a0773402-02a7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T16:51:12", "message_id": "3ac74f58-02a6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T16:41:12", "message_id": "d52685e8-02a4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T16:31:12", "message_id": "6f6f9236-02a3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T16:21:12", "message_id": "09b78ca6-02a2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T16:11:12", "message_id": "a40dd73a-02a0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T16:01:12", "message_id": "3e6939b6-029f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T15:51:12", "message_id": "d8b8220e-029d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T15:41:12", "message_id": "73169698-029c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T15:31:11", "message_id": "0d710d06-029b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T15:21:11", "message_id": "a7d031bc-0299-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T15:11:11", "message_id": "421e372a-0298-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T15:01:11", "message_id": "dc6c5b38-0296-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T14:51:11", "message_id": "76b73dfe-0295-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T14:41:11", "message_id": "1109010a-0294-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T14:31:11", "message_id": "ab58a064-0292-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T14:21:11", "message_id": "45ab4c5e-0291-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T14:11:11", "message_id": "dff94240-028f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T14:01:11", "message_id": "7a54084a-028e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T13:51:11", "message_id": "14a887e2-028d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T13:41:11", "message_id": "aefb1906-028b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T13:31:10", "message_id": "494ccede-028a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T13:21:10", "message_id": "e397ce96-0288-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T13:11:10", "message_id": "7df0d46c-0287-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T13:01:10", "message_id": "18492bf6-0286-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T12:51:10", "message_id": "b2934f0e-0284-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T12:41:10", "message_id": "4ce929f4-0283-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T12:31:10", "message_id": "e7361672-0281-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T12:21:10", "message_id": "818128e0-0280-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T12:11:10", "message_id": "1bd4b274-027f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T12:01:10", "message_id": "b62211ac-027d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T11:51:10", "message_id": "507abb5c-027c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T11:41:09", "message_id": "eac0816c-027a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T11:31:09", "message_id": "85154d30-0279-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T11:21:09", "message_id": "1f65b8fe-0278-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T11:11:09", "message_id": "b9b7e136-0276-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T11:01:09", "message_id": "540834c2-0275-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T10:51:09", "message_id": "ee56920a-0273-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T10:41:09", "message_id": "88ace11c-0272-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T10:31:09", "message_id": "2303c020-0271-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T10:21:09", "message_id": "bd4a9aa2-026f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T10:11:09", "message_id": "57ad74cc-026e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T10:01:09", "message_id": "f1f95e3a-026c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T09:51:08", "message_id": "8c4a20ac-026b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T09:41:08", "message_id": "26981e5e-026a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T09:31:08", "message_id": "c0ef9308-0268-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T09:21:08", "message_id": "5b3fd51e-0267-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T09:11:08", "message_id": "f597ce16-0265-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T09:01:08", "message_id": "8fe82058-0264-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T08:51:08", "message_id": "2a44e0fc-0263-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T08:41:08", "message_id": "c4980bea-0261-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T08:31:08", "message_id": "5eee116e-0260-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T08:21:08", "message_id": "f93285f4-025e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T08:11:08", "message_id": "93861e2e-025d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T08:01:08", "message_id": "2ddd4a6c-025c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T07:51:07", "message_id": "c8268c7a-025a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T07:41:07", "message_id": "62831524-0259-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T07:31:07", "message_id": "fccf6616-0257-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T07:21:07", "message_id": "97252d38-0256-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T07:11:07", "message_id": "31663696-0255-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T07:01:07", "message_id": "cbcaa1b0-0253-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T06:51:07", "message_id": "661794e6-0252-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T06:41:07", "message_id": "0065e89c-0251-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T06:31:07", "message_id": "9ab63aca-024f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T06:21:07", "message_id": "3516436e-024e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T06:11:07", "message_id": "cf5f8ed2-024c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T06:01:07", "message_id": "69c8ba5e-024b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T05:51:07", "message_id": "040dc66a-024a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T05:41:06", "message_id": "9e5c7e3e-0248-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T05:31:06", "message_id": "38a5ec0c-0247-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T05:21:06", "message_id": "d2f817d2-0245-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T05:11:06", "message_id": "6d40863c-0244-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T05:01:06", "message_id": "079898ca-0243-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T04:51:06", "message_id": "a1f03f6a-0241-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T04:41:06", "message_id": "3c3d8836-0240-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T04:31:06", "message_id": "d691d86c-023e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T04:21:06", "message_id": "70fb8044-023d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T04:11:06", "message_id": "0b3202ac-023c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T04:01:05", "message_id": "a5895ac8-023a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T03:51:05", "message_id": "3fdc4f6a-0239-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T03:41:05", "message_id": "da4592ac-0237-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T03:31:05", "message_id": "74788f66-0236-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T03:21:05", "message_id": "0ecb15a4-0235-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T03:11:05", "message_id": "a919c3a0-0233-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T03:01:05", "message_id": "4368b04e-0232-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T02:51:05", "message_id": "ddb731c2-0230-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T02:41:05", "message_id": "77f7cdf2-022f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T02:31:05", "message_id": "1256b4fa-022e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T02:21:04", "message_id": "aca64cfc-022c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T02:11:04", "message_id": "46f6ff06-022b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T02:01:04", "message_id": "e153ba32-0229-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T01:51:04", "message_id": "7b9b8f5e-0228-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T01:41:04", "message_id": "16003fd8-0227-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T01:31:04", "message_id": "b04e6242-0225-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T01:21:04", "message_id": "4a86b5c8-0224-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T01:11:04", "message_id": "e4d8a3cc-0222-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T01:01:04", "message_id": "7f34d136-0221-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T00:51:04", "message_id": "197d9bee-0220-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T00:41:04", "message_id": "b3cf208e-021e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T00:31:03", "message_id": "4e1e7e3e-021d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T00:21:03", "message_id": "e86f4664-021b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T00:11:03", "message_id": "82bdcd96-021a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-11T00:01:03", "message_id": "1d14b442-0219-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T23:51:03", "message_id": "b7669152-0217-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T23:41:03", "message_id": "51b5908e-0216-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T23:31:03", "message_id": "ec0cafa2-0214-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T23:21:03", "message_id": "866490c6-0213-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T23:11:03", "message_id": "20aa62fc-0212-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T23:01:03", "message_id": "bb56e778-0210-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T22:51:03", "message_id": "5562e7ec-020f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T22:41:08", "message_id": "f2c29598-020d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T22:31:03", "message_id": "8a100e82-020c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T22:21:02", "message_id": "2457eb06-020b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T22:11:02", "message_id": "bebdc3b6-0209-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T22:01:02", "message_id": "58fdeb88-0208-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T21:51:02", "message_id": "f367288a-0206-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T21:41:02", "message_id": "8daeb77a-0205-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T21:31:02", "message_id": "27f9544a-0204-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T21:21:02", "message_id": "c26ce4a8-0202-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T21:11:02", "message_id": "5ca61be0-0201-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T21:01:02", "message_id": "f6e4a2aa-01ff-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T20:51:02", "message_id": "91981f90-01fe-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T20:41:02", "message_id": "2b9af9b6-01fd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T20:31:02", "message_id": "c61cd65a-01fb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T20:21:01", "message_id": "60384a28-01fa-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T20:11:01", "message_id": "fa8016f8-01f8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T20:01:01", "message_id": "94d337c8-01f7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T19:51:01", "message_id": "2f27db00-01f6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T19:41:01", "message_id": "c97abd96-01f4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T19:31:01", "message_id": "63d2cc8c-01f3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T19:21:01", "message_id": "fe0a4282-01f1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T19:11:01", "message_id": "986c547a-01f0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T19:01:01", "message_id": "32bd095e-01ef-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T18:51:00", "message_id": "ccfc35aa-01ed-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T18:41:00", "message_id": "6762b512-01ec-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T18:31:00", "message_id": "01ae96ec-01eb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T18:21:00", "message_id": "9bfcd5da-01e9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T18:11:00", "message_id": "3647d1f0-01e8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T18:01:00", "message_id": "d0982d10-01e6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T17:51:00", "message_id": "6af2e9ce-01e5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T17:41:00", "message_id": "054776e0-01e4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T17:31:00", "message_id": "9f92bc20-01e2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T17:21:00", "message_id": "39e5de94-01e1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T17:11:00", "message_id": "d4307948-01df-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T17:00:59", "message_id": "6e82612a-01de-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T16:50:59", "message_id": "08d76538-01dd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T16:40:59", "message_id": "a3249dc4-01db-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T16:30:59", "message_id": "3d7a3890-01da-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T16:20:59", "message_id": "d7c34dd0-01d8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T16:10:59", "message_id": "721eb114-01d7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T16:00:59", "message_id": "0c75bdae-01d6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T15:50:59", "message_id": "a6c57cb6-01d4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T15:40:59", "message_id": "41267e60-01d3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T15:30:59", "message_id": "db73ef68-01d1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T15:20:59", "message_id": "75ccccf8-01d0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T15:10:59", "message_id": "101b84e0-01cf-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T15:00:58", "message_id": "aa65e92a-01cd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T14:50:58", "message_id": "44be573e-01cc-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T14:40:58", "message_id": "df0575ea-01ca-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T14:30:58", "message_id": "794d56e2-01c9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T14:20:58", "message_id": "139ee500-01c8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T14:10:58", "message_id": "adf8c050-01c6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T14:00:58", "message_id": "484a6354-01c5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T13:50:58", "message_id": "e29e72f8-01c3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T13:40:58", "message_id": "7ce7e6d4-01c2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T13:30:58", "message_id": "17464e0c-01c1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T13:20:58", "message_id": "b18cbda4-01bf-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T13:10:57", "message_id": "4bde7890-01be-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T13:00:57", "message_id": "e6313ef2-01bc-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T12:50:57", "message_id": "80800ca6-01bb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T12:40:57", "message_id": "1ad4b952-01ba-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T12:30:57", "message_id": "b52cbf7e-01b8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T12:20:57", "message_id": "4f82e460-01b7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T12:10:57", "message_id": "e9da0090-01b5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T12:00:57", "message_id": "84213314-01b4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T11:50:57", "message_id": "1e787d16-01b3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T11:40:57", "message_id": "b8d2bc5c-01b1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T11:30:57", "message_id": "531f3080-01b0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T11:20:57", "message_id": "ed72fcea-01ae-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T11:10:57", "message_id": "87ca7626-01ad-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T11:00:56", "message_id": "220614fe-01ac-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T10:50:57", "message_id": "bc8a74ae-01aa-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T10:40:56", "message_id": "56b68952-01a9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T10:30:56", "message_id": "f114b73c-01a7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T10:20:56", "message_id": "8b592866-01a6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T10:10:56", "message_id": "25c91480-01a5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T10:00:56", "message_id": "c0058d82-01a3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T09:50:56", "message_id": "5a4a3c32-01a2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T09:40:56", "message_id": "f4a71acc-01a0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T09:30:56", "message_id": "8f133d4a-019f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T09:20:56", "message_id": "2947a150-019e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T09:10:55", "message_id": "c3a008d4-019c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T09:00:56", "message_id": "5e0a1628-019b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T08:50:55", "message_id": "f841aa1e-0199-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T08:40:55", "message_id": "92a0b3cc-0198-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T08:30:55", "message_id": "2cd4a022-0197-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T08:20:55", "message_id": "c7341492-0195-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T08:10:55", "message_id": "617508ce-0194-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T08:00:55", "message_id": "fbc9b8ea-0192-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T07:50:55", "message_id": "962c6af6-0191-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T07:40:55", "message_id": "30815816-0190-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T07:30:55", "message_id": "cacc1aa2-018e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T07:20:54", "message_id": "6521f7a4-018d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T07:10:54", "message_id": "ff74a70e-018b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T07:00:54", "message_id": "99c23f3a-018a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T06:50:54", "message_id": "341825a6-0189-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T06:40:54", "message_id": "ce6aecd0-0187-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T06:30:54", "message_id": "68be19ee-0186-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T06:20:54", "message_id": "03136adc-0185-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T06:10:54", "message_id": "9d59537e-0183-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T06:00:54", "message_id": "37a18700-0182-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T05:50:54", "message_id": "d2042fca-0180-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T05:40:54", "message_id": "6c50809e-017f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T05:30:53", "message_id": "0696e208-017e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T05:20:53", "message_id": "a0ee4172-017c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T05:10:53", "message_id": "3b456f04-017b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T05:00:53", "message_id": "d59cbea6-0179-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T04:50:53", "message_id": "6fe281c8-0178-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T04:40:53", "message_id": "0a2c14b2-0177-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T04:30:53", "message_id": "a4819408-0175-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T04:20:53", "message_id": "3ed168b4-0174-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T04:10:53", "message_id": "d92418f0-0172-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T04:00:53", "message_id": "737f30f8-0171-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T03:50:53", "message_id": "0dd16286-0170-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T03:40:53", "message_id": "a824a3f4-016e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T03:30:52", "message_id": "4279d098-016d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T03:20:52", "message_id": "dcc57cbc-016b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T03:10:52", "message_id": "7717b430-016a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T03:00:52", "message_id": "1169ce26-0169-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T02:50:52", "message_id": "abbe64ca-0167-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T02:40:52", "message_id": "4607994a-0166-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T02:30:52", "message_id": "e058b6a2-0164-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T02:20:52", "message_id": "7abcf336-0163-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T02:10:52", "message_id": "150ed42e-0162-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T02:00:52", "message_id": "af58fa3e-0160-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T01:50:52", "message_id": "49d1c566-015f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T01:40:52", "message_id": "e415d51a-015d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T01:30:52", "message_id": "7e782dda-015c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T01:20:52", "message_id": "18cb7e0c-015b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T01:10:51", "message_id": "b30cea0c-0159-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T01:00:51", "message_id": "4d689166-0158-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T00:50:51", "message_id": "e7969104-0156-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T00:40:51", "message_id": "81ece7c8-0155-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T00:30:51", "message_id": "1c3dcd26-0154-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T00:20:51", "message_id": "b68059c8-0152-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T00:10:51", "message_id": "50dd4730-0151-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-10T00:00:51", "message_id": "eb2ba2f2-014f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T23:50:50", "message_id": "857ebc6a-014e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T23:40:50", "message_id": "1fc90fac-014d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T23:30:50", "message_id": "ba0fe790-014b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T23:20:50", "message_id": "5472e168-014a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T23:10:50", "message_id": "eebc19da-0148-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T23:00:50", "message_id": "894d4bd8-0147-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T22:50:50", "message_id": "236189ca-0146-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T22:40:50", "message_id": "bdab3bcc-0144-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T22:30:50", "message_id": "57ffd2e8-0143-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T22:20:50", "message_id": "f2641274-0141-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T22:10:50", "message_id": "8c9fa6b6-0140-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T22:00:50", "message_id": "26fe9b9c-013f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T21:50:49", "message_id": "c1523016-013d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T21:40:49", "message_id": "5bab2174-013c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T21:30:49", "message_id": "f6021e96-013a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T21:20:49", "message_id": "904bcd8c-0139-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T21:10:49", "message_id": "2aa74ade-0138-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T21:00:49", "message_id": "c4fea016-0136-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T20:50:49", "message_id": "5f4cb088-0135-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T20:40:49", "message_id": "f9a23c04-0133-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T20:30:49", "message_id": "93e78712-0132-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T20:20:49", "message_id": "2e5b369c-0131-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T20:10:49", "message_id": "c895b202-012f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T20:00:49", "message_id": "62e6f52a-012e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T19:50:49", "message_id": "fd43ced8-012c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T19:40:48", "message_id": "978579d0-012b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T19:30:48", "message_id": "31dd66ac-012a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T19:20:48", "message_id": "cc3f8af6-0128-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T19:10:48", "message_id": "66846a66-0127-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T19:00:48", "message_id": "00d0e16e-0126-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T18:50:48", "message_id": "9b1b851e-0124-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T18:40:48", "message_id": "3570227a-0123-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T18:30:48", "message_id": "cfb99426-0121-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T18:20:48", "message_id": "6a0b25e6-0120-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T18:10:47", "message_id": "04588168-011f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T18:00:47", "message_id": "9ea07a34-011d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T17:50:47", "message_id": "38fab420-011c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T17:40:47", "message_id": "d34766ba-011a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T17:30:47", "message_id": "6d96071e-0119-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T17:20:47", "message_id": "07efb9ce-0118-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T17:10:47", "message_id": "a23d1ee2-0116-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T17:00:47", "message_id": "3c90ff4c-0115-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T16:50:47", "message_id": "d6dc13b8-0113-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T16:40:47", "message_id": "712bbba0-0112-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T16:30:47", "message_id": "0b8cc1aa-0111-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T16:20:46", "message_id": "a5d31ae0-010f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T16:10:46", "message_id": "402b7cf6-010e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T16:00:46", "message_id": "da7a84ac-010c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T15:50:49", "message_id": "76517f40-010b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T15:40:47", "message_id": "0f7b169c-010a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T15:30:46", "message_id": "a995902e-0108-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T15:20:46", "message_id": "43caeb64-0107-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T15:10:46", "message_id": "de32a9b4-0105-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T15:00:46", "message_id": "787141f4-0104-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T14:50:46", "message_id": "12cd0280-0103-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T14:40:46", "message_id": "ad18a972-0101-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T14:30:46", "message_id": "4761a04e-0100-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T14:20:46", "message_id": "e1bf8e46-00fe-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T14:10:46", "message_id": "7c46d9bc-00fd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T14:00:45", "message_id": "164eb928-00fc-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T13:50:45", "message_id": "b0af2eaa-00fa-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T13:40:45", "message_id": "4af8fe48-00f9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T13:30:45", "message_id": "e54994be-00f7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T13:20:46", "message_id": "7ffebd2e-00f6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T13:10:45", "message_id": "19dea1ae-00f5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T13:00:45", "message_id": "b43bfe88-00f3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T12:50:45", "message_id": "4e82e814-00f2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T12:40:45", "message_id": "e8dc94ac-00f0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T12:30:44", "message_id": "833328ba-00ef-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T12:20:44", "message_id": "1d7ce660-00ee-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T12:10:44", "message_id": "b7ce0b6a-00ec-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T12:00:44", "message_id": "522138a6-00eb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T11:50:44", "message_id": "ec7a4f5c-00e9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T11:40:44", "message_id": "86c319b0-00e8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T11:30:44", "message_id": "211c64aa-00e7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T11:20:44", "message_id": "bb6b95a0-00e5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T11:10:44", "message_id": "55c34582-00e4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T11:00:44", "message_id": "f00b47f4-00e2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T10:50:44", "message_id": "8a5cfe1c-00e1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T10:40:43", "message_id": "24acd174-00e0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T10:30:43", "message_id": "bf033be8-00de-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T10:20:43", "message_id": "59500016-00dd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T10:10:43", "message_id": "f3a3ba6a-00db-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T10:00:43", "message_id": "8e05ac5a-00da-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T09:50:43", "message_id": "28439a54-00d9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T09:40:43", "message_id": "c29e7800-00d7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T09:30:43", "message_id": "5cee8f8c-00d6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T09:20:43", "message_id": "f741874e-00d4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T09:10:43", "message_id": "919af08e-00d3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T09:00:43", "message_id": "2be71a7a-00d2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T08:50:42", "message_id": "c631025a-00d0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T08:40:42", "message_id": "608c4596-00cf-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T08:30:42", "message_id": "fadfb698-00cd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T08:20:42", "message_id": "95308c06-00cc-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T08:10:42", "message_id": "2f7bc3c2-00cb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T08:00:42", "message_id": "c9cb46c0-00c9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T07:50:42", "message_id": "641c8bf0-00c8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T07:40:42", "message_id": "fe9901ec-00c6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T07:30:42", "message_id": "98ca0a42-00c5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T07:20:42", "message_id": "330c238a-00c4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T07:10:42", "message_id": "cd5f9658-00c2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T07:00:41", "message_id": "67b4fe3e-00c1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T06:50:41", "message_id": "020006b6-00c0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T06:40:41", "message_id": "9c552efa-00be-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T06:30:41", "message_id": "36a8291e-00bd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T06:20:41", "message_id": "d0f3bf58-00bb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T06:10:41", "message_id": "6b4a3246-00ba-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T06:00:41", "message_id": "05a518c6-00b9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T05:50:41", "message_id": "9ff1271e-00b7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T05:40:41", "message_id": "3a49b7ce-00b6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T05:30:41", "message_id": "d49574dc-00b4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T05:20:41", "message_id": "6ee65b98-00b3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T05:10:41", "message_id": "093a33f6-00b2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T05:00:40", "message_id": "a38ea560-00b0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T04:50:40", "message_id": "3df4ad4a-00af-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T04:40:40", "message_id": "d84bb07a-00ad-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T04:30:40", "message_id": "72995ce2-00ac-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T04:20:40", "message_id": "0cfac14c-00ab-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T04:10:40", "message_id": "a75442ce-00a9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T04:00:40", "message_id": "41c996bc-00a8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T03:50:41", "message_id": "dc455fc0-00a6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T03:40:40", "message_id": "76587db0-00a5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T03:30:40", "message_id": "10ddf57e-00a4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T03:20:40", "message_id": "ab06f788-00a2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T03:10:40", "message_id": "45626f30-00a1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T03:00:40", "message_id": "dfb63ef6-009f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T02:50:40", "message_id": "79fa5a6c-009e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T02:40:40", "message_id": "14839ee2-009d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T02:30:40", "message_id": "aea115f6-009b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T02:20:40", "message_id": "48f6811a-009a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T02:10:39", "message_id": "e34a94ce-0098-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T02:00:39", "message_id": "7d9d6116-0097-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T01:50:39", "message_id": "17da496c-0096-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T01:40:39", "message_id": "b22acaf2-0094-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T01:30:39", "message_id": "4c7d13dc-0093-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T01:20:39", "message_id": "e6d9ae92-0091-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T01:10:39", "message_id": "811d88e0-0090-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T01:00:39", "message_id": "1b7c0bd4-008f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T00:50:39", "message_id": "b5c2f1d2-008d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T00:40:38", "message_id": "500d9924-008c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T00:30:38", "message_id": "ea6e6586-008a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T00:20:38", "message_id": "84c26468-0089-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T00:10:38", "message_id": "1f0fa820-0088-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-09T00:00:38", "message_id": "b9605700-0086-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T23:50:38", "message_id": "53ab010e-0085-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T23:40:38", "message_id": "ee0bc00a-0083-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T23:30:38", "message_id": "8851f226-0082-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T23:20:38", "message_id": "229b978a-0081-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T23:10:38", "message_id": "bcf885ba-007f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T23:00:38", "message_id": "5780768a-007e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T22:50:38", "message_id": "f1930712-007c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T22:40:37", "message_id": "8bec5cd4-007b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T22:30:37", "message_id": "262b3484-007a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T22:20:37", "message_id": "c087f406-0078-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T22:10:37", "message_id": "5ad8751e-0077-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T22:00:37", "message_id": "f5286f7c-0075-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T21:50:37", "message_id": "8f8639fc-0074-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T21:40:37", "message_id": "29ce5456-0073-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T21:30:37", "message_id": "c42454b2-0071-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T21:20:37", "message_id": "5e84be54-0070-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T21:10:37", "message_id": "f8ca0692-006e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T21:00:37", "message_id": "93128cc6-006d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T20:50:36", "message_id": "2d5fabee-006c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T20:40:36", "message_id": "c7b200f4-006a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T20:30:36", "message_id": "620af93c-0069-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T20:20:36", "message_id": "fc4f936a-0067-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T20:10:36", "message_id": "96acf77e-0066-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T20:00:36", "message_id": "30f880c0-0065-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T19:50:36", "message_id": "cb503c78-0063-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T19:40:36", "message_id": "659b28bc-0062-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T19:30:36", "message_id": "ffee37e4-0060-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T19:20:36", "message_id": "9a3a13ba-005f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T19:10:35", "message_id": "348ed3c6-005e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T19:00:35", "message_id": "cee2a83c-005c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T18:50:35", "message_id": "6932e96c-005b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T18:40:35", "message_id": "037e87f8-005a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T18:30:35", "message_id": "9dded64c-0058-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T18:20:35", "message_id": "381e74da-0057-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T18:10:35", "message_id": "d27cc146-0055-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T18:00:35", "message_id": "6cce4dac-0054-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T17:50:35", "message_id": "07207ff8-0053-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T17:40:35", "message_id": "a17a4c98-0051-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T17:30:35", "message_id": "3bce60c4-0050-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T17:20:35", "message_id": "d61d2018-004e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T17:10:34", "message_id": "706d09dc-004d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T17:00:34", "message_id": "0abad818-004c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T16:50:34", "message_id": "a50eedf2-004a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T16:40:34", "message_id": "3f685e26-0049-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T16:30:34", "message_id": "d9bbb16e-0047-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T16:20:34", "message_id": "74103fca-0046-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T16:10:34", "message_id": "0e5c2e4c-0045-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T16:00:34", "message_id": "a8b7cd9a-0043-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T15:50:34", "message_id": "4305ed20-0042-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T15:40:34", "message_id": "dd52c120-0040-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T15:30:34", "message_id": "77a84e9a-003f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T15:20:34", "message_id": "11fdf03c-003e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T15:10:34", "message_id": "ac4ddbae-003c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T15:00:33", "message_id": "4698074a-003b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T14:50:33", "message_id": "e0f0caf4-0039-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T14:40:33", "message_id": "7b3a550a-0038-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T14:30:33", "message_id": "1594c3c6-0037-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T14:20:33", "message_id": "afe079f4-0035-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T14:10:33", "message_id": "4a428d90-0034-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T14:00:33", "message_id": "e4c3a9b4-0032-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T13:50:33", "message_id": "7ed5b01c-0031-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T13:40:33", "message_id": "1933f0b2-0030-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T13:30:33", "message_id": "b38192c0-002e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T13:20:33", "message_id": "4dddc4b2-002d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T13:10:32", "message_id": "e829c644-002b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T13:00:32", "message_id": "82779b74-002a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T12:50:32", "message_id": "1ccbc62a-0029-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T12:40:32", "message_id": "b711d8d4-0027-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T12:30:32", "message_id": "516b7950-0026-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T12:20:32", "message_id": "ebb50d70-0024-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T12:10:32", "message_id": "85ff6e2c-0023-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T12:00:32", "message_id": "205be2c2-0022-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T11:50:32", "message_id": "baa8002e-0020-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T11:40:32", "message_id": "550fad6c-001f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T11:30:32", "message_id": "ef64d0a6-001d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T11:20:31", "message_id": "89a7e47a-001c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T11:10:32", "message_id": "2418c850-001b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T11:00:31", "message_id": "be56dbd4-0019-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T10:50:31", "message_id": "58a92fe0-0018-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T10:40:31", "message_id": "f304fe7c-0016-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T10:30:31", "message_id": "8d72be88-0015-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T10:20:31", "message_id": "27bd753e-0014-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T10:10:31", "message_id": "c2234fce-0012-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T10:00:31", "message_id": "5c46f454-0011-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T09:50:31", "message_id": "f696da9e-000f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T09:40:31", "message_id": "90dff772-000e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T09:30:31", "message_id": "2b433254-000d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T09:20:30", "message_id": "c58679a4-000b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T09:10:30", "message_id": "5fd55bee-000a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T09:00:30", "message_id": "fa3033f0-0008-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T08:50:30", "message_id": "947e2ab8-0007-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T08:40:30", "message_id": "2ed6d8be-0006-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T08:30:30", "message_id": "c92ca738-0004-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T08:20:30", "message_id": "6379af04-0003-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T08:10:30", "message_id": "fdd8ddc4-0001-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T08:00:30", "message_id": "981e4e3e-0000-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T07:50:30", "message_id": "326de802-ffff-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T07:40:30", "message_id": "ccbe10e6-fffd-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T07:30:30", "message_id": "670d4826-fffc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T07:20:29", "message_id": "0167e928-fffb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T07:10:29", "message_id": "9baeb7fc-fff9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T07:00:29", "message_id": "35f9f8be-fff8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T06:50:29", "message_id": "d05d3602-fff6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T06:40:29", "message_id": "6aa440d6-fff5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T06:30:29", "message_id": "04f1ea1e-fff4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T06:20:29", "message_id": "9f45df78-fff2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T06:10:29", "message_id": "3995efb6-fff1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T06:00:29", "message_id": "d3ee6ed2-ffef-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T05:50:29", "message_id": "6e47e9b0-ffee-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T05:40:29", "message_id": "08a057e2-ffed-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T05:30:29", "message_id": "a2e8caca-ffeb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T05:20:28", "message_id": "3d3059e2-ffea-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T05:10:28", "message_id": "d785fd14-ffe8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T05:00:28", "message_id": "71da8206-ffe7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T04:50:28", "message_id": "0c1e196a-ffe6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T04:40:28", "message_id": "a6807fae-ffe4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T04:30:28", "message_id": "40c43846-ffe3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T04:20:28", "message_id": "db1db20c-ffe1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T04:10:28", "message_id": "756f5b28-ffe0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T04:00:28", "message_id": "0fb77a14-ffdf-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T03:50:28", "message_id": "aa0e0238-ffdd-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T03:40:27", "message_id": "445b2d68-ffdc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T03:30:27", "message_id": "deaca9a2-ffda-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T03:20:27", "message_id": "78fcb12a-ffd9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T03:10:27", "message_id": "1351f840-ffd8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T03:00:27", "message_id": "ada38104-ffd6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T02:50:27", "message_id": "47ee9e58-ffd5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T02:40:27", "message_id": "e23d3da4-ffd3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T02:30:27", "message_id": "7c97a0f8-ffd2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T02:20:27", "message_id": "170241c2-ffd1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T02:10:27", "message_id": "b12c5e38-ffcf-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T02:00:27", "message_id": "4b87250a-ffce-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T01:50:26", "message_id": "e5d19868-ffcc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T01:40:26", "message_id": "8022f666-ffcb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T01:30:26", "message_id": "1a7545ae-ffca-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T01:20:26", "message_id": "b4cc48b6-ffc8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T01:10:26", "message_id": "4f224886-ffc7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T01:00:26", "message_id": "e96fa8c2-ffc5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T00:50:26", "message_id": "83c5b774-ffc4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T00:40:26", "message_id": "1e191a02-ffc3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T00:30:26", "message_id": "b867dd48-ffc1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T00:20:26", "message_id": "5313707a-ffc0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T00:10:26", "message_id": "ed079f50-ffbe-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-08T00:00:26", "message_id": "878376aa-ffbd-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T23:50:25", "message_id": "21b3de06-ffbc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T23:40:25", "message_id": "bc096626-ffba-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T23:30:25", "message_id": "5662dc54-ffb9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T23:20:25", "message_id": "f0cf32da-ffb7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T23:10:25", "message_id": "8b1fecbe-ffb6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T23:00:25", "message_id": "25980fee-ffb5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T22:50:25", "message_id": "bf927c6c-ffb3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T22:40:25", "message_id": "59f06e42-ffb2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T22:30:25", "message_id": "f4407d90-ffb0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T22:20:24", "message_id": "8e801b4c-ffaf-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T22:10:25", "message_id": "28e542ea-ffae-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T22:00:24", "message_id": "c32b559e-ffac-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T21:50:24", "message_id": "5d6e12c4-ffab-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T21:40:24", "message_id": "f7c83aea-ffa9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T21:30:24", "message_id": "9220f0b6-ffa8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T21:20:24", "message_id": "2c68aa44-ffa7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T21:10:24", "message_id": "c6ac5652-ffa5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T21:00:24", "message_id": "6106dcf6-ffa4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T20:50:24", "message_id": "fb5829f6-ffa2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T20:40:23", "message_id": "95a3e344-ffa1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T20:30:23", "message_id": "2ff9a368-ffa0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T20:20:23", "message_id": "ca4bab0c-ff9e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T20:10:23", "message_id": "6490ca46-ff9d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T20:00:23", "message_id": "fee9b500-ff9b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T19:50:23", "message_id": "99334286-ff9a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T19:40:23", "message_id": "338d37d0-ff99-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T19:30:23", "message_id": "cdde558c-ff97-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T19:20:23", "message_id": "68343fd6-ff96-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T19:10:23", "message_id": "0282d694-ff95-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T19:00:23", "message_id": "9ccd477c-ff93-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T18:50:23", "message_id": "3725911e-ff92-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T18:40:22", "message_id": "d178af3c-ff90-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T18:30:22", "message_id": "6bb7fd66-ff8f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T18:20:22", "message_id": "06083932-ff8e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T18:10:22", "message_id": "a05d74cc-ff8c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T18:00:22", "message_id": "3ab1a7d4-ff8b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T17:50:22", "message_id": "d501796a-ff89-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T17:40:22", "message_id": "6f59c8a2-ff88-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T17:30:22", "message_id": "09a8bdac-ff87-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T17:20:22", "message_id": "a3f4fefe-ff85-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T17:10:22", "message_id": "3e4d2b40-ff84-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T17:00:21", "message_id": "d892205e-ff82-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T16:50:21", "message_id": "72da9756-ff81-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T16:40:21", "message_id": "0d312330-ff80-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T16:30:21", "message_id": "a78dd164-ff7e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T16:20:21", "message_id": "41d1f8e2-ff7d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T16:10:21", "message_id": "dc2b7992-ff7b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T16:00:21", "message_id": "767cf5c2-ff7a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T15:50:21", "message_id": "10d0d51e-ff79-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T15:40:21", "message_id": "ab1cadc0-ff77-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T15:30:21", "message_id": "4568d824-ff76-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T15:20:20", "message_id": "dfbdf406-ff74-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T15:10:20", "message_id": "7a0a34d6-ff73-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T15:00:20", "message_id": "145a4e6a-ff72-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T14:50:20", "message_id": "aeaca83e-ff70-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T14:40:20", "message_id": "48fb852e-ff6f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T14:30:20", "message_id": "e3623164-ff6d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T14:20:20", "message_id": "7db12de4-ff6c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T14:10:20", "message_id": "1800dc3e-ff6b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T14:00:20", "message_id": "b251261a-ff69-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T13:50:20", "message_id": "4c9e9420-ff68-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T13:40:20", "message_id": "e7063ee8-ff66-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T13:30:20", "message_id": "814c839c-ff65-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T13:20:19", "message_id": "1b9dc638-ff64-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T13:10:19", "message_id": "b5f511c0-ff62-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T13:00:19", "message_id": "504fab24-ff61-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T12:50:19", "message_id": "eaa64626-ff5f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T12:40:19", "message_id": "84efdb22-ff5e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T12:30:19", "message_id": "1f465770-ff5d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T12:20:19", "message_id": "b99bc320-ff5b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T12:10:19", "message_id": "53e16360-ff5a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T12:00:19", "message_id": "ee2f46b4-ff58-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T11:50:19", "message_id": "8887f474-ff57-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T11:40:19", "message_id": "22dd5fa2-ff56-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T11:30:19", "message_id": "bd2d7166-ff54-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T11:20:18", "message_id": "577ca0d6-ff53-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T11:10:19", "message_id": "f1ea5930-ff51-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T11:00:18", "message_id": "8c33e292-ff50-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T10:50:18", "message_id": "2685051c-ff4f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T10:40:18", "message_id": "c0e0ca1c-ff4d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T10:30:18", "message_id": "5b29b66c-ff4c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T10:20:18", "message_id": "f57c17ac-ff4a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T10:10:18", "message_id": "8fda186e-ff49-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T10:00:18", "message_id": "2a3564b0-ff48-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T09:50:18", "message_id": "c4750988-ff46-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T09:40:18", "message_id": "5ece8d94-ff45-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T09:30:18", "message_id": "f90dbdc8-ff43-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T09:20:18", "message_id": "93675480-ff42-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T09:10:17", "message_id": "2db85f5e-ff41-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T09:00:17", "message_id": "c7fc05d6-ff3f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T08:50:17", "message_id": "6250649e-ff3e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T08:40:17", "message_id": "fca6a1f4-ff3c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T08:30:17", "message_id": "96f4d0b6-ff3b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T08:20:17", "message_id": "3137e124-ff3a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T08:10:17", "message_id": "cb888e74-ff38-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T08:00:17", "message_id": "65d7c168-ff37-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T07:50:17", "message_id": "002936b8-ff36-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T07:40:16", "message_id": "9a765a22-ff34-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T07:30:16", "message_id": "34d2951a-ff33-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T07:20:16", "message_id": "cf1945c6-ff31-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T07:10:16", "message_id": "69685d3a-ff30-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T07:00:16", "message_id": "03c2fc8e-ff2f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T06:50:16", "message_id": "9e154b04-ff2d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T06:40:16", "message_id": "386557b4-ff2c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T06:30:16", "message_id": "d2ac4e92-ff2a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T06:20:16", "message_id": "6d0e60a8-ff29-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T06:10:16", "message_id": "076ba108-ff28-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T06:00:16", "message_id": "a1ab4e64-ff26-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T05:50:16", "message_id": "3c08317c-ff25-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T05:40:15", "message_id": "d6497f90-ff23-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T05:30:16", "message_id": "70c33536-ff22-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T05:20:15", "message_id": "0af6b2ce-ff21-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T05:10:15", "message_id": "a53ca5d4-ff1f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T05:00:15", "message_id": "3fa3a750-ff1e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T04:50:15", "message_id": "d9e66d40-ff1c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T04:40:15", "message_id": "743f4792-ff1b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T04:30:15", "message_id": "0e9e6d56-ff1a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T04:20:15", "message_id": "a8de5a72-ff18-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T04:10:15", "message_id": "433ad868-ff17-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T04:00:15", "message_id": "dd8a072e-ff15-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T03:50:15", "message_id": "77f2b7c2-ff14-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T03:40:14", "message_id": "1232250e-ff13-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T03:30:14", "message_id": "ac7985aa-ff11-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T03:20:14", "message_id": "46d021ce-ff10-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T03:10:14", "message_id": "e1353df0-ff0e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T03:00:14", "message_id": "7b73c3b6-ff0d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T02:50:14", "message_id": "15dfec24-ff0c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T02:40:14", "message_id": "b02a7706-ff0a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T02:30:14", "message_id": "4a7e0950-ff09-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T02:20:14", "message_id": "e4c49f94-ff07-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T02:10:14", "message_id": "7f14d98a-ff06-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T02:00:14", "message_id": "1962afa0-ff05-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T01:50:14", "message_id": "b3c35178-ff03-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T01:40:13", "message_id": "4e075e16-ff02-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T01:30:13", "message_id": "e8607c10-ff00-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T01:20:13", "message_id": "82b27842-feff-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T01:10:13", "message_id": "1d0a6c30-fefe-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T01:00:13", "message_id": "b74de5e4-fefc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T00:50:13", "message_id": "51aa5fa2-fefb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T00:40:13", "message_id": "ec00478a-fef9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T00:30:13", "message_id": "864150e8-fef8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T00:20:13", "message_id": "209311d8-fef7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T00:10:13", "message_id": "bae5f70c-fef5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-07T00:00:12", "message_id": "552dfc80-fef4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T23:50:12", "message_id": "ef915cba-fef2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T23:40:12", "message_id": "89e1bdfc-fef1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T23:30:12", "message_id": "24378b90-fef0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T23:20:12", "message_id": "be9a201e-feee-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T23:10:12", "message_id": "58d0c9be-feed-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T23:00:12", "message_id": "f36eeb92-feeb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T22:50:12", "message_id": "8d7aadcc-feea-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T22:40:12", "message_id": "27cf2a26-fee9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T22:30:12", "message_id": "c221b0a0-fee7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T22:20:12", "message_id": "5c6b89bc-fee6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T22:10:12", "message_id": "f6d39244-fee4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T22:00:12", "message_id": "913c95ee-fee3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T21:50:11", "message_id": "2b6b25d8-fee2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T21:40:12", "message_id": "c5e4d796-fee0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T21:30:11", "message_id": "6019e52e-fedf-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T21:20:11", "message_id": "fa6cbd92-fedd-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T21:10:11", "message_id": "94b5c184-fedc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T21:00:11", "message_id": "2efc2212-fedb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T20:50:11", "message_id": "c95891a8-fed9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T20:40:11", "message_id": "63b7ed18-fed8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T20:30:11", "message_id": "fe031fd4-fed6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T20:20:11", "message_id": "9881443e-fed5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T20:10:11", "message_id": "32a01a06-fed4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T20:00:11", "message_id": "cd08d33c-fed2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T19:50:10", "message_id": "67515a10-fed1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T19:40:10", "message_id": "01a84e18-fed0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T19:30:10", "message_id": "9bf91422-fece-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T19:20:10", "message_id": "3646b252-fecd-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T19:10:10", "message_id": "d09634ce-fecb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T19:00:10", "message_id": "6ad70d12-feca-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T18:50:10", "message_id": "055332a0-fec9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T18:40:10", "message_id": "9f8b1e70-fec7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T18:30:10", "message_id": "39d3af44-fec6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T18:20:10", "message_id": "d429f230-fec4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T18:10:09", "message_id": "6e76df58-fec3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T18:00:09", "message_id": "08bb1e46-fec2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T17:50:09", "message_id": "a3132526-fec0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T17:40:09", "message_id": "3d6ba154-febf-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T17:30:09", "message_id": "d7b6b19c-febd-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T17:20:09", "message_id": "720e48ba-febc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T17:10:09", "message_id": "0c53e6d4-febb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T17:00:09", "message_id": "a6a71ef6-feb9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T16:50:09", "message_id": "40fa69d8-feb8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T16:40:09", "message_id": "db4328ec-feb6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T16:30:09", "message_id": "759a723a-feb5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T16:20:08", "message_id": "0fe78488-feb4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T16:10:08", "message_id": "aa44504e-feb2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T16:00:08", "message_id": "44967246-feb1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T15:50:08", "message_id": "dedfe2da-feaf-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T15:40:08", "message_id": "793d7a24-feae-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T15:30:08", "message_id": "13839a7a-fead-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T15:20:08", "message_id": "add8414a-feab-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T15:10:08", "message_id": "482625d4-feaa-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T15:00:08", "message_id": "e2770240-fea8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T14:50:08", "message_id": "7ccd529c-fea7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T14:40:08", "message_id": "172b7726-fea6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T14:30:08", "message_id": "b184dab2-fea4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T14:20:07", "message_id": "4bd3a898-fea3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T14:10:07", "message_id": "e620bba4-fea1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T14:00:07", "message_id": "808efe5a-fea0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T13:50:07", "message_id": "1ad19cb8-fe9f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T13:40:07", "message_id": "b515ba72-fe9d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T13:30:07", "message_id": "4f6733fa-fe9c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T13:20:07", "message_id": "e9b7cda4-fe9a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T13:10:07", "message_id": "84060b84-fe99-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T13:00:07", "message_id": "1e6182b4-fe98-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T12:50:07", "message_id": "b8b6c1f0-fe96-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T12:40:07", "message_id": "531b8e62-fe95-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T12:30:07", "message_id": "ed5a4c9a-fe93-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T12:20:06", "message_id": "87a55b48-fe92-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T12:10:06", "message_id": "2202e66c-fe91-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T12:00:06", "message_id": "bc54692c-fe8f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T11:50:06", "message_id": "56a2b42c-fe8e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T11:40:06", "message_id": "f10229b4-fe8c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T11:30:07", "message_id": "8bdffefe-fe8b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T11:20:06", "message_id": "25992a36-fe8a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T11:10:06", "message_id": "bfe50ad0-fe88-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T11:00:06", "message_id": "5a3eaef8-fe87-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T10:50:06", "message_id": "f491f534-fe85-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T10:40:06", "message_id": "8ee420b4-fe84-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T10:30:05", "message_id": "29314d60-fe83-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T10:20:05", "message_id": "c3875334-fe81-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T10:10:05", "message_id": "5dcde77a-fe80-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T10:00:05", "message_id": "f82505da-fe7e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T09:50:05", "message_id": "92718b06-fe7d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T09:40:05", "message_id": "2cc96fae-fe7c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T09:30:05", "message_id": "c71e425c-fe7a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T09:20:05", "message_id": "616732a8-fe79-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T09:10:05", "message_id": "fbbff602-fe77-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T09:00:05", "message_id": "960f68ac-fe76-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T08:50:05", "message_id": "305f6378-fe75-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T08:40:04", "message_id": "cab1f2b2-fe73-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T08:30:04", "message_id": "65009e10-fe72-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T08:20:04", "message_id": "ff53bbb6-fe70-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T08:10:04", "message_id": "99a8c44c-fe6f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T08:00:04", "message_id": "33fae9dc-fe6e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T07:50:04", "message_id": "ce4ba442-fe6c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T07:40:04", "message_id": "68ad6c5c-fe6b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T07:30:04", "message_id": "02fcad4c-fe6a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T07:20:04", "message_id": "9d5107b4-fe68-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T07:10:04", "message_id": "37a07b26-fe67-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T07:00:04", "message_id": "d1f0d588-fe65-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T06:50:04", "message_id": "6c3feba8-fe64-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T06:40:04", "message_id": "069e22c0-fe63-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T06:30:03", "message_id": "a0ef9158-fe61-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T06:20:03", "message_id": "3b3a879c-fe60-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T06:10:03", "message_id": "d58686cc-fe5e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T06:00:03", "message_id": "6fd6f7fe-fe5d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T05:50:03", "message_id": "0a29801c-fe5c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T05:40:03", "message_id": "a48112b2-fe5a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T05:30:03", "message_id": "3ec87a42-fe59-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T05:20:03", "message_id": "d91cb68c-fe57-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T05:10:03", "message_id": "7373d83e-fe56-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T05:00:03", "message_id": "0dc087cc-fe55-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T04:50:02", "message_id": "a811994e-fe53-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T04:40:02", "message_id": "426b0da6-fe52-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T04:30:02", "message_id": "dcbf7128-fe50-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T04:20:02", "message_id": "77082fce-fe4f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T04:10:02", "message_id": "114ecd6a-fe4e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T04:00:02", "message_id": "abaaf91c-fe4c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T03:50:02", "message_id": "45fa37a0-fe4b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T03:40:02", "message_id": "e04f5454-fe49-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T03:30:02", "message_id": "7a993694-fe48-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T03:20:02", "message_id": "14e63ac8-fe47-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T03:10:02", "message_id": "af42c354-fe45-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T03:00:01", "message_id": "498e6082-fe44-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T02:50:01", "message_id": "e3dd2ada-fe42-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T02:40:01", "message_id": "7e2ca9e6-fe41-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T02:30:01", "message_id": "188af7ce-fe40-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T02:20:01", "message_id": "b2df8e2c-fe3e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T02:10:01", "message_id": "4d285ccc-fe3d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T02:00:01", "message_id": "e77f9efe-fe3b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T01:50:01", "message_id": "81d38706-fe3a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T01:40:01", "message_id": "1c30ba32-fe39-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T01:30:01", "message_id": "b680ca52-fe37-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T01:20:01", "message_id": "50dbc388-fe36-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T01:10:01", "message_id": "eb231ea2-fe34-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T01:00:01", "message_id": "857b57a0-fe33-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T00:50:00", "message_id": "1fc3b214-fe32-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T00:40:00", "message_id": "ba1b5f9e-fe30-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T00:30:00", "message_id": "5466f5c4-fe2f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T00:20:00", "message_id": "eeb68e2a-fe2d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T00:10:00", "message_id": "890afa08-fe2c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-06T00:00:00", "message_id": "235ca068-fe2b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T23:50:00", "message_id": "bdaf9244-fe29-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T23:40:00", "message_id": "580478e8-fe28-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T23:30:00", "message_id": "f254431c-fe26-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T23:20:00", "message_id": "8cb1a870-fe25-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T23:10:00", "message_id": "273c9f46-fe24-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T23:00:00", "message_id": "c18ff018-fe22-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T22:49:59", "message_id": "5b99350e-fe21-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T22:39:59", "message_id": "f5e4eb28-fe1f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T22:29:59", "message_id": "903e06ca-fe1e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T22:19:59", "message_id": "2a92d22a-fe1d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T22:09:59", "message_id": "c4e06b96-fe1b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T21:59:59", "message_id": "5f305fb4-fe1a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T21:49:59", "message_id": "f9809d42-fe18-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T21:39:59", "message_id": "93cddf88-fe17-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T21:29:59", "message_id": "2e16e848-fe16-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T21:19:59", "message_id": "c86f1958-fe14-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T21:09:58", "message_id": "62c0429a-fe13-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T20:59:58", "message_id": "fd1445a0-fe11-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T20:49:58", "message_id": "975a6bb4-fe10-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T20:39:58", "message_id": "31ab9d16-fe0f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T20:29:58", "message_id": "cbfaba0c-fe0d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T20:19:58", "message_id": "6655caee-fe0c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T20:09:58", "message_id": "00a0dbc2-fe0b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T19:59:58", "message_id": "9af5feca-fe09-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T19:49:58", "message_id": "3547dc8e-fe08-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T19:39:58", "message_id": "cfa4e526-fe06-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T19:29:58", "message_id": "69f1db04-fe05-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T19:19:57", "message_id": "0442bc66-fe04-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T19:09:57", "message_id": "9e9a11d0-fe02-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T18:59:57", "message_id": "38e7b85c-fe01-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T18:49:57", "message_id": "d336cfb2-fdff-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T18:39:57", "message_id": "6d8fc4b2-fdfe-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T18:29:57", "message_id": "07e29848-fdfd-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T18:19:57", "message_id": "a237a0f2-fdfb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T18:09:57", "message_id": "3c97e078-fdfa-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T17:59:57", "message_id": "d6dcea9a-fdf8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T17:49:57", "message_id": "7132c346-fdf7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T17:39:57", "message_id": "0b856950-fdf6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T17:29:57", "message_id": "a5d9dea2-fdf4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T17:19:56", "message_id": "40295c64-fdf3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T17:09:56", "message_id": "da7d48fe-fdf1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T16:59:56", "message_id": "74cf20aa-fdf0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T16:49:56", "message_id": "0f1ffe88-fdef-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T16:39:56", "message_id": "a97bb74e-fded-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T16:29:56", "message_id": "43f5a476-fdec-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T16:19:56", "message_id": "de264f70-fdea-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T16:09:56", "message_id": "7883c8ec-fde9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T15:59:56", "message_id": "12d2c198-fde8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T15:49:56", "message_id": "ad2ac7a6-fde6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T15:39:56", "message_id": "477ecfca-fde5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T15:29:56", "message_id": "e1d02148-fde3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T15:19:56", "message_id": "7c51d0f6-fde2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T15:09:56", "message_id": "166b3468-fde1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T14:59:55", "message_id": "b0bab4a0-fddf-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T14:49:55", "message_id": "4b1910de-fdde-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T14:39:55", "message_id": "e562b52a-fddc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T14:29:55", "message_id": "7fb7338c-fddb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T14:19:55", "message_id": "1a081e44-fdda-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T14:09:55", "message_id": "b45eb5f4-fdd8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T13:59:55", "message_id": "4eaa5728-fdd7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T13:49:55", "message_id": "e8ff1f86-fdd5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T13:39:55", "message_id": "834b7636-fdd4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T13:29:55", "message_id": "1d99b736-fdd3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T13:19:55", "message_id": "b7eb3ad2-fdd1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T13:09:54", "message_id": "5240c64e-fdd0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T12:59:54", "message_id": "ec93c07c-fdce-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T12:49:54", "message_id": "86e5b3b2-fdcd-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T12:39:54", "message_id": "2132dc08-fdcc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T12:29:54", "message_id": "bb83375a-fdca-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T12:19:54", "message_id": "55d747a8-fdc9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T12:09:54", "message_id": "f021e004-fdc7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T11:59:54", "message_id": "8a780a04-fdc6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T11:49:54", "message_id": "24cd1876-fdc5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T11:39:54", "message_id": "bf2227a6-fdc3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T11:29:54", "message_id": "5971d182-fdc2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T11:19:54", "message_id": "f3c7d634-fdc0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T11:09:53", "message_id": "8e18a97c-fdbf-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T10:59:53", "message_id": "286c00d4-fdbe-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T10:49:54", "message_id": "c2e7be02-fdbc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T10:39:53", "message_id": "5d0e5eb6-fdbb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T10:29:53", "message_id": "f76ac85c-fdb9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T10:19:53", "message_id": "91b85570-fdb8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T10:09:53", "message_id": "2c18ff2c-fdb7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T09:59:53", "message_id": "c66bcb2e-fdb5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T09:49:53", "message_id": "60bfa71a-fdb4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T09:39:53", "message_id": "fb111760-fdb2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T09:29:53", "message_id": "95657e70-fdb1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T09:19:53", "message_id": "2fb48fa4-fdb0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T09:09:52", "message_id": "ca013046-fdae-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T08:59:52", "message_id": "645aac28-fdad-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T08:49:52", "message_id": "feb8eaac-fdab-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T08:39:52", "message_id": "98fdc8d2-fdaa-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T08:29:52", "message_id": "334f0678-fda9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T08:19:52", "message_id": "cd9db62c-fda7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T08:09:52", "message_id": "680975c2-fda6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T07:59:52", "message_id": "02458fec-fda5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T07:49:52", "message_id": "9c9426d2-fda3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T07:39:52", "message_id": "36ec0f4e-fda2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T07:29:52", "message_id": "d139ffc2-fda0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T07:19:52", "message_id": "6b8e573c-fd9f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T07:09:52", "message_id": "0606348a-fd9e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T06:59:51", "message_id": "a02a9756-fd9c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T06:49:51", "message_id": "3a811e30-fd9b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T06:39:51", "message_id": "d4c8988a-fd99-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T06:29:51", "message_id": "6f1d21be-fd98-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T06:19:51", "message_id": "0968aba0-fd97-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T06:09:51", "message_id": "a3be0f08-fd95-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T05:59:51", "message_id": "3e115ed6-fd94-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T05:49:51", "message_id": "d863c7aa-fd92-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T05:39:51", "message_id": "72b450ce-fd91-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T05:29:51", "message_id": "0d12236e-fd90-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T05:19:50", "message_id": "a7609ede-fd8e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T05:09:50", "message_id": "41ab16a6-fd8d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T04:59:50", "message_id": "dc0a99e4-fd8b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T04:49:50", "message_id": "7667fda8-fd8a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T04:39:50", "message_id": "10c86bdc-fd89-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T04:29:50", "message_id": "ab1aa90e-fd87-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T04:19:50", "message_id": "4552d110-fd86-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T04:09:50", "message_id": "dfbfb6de-fd84-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T03:59:50", "message_id": "79d60e28-fd83-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T03:49:50", "message_id": "1446c77e-fd82-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T03:39:50", "message_id": "ae9fdf60-fd80-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T03:29:50", "message_id": "48fc0f7c-fd7f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T03:19:50", "message_id": "e35a6408-fd7d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T03:09:50", "message_id": "7da5f3bc-fd7c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T02:59:49", "message_id": "17dcaf9a-fd7b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T02:49:49", "message_id": "b21ecaa4-fd79-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T02:39:49", "message_id": "4cb16cea-fd78-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T02:29:49", "message_id": "e6f1f5f6-fd76-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T02:19:49", "message_id": "814ca026-fd75-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T02:09:49", "message_id": "1b971834-fd74-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T01:59:49", "message_id": "b5d64ea8-fd72-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T01:49:49", "message_id": "502f3e4e-fd71-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T01:39:49", "message_id": "ea883ca4-fd6f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T01:29:49", "message_id": "8506a5c4-fd6e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T01:19:49", "message_id": "1f671786-fd6d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T01:09:49", "message_id": "b9a48178-fd6b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T00:59:48", "message_id": "53dbf9d0-fd6a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T00:49:48", "message_id": "ee1d05cc-fd68-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T00:39:48", "message_id": "888432ea-fd67-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T00:29:48", "message_id": "22dcfb3a-fd66-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T00:19:48", "message_id": "bd3873aa-fd64-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-05T00:09:48", "message_id": "57a9686a-fd63-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-04T23:59:48", "message_id": "f1ffdc20-fd61-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-04T23:49:48", "message_id": "8c3a8fe4-fd60-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-04T23:39:05", "message_id": "0cff7ccc-fd5f-11e2-b8cf-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "e88ef09124594ede8ecea0b1628a05bf", "timestamp": "2013-08-04T23:29:05", "message_id": "a76b7916-fd5d-11e2-b8cf-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "e88ef09124594ede8ecea0b1628a05bf", "resource_metadata": {}, "counter_type": "gauge"}]} \ No newline at end of file diff --git a/tests/data/map_fixture_3.json b/tests/data/map_fixture_3.json new file mode 100644 index 0000000..be9f164 --- /dev/null +++ b/tests/data/map_fixture_3.json @@ -0,0 +1 @@ +{"http://localhost:8777/v2/meters/storage.objects.containers?q.field=resource_id&q.value=0c5a6b84fd2a43999c8820060c57da30": [{"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-12T04:01:18", "message_id": "d76c347e-0303-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-12T03:51:18", "message_id": "71badb90-0302-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-12T03:41:18", "message_id": "0c090994-0301-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-12T03:31:18", "message_id": "a66c349a-02ff-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-12T03:21:18", "message_id": "40b7c3c2-02fe-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-12T03:11:18", "message_id": "db0dda44-02fc-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-12T03:01:17", "message_id": "75535eb4-02fb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-12T02:51:17", "message_id": "0fafbfa4-02fa-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-12T02:41:17", "message_id": "a9ec5a16-02f8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-12T02:31:17", "message_id": "44481af2-02f7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-12T02:21:17", "message_id": "de937928-02f5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-12T02:11:17", "message_id": "78e65286-02f4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-12T02:01:17", "message_id": "133f4934-02f3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-12T01:51:17", "message_id": "ad94d4f6-02f1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-12T01:41:17", "message_id": "47e120f2-02f0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-12T01:31:17", "message_id": "e233d78c-02ee-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-12T01:21:17", "message_id": "7c7f04ee-02ed-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-12T01:11:16", "message_id": "16d606c0-02ec-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-12T01:01:16", "message_id": "b11339d0-02ea-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-12T00:51:16", "message_id": "4b7adcdc-02e9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-12T00:41:16", "message_id": "e5bf3d26-02e7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-12T00:31:16", "message_id": "800f0cf0-02e6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-12T00:21:16", "message_id": "1a8dc26e-02e5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-12T00:11:16", "message_id": "b4af0bd4-02e3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-12T00:01:16", "message_id": "4f050b54-02e2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T23:51:16", "message_id": "e956242e-02e0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T23:41:16", "message_id": "83afb366-02df-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T23:31:16", "message_id": "1e058e42-02de-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T23:21:15", "message_id": "b84c092e-02dc-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T23:11:15", "message_id": "52ad106e-02db-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T23:01:16", "message_id": "ed35e2f2-02d9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T22:51:15", "message_id": "874df53e-02d8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T22:41:15", "message_id": "219980a6-02d7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T22:31:15", "message_id": "bbecb3c8-02d5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T22:21:15", "message_id": "5637e5f8-02d4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T22:11:15", "message_id": "f087d1a6-02d2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T22:01:15", "message_id": "8ade70e0-02d1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T21:51:15", "message_id": "25374344-02d0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T21:41:15", "message_id": "bf884f1c-02ce-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T21:31:14", "message_id": "59d43efc-02cd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T21:21:14", "message_id": "f42aa88a-02cb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T21:11:14", "message_id": "8e7bc042-02ca-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T21:01:14", "message_id": "28cad07c-02c9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T20:51:14", "message_id": "c320a3ba-02c7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T20:41:14", "message_id": "5d6b55ca-02c6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T20:31:14", "message_id": "f7c4a6d2-02c4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T20:21:14", "message_id": "9215b1d8-02c3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T20:11:14", "message_id": "2c72b37c-02c2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T20:01:14", "message_id": "c6bccc30-02c0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T19:51:14", "message_id": "6111efb0-02bf-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T19:41:14", "message_id": "fb5fee48-02bd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T19:31:14", "message_id": "95b52690-02bc-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T19:21:13", "message_id": "30041fa0-02bb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T19:11:13", "message_id": "ca50fd28-02b9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T19:01:13", "message_id": "649c1ed2-02b8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T18:51:13", "message_id": "feea01f4-02b6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T18:41:13", "message_id": "9942a9ba-02b5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T18:31:13", "message_id": "338ed950-02b4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T18:21:13", "message_id": "cddfe168-02b2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T18:11:13", "message_id": "6830b3fc-02b1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T18:01:13", "message_id": "0280acd4-02b0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T17:51:13", "message_id": "9cd59d82-02ae-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T17:41:12", "message_id": "372389fa-02ad-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T17:31:12", "message_id": "d17b288e-02ab-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T17:21:12", "message_id": "6bc902fa-02aa-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T17:11:12", "message_id": "0616fdfa-02a9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T17:01:12", "message_id": "a07713b4-02a7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T16:51:12", "message_id": "3ac7276c-02a6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T16:41:12", "message_id": "d52664c8-02a4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T16:31:12", "message_id": "6f6f51f4-02a3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T16:21:12", "message_id": "09b76c58-02a2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T16:11:12", "message_id": "a40da350-02a0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T16:01:12", "message_id": "3e69179c-029f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T15:51:12", "message_id": "d8b80422-029d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T15:41:12", "message_id": "73166e70-029c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T15:31:11", "message_id": "0d70d2c8-029b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T15:21:11", "message_id": "a7d010ce-0299-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T15:11:11", "message_id": "421dfbf2-0298-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T15:01:11", "message_id": "dc6c34f0-0296-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T14:51:11", "message_id": "76b6e93a-0295-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T14:41:11", "message_id": "1108d11c-0294-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T14:31:11", "message_id": "ab587fa8-0292-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T14:21:11", "message_id": "45ab17ca-0291-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T14:11:11", "message_id": "dff9230a-028f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T14:01:11", "message_id": "7a53dbd6-028e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T13:51:11", "message_id": "14a86564-028d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T13:41:11", "message_id": "aefaf7d2-028b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T13:31:10", "message_id": "494c9824-028a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T13:21:10", "message_id": "e397ab46-0288-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T13:11:10", "message_id": "7df0b28e-0287-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T13:01:10", "message_id": "1848f6c2-0286-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T12:51:10", "message_id": "b2932be6-0284-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T12:41:10", "message_id": "4ce8f77c-0283-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T12:31:10", "message_id": "e735ed00-0281-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T12:21:10", "message_id": "81811008-0280-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T12:11:10", "message_id": "1bd4798a-027f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T12:01:10", "message_id": "b621f078-027d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T11:51:10", "message_id": "507a8ea2-027c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T11:41:09", "message_id": "eac04fee-027a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T11:31:09", "message_id": "851518ce-0279-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T11:21:09", "message_id": "1f659266-0278-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T11:11:09", "message_id": "b9b7b27e-0276-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T11:01:09", "message_id": "5408150a-0275-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T10:51:09", "message_id": "ee5660b4-0273-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T10:41:09", "message_id": "88acaac6-0272-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T10:31:09", "message_id": "23038b1e-0271-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T10:21:09", "message_id": "bd4a7108-026f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T10:11:09", "message_id": "57ad5532-026e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T10:01:09", "message_id": "f1f93edc-026c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T09:51:08", "message_id": "8c49e484-026b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T09:41:08", "message_id": "2697fc30-026a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T09:31:08", "message_id": "c0ef7012-0268-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T09:21:08", "message_id": "5b3fb26e-0267-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T09:11:08", "message_id": "f59793f6-0265-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T09:01:08", "message_id": "8fe7e9da-0264-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T08:51:08", "message_id": "2a44a2cc-0263-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T08:41:08", "message_id": "c497e034-0261-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T08:31:08", "message_id": "5eeded38-0260-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T08:21:08", "message_id": "f93244ae-025e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T08:11:08", "message_id": "9385fdcc-025d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T08:01:08", "message_id": "2ddd2abe-025c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T07:51:07", "message_id": "c8266db2-025a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T07:41:07", "message_id": "6282d97e-0259-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T07:31:07", "message_id": "fccf456e-0257-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T07:21:07", "message_id": "9724f94e-0256-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T07:11:07", "message_id": "316605ea-0255-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T07:01:07", "message_id": "cbca834c-0253-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T06:51:07", "message_id": "661777b8-0252-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T06:41:07", "message_id": "0065c3ee-0251-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T06:31:07", "message_id": "9ab61554-024f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T06:21:07", "message_id": "351615e2-024e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T06:11:07", "message_id": "cf5f6bd2-024c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T06:01:07", "message_id": "69c89bc8-024b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T05:51:07", "message_id": "040d9528-024a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T05:41:06", "message_id": "9e5c5260-0248-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T05:31:06", "message_id": "38a5bf70-0247-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T05:21:06", "message_id": "d2f7f6bc-0245-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T05:11:06", "message_id": "6d4062b0-0244-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T05:01:06", "message_id": "07985ca2-0243-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T04:51:06", "message_id": "a1f01378-0241-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T04:41:06", "message_id": "3c3d5190-0240-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T04:31:06", "message_id": "d691b634-023e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T04:21:06", "message_id": "70fb3788-023d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T04:11:06", "message_id": "0b31b9aa-023c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T04:01:05", "message_id": "a5892396-023a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T03:51:05", "message_id": "3fdc2ad0-0239-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T03:41:05", "message_id": "da455a3a-0237-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T03:31:05", "message_id": "7478706c-0236-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T03:21:05", "message_id": "0ecad440-0235-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T03:11:05", "message_id": "a9199d8a-0233-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T03:01:05", "message_id": "43688cfe-0232-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T02:51:05", "message_id": "ddb6f2f2-0230-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T02:41:05", "message_id": "77f7b042-022f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T02:31:05", "message_id": "12568e26-022e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T02:21:04", "message_id": "aca62f6a-022c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T02:11:04", "message_id": "46f6d904-022b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T02:01:04", "message_id": "e1538ada-0229-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T01:51:04", "message_id": "7b9b732a-0228-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T01:41:04", "message_id": "16000752-0227-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T01:31:04", "message_id": "b04e1cba-0225-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T01:21:04", "message_id": "4a86903e-0224-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T01:11:04", "message_id": "e4d86b5a-0222-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T01:01:04", "message_id": "7f34a922-0221-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T00:51:04", "message_id": "197d73c6-0220-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T00:41:04", "message_id": "b3cef2a8-021e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T00:31:03", "message_id": "4e1e5986-021d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T00:21:03", "message_id": "e86f213e-021b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T00:11:03", "message_id": "82bda8f2-021a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T00:01:03", "message_id": "1d1475fe-0219-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T23:51:03", "message_id": "b7666eac-0217-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T23:41:03", "message_id": "51b568ac-0216-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T23:31:03", "message_id": "ec0c8ffe-0214-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T23:21:03", "message_id": "866467d6-0213-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T23:11:03", "message_id": "20aa3cf0-0212-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T23:01:03", "message_id": "bb56b91a-0210-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T22:51:03", "message_id": "5562be0c-020f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T22:41:08", "message_id": "f2c27130-020d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T22:31:03", "message_id": "8a0fe48e-020c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T22:21:02", "message_id": "2457cc16-020b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T22:11:02", "message_id": "bebd9224-0209-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T22:01:02", "message_id": "58fdccfc-0208-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T21:51:02", "message_id": "f366f0a4-0206-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T21:41:02", "message_id": "8dae8cf0-0205-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T21:31:02", "message_id": "27f93104-0204-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T21:21:02", "message_id": "c26cba0a-0202-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T21:11:02", "message_id": "5ca5efc6-0201-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T21:01:02", "message_id": "f6e482e8-01ff-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T20:51:02", "message_id": "9197de04-01fe-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T20:41:02", "message_id": "2b9ad15c-01fd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T20:31:02", "message_id": "c61cb5f8-01fb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T20:21:01", "message_id": "603809dc-01fa-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T20:11:01", "message_id": "fa7fe4da-01f8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T20:01:01", "message_id": "94d314f0-01f7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T19:51:01", "message_id": "2f27aefa-01f6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T19:41:01", "message_id": "c97a9924-01f4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T19:31:01", "message_id": "63d2a1c6-01f3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T19:21:01", "message_id": "fe0a2360-01f1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T19:11:01", "message_id": "986c1532-01f0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T19:01:01", "message_id": "32bce3f2-01ef-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T18:51:00", "message_id": "ccfc080a-01ed-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T18:41:00", "message_id": "6762744e-01ec-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T18:31:00", "message_id": "01ae536c-01eb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T18:21:00", "message_id": "9bfcad94-01e9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T18:11:00", "message_id": "36479cee-01e8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T18:01:00", "message_id": "d0980c04-01e6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T17:51:00", "message_id": "6af2b742-01e5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T17:41:00", "message_id": "05473c7a-01e4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T17:31:00", "message_id": "9f929bc8-01e2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T17:21:00", "message_id": "39e5b57c-01e1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T17:11:00", "message_id": "d43044fa-01df-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T17:00:59", "message_id": "6e82333a-01de-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T16:50:59", "message_id": "08d7463e-01dd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T16:40:59", "message_id": "a32465d4-01db-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T16:30:59", "message_id": "3d7a1680-01da-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T16:20:59", "message_id": "d7c32d5a-01d8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T16:10:59", "message_id": "721e9378-01d7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T16:00:59", "message_id": "0c758b4a-01d6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T15:50:59", "message_id": "a6c54728-01d4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T15:40:59", "message_id": "41264210-01d3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T15:30:59", "message_id": "db73ceb6-01d1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T15:20:59", "message_id": "75cc9652-01d0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T15:10:59", "message_id": "101b642e-01cf-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T15:00:58", "message_id": "aa65c76a-01cd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T14:50:58", "message_id": "44be0996-01cc-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T14:40:58", "message_id": "df052fe0-01ca-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T14:30:58", "message_id": "794d2d8e-01c9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T14:20:58", "message_id": "139eaec8-01c8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T14:10:58", "message_id": "adf892ba-01c6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T14:00:58", "message_id": "484a434c-01c5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T13:50:58", "message_id": "e29e505c-01c3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T13:40:58", "message_id": "7ce7c352-01c2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T13:30:58", "message_id": "17462a8a-01c1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T13:20:58", "message_id": "b18c9004-01bf-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T13:10:57", "message_id": "4bde53ec-01be-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T13:00:57", "message_id": "e6310d92-01bc-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T12:50:57", "message_id": "807fdbfa-01bb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T12:40:57", "message_id": "1ad49558-01ba-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T12:30:57", "message_id": "b52c8586-01b8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T12:20:57", "message_id": "4f82b12a-01b7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T12:10:57", "message_id": "e9d9b73e-01b5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T12:00:57", "message_id": "842115f0-01b4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T11:50:57", "message_id": "1e785cb4-01b3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T11:40:57", "message_id": "b8d29240-01b1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T11:30:57", "message_id": "531efa66-01b0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T11:20:57", "message_id": "ed72c7ac-01ae-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T11:10:57", "message_id": "87ca4282-01ad-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T11:00:56", "message_id": "2205d7be-01ac-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T10:50:57", "message_id": "bc8a434e-01aa-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T10:40:56", "message_id": "56b66936-01a9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T10:30:56", "message_id": "f11486cc-01a7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T10:20:56", "message_id": "8b58fff8-01a6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T10:10:56", "message_id": "25c8c520-01a5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T10:00:56", "message_id": "c00554ca-01a3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T09:50:56", "message_id": "5a4a0dca-01a2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T09:40:56", "message_id": "f4a6e69c-01a0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T09:30:56", "message_id": "8f129e44-019f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T09:20:56", "message_id": "29477aea-019e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T09:10:55", "message_id": "c39fe00c-019c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T09:00:56", "message_id": "5e09dc76-019b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T08:50:55", "message_id": "f8416c02-0199-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T08:40:55", "message_id": "92a067b4-0198-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T08:30:55", "message_id": "2cd47c8c-0197-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T08:20:55", "message_id": "c733f0ac-0195-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T08:10:55", "message_id": "6174b568-0194-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T08:00:55", "message_id": "fbc982a8-0192-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T07:50:55", "message_id": "962c29b0-0191-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T07:40:55", "message_id": "30811d06-0190-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T07:30:55", "message_id": "cacbf090-018e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T07:20:54", "message_id": "6521d094-018d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T07:10:54", "message_id": "ff747734-018b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T07:00:54", "message_id": "99c21d2a-018a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T06:50:54", "message_id": "3417fe6e-0189-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T06:40:54", "message_id": "ce6ac214-0187-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T06:30:54", "message_id": "68bdf892-0186-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T06:20:54", "message_id": "03134cfa-0185-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T06:10:54", "message_id": "9d5930ce-0183-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T06:00:54", "message_id": "37a150f0-0182-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T05:50:54", "message_id": "d203e272-0180-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T05:40:54", "message_id": "6c505dd0-017f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T05:30:53", "message_id": "0696b8be-017e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T05:20:53", "message_id": "a0ee126a-017c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T05:10:53", "message_id": "3b453c3c-017b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T05:00:53", "message_id": "d59c91ec-0179-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T04:50:53", "message_id": "6fe258f6-0178-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T04:40:53", "message_id": "0a2bf69e-0177-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T04:30:53", "message_id": "a4816fb4-0175-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T04:20:53", "message_id": "3ed14348-0174-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T04:10:53", "message_id": "d923e8f8-0172-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T04:00:53", "message_id": "737f0f60-0171-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T03:50:53", "message_id": "0dd14328-0170-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T03:40:53", "message_id": "a82482de-016e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T03:30:52", "message_id": "42799b5a-016d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T03:20:52", "message_id": "dcc56290-016b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T03:10:52", "message_id": "77178974-016a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T03:00:52", "message_id": "1169b328-0169-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T02:50:52", "message_id": "abbe3d60-0167-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T02:40:52", "message_id": "46077578-0166-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T02:30:52", "message_id": "e0589a28-0164-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T02:20:52", "message_id": "7abcc19a-0163-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T02:10:52", "message_id": "150ea83c-0162-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T02:00:52", "message_id": "af58d87e-0160-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T01:50:52", "message_id": "49d19a46-015f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T01:40:52", "message_id": "e4159776-015d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T01:30:52", "message_id": "7e7801d4-015c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T01:20:52", "message_id": "18cb4496-015b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T01:10:51", "message_id": "b30ccaf4-0159-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T01:00:51", "message_id": "4d686d12-0158-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T00:50:51", "message_id": "e796714c-0156-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T00:40:51", "message_id": "81ecc464-0155-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T00:30:51", "message_id": "1c3d9ea0-0154-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T00:20:51", "message_id": "b6802e6c-0152-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T00:10:51", "message_id": "50dd22aa-0151-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T00:00:51", "message_id": "eb2b8434-014f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T23:50:50", "message_id": "857e992e-014e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T23:40:50", "message_id": "1fc8edb0-014d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T23:30:50", "message_id": "ba0fb81a-014b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T23:20:50", "message_id": "5472a9f0-014a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T23:10:50", "message_id": "eebbe168-0148-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T23:00:50", "message_id": "894d13e8-0147-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T22:50:50", "message_id": "23616774-0146-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T22:40:50", "message_id": "bdaafa9a-0144-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T22:30:50", "message_id": "57ffb0f6-0143-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T22:20:50", "message_id": "f263eb46-0141-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T22:10:50", "message_id": "8c9f69da-0140-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T22:00:50", "message_id": "26fe75a4-013f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T21:50:49", "message_id": "c15202c6-013d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T21:40:49", "message_id": "5baae2cc-013c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T21:30:49", "message_id": "f601d7e2-013a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T21:20:49", "message_id": "904b961e-0139-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T21:10:49", "message_id": "2aa71d8e-0138-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T21:00:49", "message_id": "c4fe64e8-0136-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T20:50:49", "message_id": "5f4c6c54-0135-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T20:40:49", "message_id": "f9a216e8-0133-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T20:30:49", "message_id": "93e7527e-0132-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T20:20:49", "message_id": "2e5aebc4-0131-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T20:10:49", "message_id": "c8958cf0-012f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T20:00:49", "message_id": "62e6a926-012e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T19:50:49", "message_id": "fd43a17e-012c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T19:40:48", "message_id": "97855a90-012b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T19:30:48", "message_id": "31dd43ac-012a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T19:20:48", "message_id": "cc3f5b94-0128-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T19:10:48", "message_id": "66844306-0127-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T19:00:48", "message_id": "00d0a794-0126-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T18:50:48", "message_id": "9b1b35f0-0124-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T18:40:48", "message_id": "356fe6f2-0123-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T18:30:48", "message_id": "cfb977c0-0121-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T18:20:48", "message_id": "6a0b0142-0120-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T18:10:47", "message_id": "04585f94-011f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T18:00:47", "message_id": "9ea05c0c-011d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T17:50:47", "message_id": "38fa92d8-011c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T17:40:47", "message_id": "d3474180-011a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T17:30:47", "message_id": "6d95e8c4-0119-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T17:20:47", "message_id": "07ef96a6-0118-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T17:10:47", "message_id": "a23ce54e-0116-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T17:00:47", "message_id": "3c90ccca-0115-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T16:50:47", "message_id": "d6dbf324-0113-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T16:40:47", "message_id": "712b898c-0112-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T16:30:47", "message_id": "0b8c8c8a-0111-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T16:20:46", "message_id": "a5d2f880-010f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T16:10:46", "message_id": "402b5b72-010e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T16:00:46", "message_id": "da7a5f0e-010c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T15:50:49", "message_id": "76515538-010b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T15:40:47", "message_id": "0f7adb14-010a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T15:30:46", "message_id": "a9955b4a-0108-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T15:20:46", "message_id": "43cac8a0-0107-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T15:10:46", "message_id": "de328a7e-0105-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T15:00:46", "message_id": "78711788-0104-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T14:50:46", "message_id": "12cccd60-0103-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T14:40:46", "message_id": "ad18643a-0101-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T14:30:46", "message_id": "47617c54-0100-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T14:20:46", "message_id": "e1bf5a84-00fe-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T14:10:46", "message_id": "7c46b2b6-00fd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T14:00:45", "message_id": "164e87f0-00fc-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T13:50:45", "message_id": "b0aefbce-00fa-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T13:40:45", "message_id": "4af8c7d4-00f9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T13:30:45", "message_id": "e549713c-00f7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T13:20:46", "message_id": "7ffe8660-00f6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T13:10:45", "message_id": "19de7a4e-00f5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T13:00:45", "message_id": "b43bdfa2-00f3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T12:50:45", "message_id": "4e82c104-00f2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T12:40:45", "message_id": "e8dc6162-00f0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T12:30:44", "message_id": "833309de-00ef-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T12:20:44", "message_id": "1d7cabd2-00ee-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T12:10:44", "message_id": "b7cddb90-00ec-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T12:00:44", "message_id": "52210228-00eb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T11:50:44", "message_id": "ec7a2680-00e9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T11:40:44", "message_id": "86c2ec74-00e8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T11:30:44", "message_id": "211c3ec6-00e7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T11:20:44", "message_id": "bb6b6e86-00e5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T11:10:44", "message_id": "55c2fa46-00e4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T11:00:44", "message_id": "f00b217a-00e2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T10:50:44", "message_id": "8a5cc92e-00e1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T10:40:43", "message_id": "24ac86ba-00e0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T10:30:43", "message_id": "bf031cc6-00de-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T10:20:43", "message_id": "594fc948-00dd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T10:10:43", "message_id": "f3a38158-00db-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T10:00:43", "message_id": "8e057622-00da-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T09:50:43", "message_id": "28436c46-00d9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T09:40:43", "message_id": "c29e4b50-00d7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T09:30:43", "message_id": "5cee6e1c-00d6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T09:20:43", "message_id": "f741607a-00d4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T09:10:43", "message_id": "919ab36c-00d3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T09:00:43", "message_id": "2be6f64e-00d2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T08:50:42", "message_id": "c630ddb6-00d0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T08:40:42", "message_id": "608c05ea-00cf-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T08:30:42", "message_id": "fadf9294-00cd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T08:20:42", "message_id": "95306b90-00cc-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T08:10:42", "message_id": "2f7ba310-00cb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T08:00:42", "message_id": "c9cb197a-00c9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T07:50:42", "message_id": "641c654e-00c8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T07:40:42", "message_id": "fe98c0f6-00c6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T07:30:42", "message_id": "98c9dd38-00c5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T07:20:42", "message_id": "330c00d0-00c4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T07:10:42", "message_id": "cd5f73ee-00c2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T07:00:41", "message_id": "67b4c78e-00c1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T06:50:41", "message_id": "01ffe776-00c0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T06:40:41", "message_id": "9c550f88-00be-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T06:30:41", "message_id": "36a7f818-00bd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T06:20:41", "message_id": "d0f39b4a-00bb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T06:10:41", "message_id": "6b4a0028-00ba-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T06:00:41", "message_id": "05a4f224-00b9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T05:50:41", "message_id": "9ff0f686-00b7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T05:40:41", "message_id": "3a4996e0-00b6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T05:30:41", "message_id": "d4954462-00b4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T05:20:41", "message_id": "6ee63398-00b3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T05:10:41", "message_id": "0939f5d0-00b2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T05:00:40", "message_id": "a38e8152-00b0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T04:50:40", "message_id": "3df47eba-00af-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T04:40:40", "message_id": "d84b8708-00ad-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T04:30:40", "message_id": "72993aaa-00ac-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T04:20:40", "message_id": "0cfa9c1c-00ab-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T04:10:40", "message_id": "a7540322-00a9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T04:00:40", "message_id": "41c95d3c-00a8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T03:50:41", "message_id": "dc453978-00a6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T03:40:40", "message_id": "7658471e-00a5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T03:30:40", "message_id": "10ddcf22-00a4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T03:20:40", "message_id": "ab06d32a-00a2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T03:10:40", "message_id": "456242ee-00a1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T03:00:40", "message_id": "dfb61110-009f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T02:50:40", "message_id": "79fa380c-009e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T02:40:40", "message_id": "14835bc6-009d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T02:30:40", "message_id": "aea0e112-009b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T02:20:40", "message_id": "48f65c3a-009a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T02:10:39", "message_id": "e34a71e2-0098-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T02:00:39", "message_id": "7d9d37d6-0097-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T01:50:39", "message_id": "17da28e2-0096-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T01:40:39", "message_id": "b22a9bd6-0094-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T01:30:39", "message_id": "4c7cdd68-0093-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T01:20:39", "message_id": "e6d98a34-0091-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T01:10:39", "message_id": "811d678e-0090-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T01:00:39", "message_id": "1b7bec8a-008f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T00:50:39", "message_id": "b5c2b10e-008d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T00:40:38", "message_id": "500d79c6-008c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T00:30:38", "message_id": "ea6e2a8a-008a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T00:20:38", "message_id": "84c23f74-0089-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T00:10:38", "message_id": "1f0f6cc0-0088-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T00:00:38", "message_id": "b9603860-0086-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T23:50:38", "message_id": "53aac8c4-0085-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T23:40:38", "message_id": "ee0b898c-0083-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T23:30:38", "message_id": "8851c4ea-0082-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T23:20:38", "message_id": "229b6d82-0081-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T23:10:38", "message_id": "bcf8626a-007f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T23:00:38", "message_id": "578057ae-007e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T22:50:38", "message_id": "f192df9e-007c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T22:40:37", "message_id": "8bec20ac-007b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T22:30:37", "message_id": "262b14ae-007a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T22:20:37", "message_id": "c087cef4-0078-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T22:10:37", "message_id": "5ad853d6-0077-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T22:00:37", "message_id": "f5285032-0075-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T21:50:37", "message_id": "8f861404-0074-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T21:40:37", "message_id": "29ce1338-0073-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T21:30:37", "message_id": "c4241524-0071-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T21:20:37", "message_id": "5e848cf4-0070-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T21:10:37", "message_id": "f8c9d866-006e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T21:00:37", "message_id": "9312671e-006d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T20:50:36", "message_id": "2d5f833a-006c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T20:40:36", "message_id": "c7b1d25a-006a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T20:30:36", "message_id": "620ac2f0-0069-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T20:20:36", "message_id": "fc4f6dae-0067-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T20:10:36", "message_id": "96accf7e-0066-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T20:00:36", "message_id": "30f850be-0065-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T19:50:36", "message_id": "cb501f04-0063-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T19:40:36", "message_id": "659afd56-0062-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T19:30:36", "message_id": "ffee0c38-0060-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T19:20:36", "message_id": "9a39e84a-005f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T19:10:35", "message_id": "348e9ec4-005e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T19:00:35", "message_id": "cee26a5c-005c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T18:50:35", "message_id": "6932c0c2-005b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T18:40:35", "message_id": "037e65b6-005a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T18:30:35", "message_id": "9ddeb7e8-0058-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T18:20:35", "message_id": "381e54dc-0057-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T18:10:35", "message_id": "d27c87d0-0055-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T18:00:35", "message_id": "6cce2958-0054-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T17:50:35", "message_id": "0720585c-0053-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T17:40:35", "message_id": "a17a306e-0051-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T17:30:35", "message_id": "3bce3be4-0050-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T17:20:35", "message_id": "d61cf232-004e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T17:10:34", "message_id": "706ccb66-004d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T17:00:34", "message_id": "0abab8ce-004c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T16:50:34", "message_id": "a50ec9b2-004a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T16:40:34", "message_id": "3f683dba-0049-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T16:30:34", "message_id": "d9bb7fbe-0047-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T16:20:34", "message_id": "740ff5c4-0046-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T16:10:34", "message_id": "0e5c087c-0045-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T16:00:34", "message_id": "a8b7933e-0043-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T15:50:34", "message_id": "4305c8a4-0042-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T15:40:34", "message_id": "dd52a294-0040-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T15:30:34", "message_id": "77a81722-003f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T15:20:34", "message_id": "11fdc74c-003e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T15:10:34", "message_id": "ac4da06c-003c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T15:00:33", "message_id": "4697d748-003b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T14:50:33", "message_id": "e0f093ea-0039-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T14:40:33", "message_id": "7b3a369c-0038-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T14:30:33", "message_id": "1594a5b2-0037-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T14:20:33", "message_id": "afe05834-0035-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T14:10:33", "message_id": "4a426e50-0034-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T14:00:33", "message_id": "e4c38510-0032-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T13:50:33", "message_id": "7ed595e6-0031-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T13:40:33", "message_id": "1933ced4-0030-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T13:30:33", "message_id": "b3815ec2-002e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T13:20:33", "message_id": "4ddd997e-002d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T13:10:32", "message_id": "e8299fc0-002b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T13:00:32", "message_id": "827770ea-002a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T12:50:32", "message_id": "1ccba69a-0029-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T12:40:32", "message_id": "b711b778-0027-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T12:30:32", "message_id": "516b51fa-0026-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T12:20:32", "message_id": "ebb4ed54-0024-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T12:10:32", "message_id": "85ff3f88-0023-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T12:00:32", "message_id": "205bbf36-0022-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T11:50:32", "message_id": "baa7dd7e-0020-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T11:40:32", "message_id": "550f88f0-001f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T11:30:32", "message_id": "ef64af90-001d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T11:20:31", "message_id": "89a7bcb6-001c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T11:10:32", "message_id": "2418a5be-001b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T11:00:31", "message_id": "be56add0-0019-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T10:50:31", "message_id": "58a8fb24-0018-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T10:40:31", "message_id": "f304dadc-0016-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T10:30:31", "message_id": "8d729a8e-0015-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T10:20:31", "message_id": "27bd4b18-0014-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T10:10:31", "message_id": "c2230ed8-0012-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T10:00:31", "message_id": "5c46cc68-0011-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T09:50:31", "message_id": "f696a6fa-000f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T09:40:31", "message_id": "90dfb4d8-000e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T09:30:31", "message_id": "2b431954-000d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T09:20:30", "message_id": "c5865b22-000b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T09:10:30", "message_id": "5fd53aba-000a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T09:00:30", "message_id": "fa3016f4-0008-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T08:50:30", "message_id": "947e0c5e-0007-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T08:40:30", "message_id": "2ed6b6cc-0006-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T08:30:30", "message_id": "c92c8b18-0004-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T08:20:30", "message_id": "637977e6-0003-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T08:10:30", "message_id": "fdd8b4fc-0001-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T08:00:30", "message_id": "981e2dfa-0000-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T07:50:30", "message_id": "326db2ce-ffff-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T07:40:30", "message_id": "ccbdf124-fffd-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T07:30:30", "message_id": "670d1c48-fffc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T07:20:29", "message_id": "0167b7b4-fffb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T07:10:29", "message_id": "9bae951a-fff9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T07:00:29", "message_id": "35f9bf7a-fff8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T06:50:29", "message_id": "d05cf3b8-fff6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T06:40:29", "message_id": "6aa4201a-fff5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T06:30:29", "message_id": "04f1c994-fff4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T06:20:29", "message_id": "9f45bf20-fff2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T06:10:29", "message_id": "3995cc16-fff1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T06:00:29", "message_id": "d3ee4e16-ffef-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T05:50:29", "message_id": "6e47c5a2-ffee-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T05:40:29", "message_id": "08a0180e-ffed-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T05:30:29", "message_id": "a2e89514-ffeb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T05:20:28", "message_id": "3d302abc-ffea-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T05:10:28", "message_id": "d785ad5a-ffe8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T05:00:28", "message_id": "71da6316-ffe7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T04:50:28", "message_id": "0c1df9ee-ffe6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T04:40:28", "message_id": "a6804692-ffe4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T04:30:28", "message_id": "40c3fdb8-ffe3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T04:20:28", "message_id": "db1d83ea-ffe1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T04:10:28", "message_id": "756f359e-ffe0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T04:00:28", "message_id": "0fb746fc-ffdf-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T03:50:28", "message_id": "aa0dd4d4-ffdd-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T03:40:27", "message_id": "445b02ac-ffdc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T03:30:27", "message_id": "deac8904-ffda-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T03:20:27", "message_id": "78fc81e6-ffd9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T03:10:27", "message_id": "1351bfa6-ffd8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T03:00:27", "message_id": "ada36066-ffd6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T02:50:27", "message_id": "47ee8698-ffd5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T02:40:27", "message_id": "e23d03c0-ffd3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T02:30:27", "message_id": "7c9768ae-ffd2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T02:20:27", "message_id": "17020d56-ffd1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T02:10:27", "message_id": "b12c3f84-ffcf-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T02:00:27", "message_id": "4b86fee0-ffce-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T01:50:26", "message_id": "e5d16528-ffcc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T01:40:26", "message_id": "8022d97e-ffcb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T01:30:26", "message_id": "1a751f02-ffca-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T01:20:26", "message_id": "b4cc262e-ffc8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T01:10:26", "message_id": "4f221a14-ffc7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T01:00:26", "message_id": "e96f7e1a-ffc5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T00:50:26", "message_id": "83c5773c-ffc4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T00:40:26", "message_id": "1e18f4dc-ffc3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T00:30:26", "message_id": "b867a8be-ffc1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T00:20:26", "message_id": "53134eba-ffc0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T00:10:26", "message_id": "ed0761a2-ffbe-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T00:00:26", "message_id": "87833a8c-ffbd-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T23:50:25", "message_id": "21b3a530-ffbc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T23:40:25", "message_id": "bc093d4a-ffba-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T23:30:25", "message_id": "5662ad7e-ffb9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T23:20:25", "message_id": "f0cf0d78-ffb7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T23:10:25", "message_id": "8b1fb2f8-ffb6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T23:00:25", "message_id": "2597dc54-ffb5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T22:50:25", "message_id": "bf924792-ffb3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T22:40:25", "message_id": "59f027ca-ffb2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T22:30:25", "message_id": "f4404faa-ffb0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T22:20:24", "message_id": "8e7ffbee-ffaf-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T22:10:25", "message_id": "28e51a4a-ffae-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T22:00:24", "message_id": "c32b3302-ffac-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T21:50:24", "message_id": "5d6dd5f2-ffab-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T21:40:24", "message_id": "f7c80688-ffa9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T21:30:24", "message_id": "9220c334-ffa8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T21:20:24", "message_id": "2c6873f8-ffa7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T21:10:24", "message_id": "c6ac356e-ffa5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T21:00:24", "message_id": "6106bbae-ffa4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T20:50:24", "message_id": "fb58020a-ffa2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T20:40:23", "message_id": "95a39f38-ffa1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T20:30:23", "message_id": "2ff9779e-ffa0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T20:20:23", "message_id": "ca4b6048-ff9e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T20:10:23", "message_id": "6490a994-ff9d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T20:00:23", "message_id": "fee994e4-ff9b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T19:50:23", "message_id": "99331f22-ff9a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T19:40:23", "message_id": "338d0e4a-ff99-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T19:30:23", "message_id": "cdde26fc-ff97-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T19:20:23", "message_id": "68341e16-ff96-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T19:10:23", "message_id": "0282b448-ff95-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T19:00:23", "message_id": "9cccf934-ff93-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T18:50:23", "message_id": "372570a8-ff92-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T18:40:22", "message_id": "d178786e-ff90-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T18:30:22", "message_id": "6bb7dbc4-ff8f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T18:20:22", "message_id": "06081452-ff8e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T18:10:22", "message_id": "a05d49d4-ff8c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T18:00:22", "message_id": "3ab186c8-ff8b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T17:50:22", "message_id": "d5014fbc-ff89-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T17:40:22", "message_id": "6f598da6-ff88-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T17:30:22", "message_id": "09a892f0-ff87-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T17:20:22", "message_id": "a3f4e1f8-ff85-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T17:10:22", "message_id": "3e4cfdc8-ff84-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T17:00:21", "message_id": "d891ffe8-ff82-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T16:50:21", "message_id": "72da640c-ff81-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T16:40:21", "message_id": "0d30fd42-ff80-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T16:30:21", "message_id": "a78da964-ff7e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T16:20:21", "message_id": "41d1dace-ff7d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T16:10:21", "message_id": "dc2b4684-ff7b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T16:00:21", "message_id": "767cc85e-ff7a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T15:50:21", "message_id": "10d09248-ff79-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T15:40:21", "message_id": "ab1c816a-ff77-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T15:30:21", "message_id": "456896a2-ff76-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T15:20:20", "message_id": "dfbdd494-ff74-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T15:10:20", "message_id": "7a0a0fb0-ff73-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T15:00:20", "message_id": "145a1fb2-ff72-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T14:50:20", "message_id": "aeac82be-ff70-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T14:40:20", "message_id": "48fb5946-ff6f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T14:30:20", "message_id": "e361f92e-ff6d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T14:20:20", "message_id": "7db10e54-ff6c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T14:10:20", "message_id": "1800b61e-ff6b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T14:00:20", "message_id": "b25102fc-ff69-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T13:50:20", "message_id": "4c9e75e4-ff68-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T13:40:20", "message_id": "e7061c60-ff66-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T13:30:20", "message_id": "814c6470-ff65-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T13:20:19", "message_id": "1b9da090-ff64-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T13:10:19", "message_id": "b5f4d750-ff62-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T13:00:19", "message_id": "504f8a54-ff61-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T12:50:19", "message_id": "eaa6170a-ff5f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T12:40:19", "message_id": "84efbb10-ff5e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T12:30:19", "message_id": "1f4632f4-ff5d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T12:20:19", "message_id": "b99ba4e4-ff5b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T12:10:19", "message_id": "53e12cf6-ff5a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T12:00:19", "message_id": "ee2f181a-ff58-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T11:50:19", "message_id": "8887cdf0-ff57-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T11:40:19", "message_id": "22dd3f54-ff56-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T11:30:19", "message_id": "bd2d3f70-ff54-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T11:20:18", "message_id": "577c82c2-ff53-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T11:10:19", "message_id": "f1ea3c20-ff51-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T11:00:18", "message_id": "8c33c5d2-ff50-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T10:50:18", "message_id": "2684d9fc-ff4f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T10:40:18", "message_id": "c0e09506-ff4d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T10:30:18", "message_id": "5b298c32-ff4c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T10:20:18", "message_id": "f57be2fa-ff4a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T10:10:18", "message_id": "8fd9f564-ff49-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T10:00:18", "message_id": "2a3541a6-ff48-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T09:50:18", "message_id": "c474e19c-ff46-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T09:40:18", "message_id": "5ece6cec-ff45-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T09:30:18", "message_id": "f90d9866-ff43-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T09:20:18", "message_id": "93672258-ff42-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T09:10:17", "message_id": "2db83dbc-ff41-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T09:00:17", "message_id": "c7fbe7cc-ff3f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T08:50:17", "message_id": "6250427a-ff3e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T08:40:17", "message_id": "fca680f2-ff3c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T08:30:17", "message_id": "96f49e5c-ff3b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T08:20:17", "message_id": "3137c0c2-ff3a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T08:10:17", "message_id": "cb886d86-ff38-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T08:00:17", "message_id": "65d79f1c-ff37-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T07:50:17", "message_id": "002915ac-ff36-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T07:40:16", "message_id": "9a76199a-ff34-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T07:30:16", "message_id": "34d27580-ff33-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T07:20:16", "message_id": "cf1926ae-ff31-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T07:10:16", "message_id": "696838dc-ff30-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T07:00:16", "message_id": "03c2ccf0-ff2f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T06:50:16", "message_id": "9e152304-ff2d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T06:40:16", "message_id": "386534b4-ff2c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T06:30:16", "message_id": "d2ac0464-ff2a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T06:20:16", "message_id": "6d0e2f7a-ff29-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T06:10:16", "message_id": "076b7e44-ff28-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T06:00:16", "message_id": "a1ab2bf0-ff26-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T05:50:16", "message_id": "3c07fcca-ff25-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T05:40:15", "message_id": "d6496050-ff23-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T05:30:16", "message_id": "70c30e30-ff22-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T05:20:15", "message_id": "0af690aa-ff21-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T05:10:15", "message_id": "a53c7672-ff1f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T05:00:15", "message_id": "3fa34620-ff1e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T04:50:15", "message_id": "d9e63262-ff1c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T04:40:15", "message_id": "743f2442-ff1b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T04:30:15", "message_id": "0e9e2eb8-ff1a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T04:20:15", "message_id": "a8de36dc-ff18-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T04:10:15", "message_id": "433ab428-ff17-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T04:00:15", "message_id": "dd89c91c-ff15-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T03:50:15", "message_id": "77f29594-ff14-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T03:40:14", "message_id": "12320132-ff13-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T03:30:14", "message_id": "ac7953be-ff11-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T03:20:14", "message_id": "46cffbc2-ff10-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T03:10:14", "message_id": "e135205e-ff0e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T03:00:14", "message_id": "7b7393b4-ff0d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T02:50:14", "message_id": "15dfc988-ff0c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T02:40:14", "message_id": "b02a4f60-ff0a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T02:30:14", "message_id": "4a7dd5d4-ff09-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T02:20:14", "message_id": "e4c48068-ff07-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T02:10:14", "message_id": "7f14b5fe-ff06-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T02:00:14", "message_id": "19628eda-ff05-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T01:50:14", "message_id": "b3c31514-ff03-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T01:40:13", "message_id": "4e072f86-ff02-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T01:30:13", "message_id": "e86047b8-ff00-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T01:20:13", "message_id": "82b23bac-feff-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T01:10:13", "message_id": "1d0a31a2-fefe-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T01:00:13", "message_id": "b74dc370-fefc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T00:50:13", "message_id": "51aa2e42-fefb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T00:40:13", "message_id": "ec0028a4-fef9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T00:30:13", "message_id": "86411efc-fef8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T00:20:13", "message_id": "2092eb40-fef7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T00:10:13", "message_id": "bae5c0e8-fef5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T00:00:12", "message_id": "552ddbe2-fef4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T23:50:12", "message_id": "ef9125ce-fef2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T23:40:12", "message_id": "89e16f6e-fef1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T23:30:12", "message_id": "243758a0-fef0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T23:20:12", "message_id": "be99ebb2-feee-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T23:10:12", "message_id": "58d0a998-feed-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T23:00:12", "message_id": "f36eb65e-feeb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T22:50:12", "message_id": "8d7a8842-feea-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T22:40:12", "message_id": "27cf00aa-fee9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T22:30:12", "message_id": "c22188be-fee7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T22:20:12", "message_id": "5c6b5da2-fee6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T22:10:12", "message_id": "f6d35e64-fee4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T22:00:12", "message_id": "913c749c-fee3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T21:50:11", "message_id": "2b6af522-fee2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T21:40:12", "message_id": "c5e49e02-fee0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T21:30:11", "message_id": "6019b388-fedf-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T21:20:11", "message_id": "fa6c9f42-fedd-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T21:10:11", "message_id": "94b58e6c-fedc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T21:00:11", "message_id": "2efbfe54-fedb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T20:50:11", "message_id": "c95866ec-fed9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T20:40:11", "message_id": "63b7cd06-fed8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T20:30:11", "message_id": "fe02ffcc-fed6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T20:20:11", "message_id": "988121de-fed5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T20:10:11", "message_id": "329ff080-fed4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T20:00:11", "message_id": "cd08af56-fed2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T19:50:10", "message_id": "675103c6-fed1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T19:40:10", "message_id": "01a82ce4-fed0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T19:30:10", "message_id": "9bf8f226-fece-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T19:20:10", "message_id": "3646571c-fecd-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T19:10:10", "message_id": "d0960472-fecb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T19:00:10", "message_id": "6ad66ce0-feca-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T18:50:10", "message_id": "0552e084-fec9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T18:40:10", "message_id": "9f8ad0e6-fec7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T18:30:10", "message_id": "39d39130-fec6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T18:20:10", "message_id": "d429c6b6-fec4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T18:10:09", "message_id": "6e76885a-fec3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T18:00:09", "message_id": "08bafa60-fec2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T17:50:09", "message_id": "a31303de-fec0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T17:40:09", "message_id": "3d6b7508-febf-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T17:30:09", "message_id": "d7b68bea-febd-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T17:20:09", "message_id": "720e14f8-febc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T17:10:09", "message_id": "0c53c51e-febb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T17:00:09", "message_id": "a6a6e62a-feb9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T16:50:09", "message_id": "40fa4232-feb8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T16:40:09", "message_id": "db430c9a-feb6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T16:30:09", "message_id": "759a3e8c-feb5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T16:20:08", "message_id": "0fe74bee-feb4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T16:10:08", "message_id": "aa442b00-feb2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T16:00:08", "message_id": "44963fe2-feb1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T15:50:08", "message_id": "dedfc0a2-feaf-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T15:40:08", "message_id": "793d5530-feae-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T15:30:08", "message_id": "1383667c-fead-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T15:20:08", "message_id": "add801f8-feab-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T15:10:08", "message_id": "482605ea-feaa-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T15:00:08", "message_id": "e276e0c6-fea8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T14:50:08", "message_id": "7ccd0d64-fea7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T14:40:08", "message_id": "172b4ea4-fea6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T14:30:08", "message_id": "b184baa0-fea4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T14:20:07", "message_id": "4bd3885e-fea3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T14:10:07", "message_id": "e6206276-fea1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T14:00:07", "message_id": "808ed4fc-fea0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T13:50:07", "message_id": "1ad17d82-fe9f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T13:40:07", "message_id": "b5158cbe-fe9d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T13:30:07", "message_id": "4f66ffe8-fe9c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T13:20:07", "message_id": "e9b7840c-fe9a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T13:10:07", "message_id": "8405e528-fe99-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T13:00:07", "message_id": "1e61623e-fe98-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T12:50:07", "message_id": "b8b69f2c-fe96-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T12:40:07", "message_id": "531b7120-fe95-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T12:30:07", "message_id": "ed5a294a-fe93-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T12:20:06", "message_id": "87a5394c-fe92-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T12:10:06", "message_id": "2202c538-fe91-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T12:00:06", "message_id": "bc54453c-fe8f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T11:50:06", "message_id": "56a29852-fe8e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T11:40:06", "message_id": "f101e99a-fe8c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T11:30:07", "message_id": "8bdf7cfe-fe8b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T11:20:06", "message_id": "2598f35e-fe8a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T11:10:06", "message_id": "bfe4ebae-fe88-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T11:00:06", "message_id": "5a3e8838-fe87-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T10:50:06", "message_id": "f491d7b6-fe85-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T10:40:06", "message_id": "8ee3c9f2-fe84-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T10:30:05", "message_id": "29312d30-fe83-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T10:20:05", "message_id": "c38732e6-fe81-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T10:10:05", "message_id": "5dcdbdea-fe80-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T10:00:05", "message_id": "f824d98e-fe7e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T09:50:05", "message_id": "92716176-fe7d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T09:40:05", "message_id": "2cc93b24-fe7c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T09:30:05", "message_id": "c71e0e04-fe7a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T09:20:05", "message_id": "61670c1a-fe79-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T09:10:05", "message_id": "fbbfc2e0-fe77-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T09:00:05", "message_id": "960f4746-fe76-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T08:50:05", "message_id": "305f3c40-fe75-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T08:40:04", "message_id": "cab1c2b0-fe73-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T08:30:04", "message_id": "65004c08-fe72-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T08:20:04", "message_id": "ff539a78-fe70-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T08:10:04", "message_id": "99a8a3ea-fe6f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T08:00:04", "message_id": "33facaf6-fe6e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T07:50:04", "message_id": "ce4b8070-fe6c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T07:40:04", "message_id": "68ad37e6-fe6b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T07:30:04", "message_id": "02fc8b0a-fe6a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T07:20:04", "message_id": "9d50d564-fe68-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T07:10:04", "message_id": "37a043ae-fe67-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T07:00:04", "message_id": "d1f0b3a0-fe65-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T06:50:04", "message_id": "6c3fcad8-fe64-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T06:40:04", "message_id": "069d8acc-fe63-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T06:30:03", "message_id": "a0ef6eb2-fe61-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T06:20:03", "message_id": "3b3a475a-fe60-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T06:10:03", "message_id": "d5864c16-fe5e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T06:00:03", "message_id": "6fd6d5bc-fe5d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T05:50:03", "message_id": "0a295ff6-fe5c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T05:40:03", "message_id": "a480f0d4-fe5a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T05:30:03", "message_id": "3ec857f6-fe59-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T05:20:03", "message_id": "d91c8b8a-fe57-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T05:10:03", "message_id": "7373ae4a-fe56-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T05:00:03", "message_id": "0dc04eba-fe55-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T04:50:02", "message_id": "a811741e-fe53-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T04:40:02", "message_id": "426ae6f0-fe52-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T04:30:02", "message_id": "dcbf53d2-fe50-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T04:20:02", "message_id": "7707fa40-fe4f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T04:10:02", "message_id": "114ea72c-fe4e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T04:00:02", "message_id": "abaac2e4-fe4c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T03:50:02", "message_id": "45f9f39e-fe4b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T03:40:02", "message_id": "e04f1cbe-fe49-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T03:30:02", "message_id": "7a9917c2-fe48-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T03:20:02", "message_id": "14e619ee-fe47-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T03:10:02", "message_id": "af42a1a8-fe45-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T03:00:01", "message_id": "498e3558-fe44-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T02:50:01", "message_id": "e3dd0bb8-fe42-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T02:40:01", "message_id": "7e2c8920-fe41-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T02:30:01", "message_id": "188ab71e-fe40-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T02:20:01", "message_id": "b2df5d3a-fe3e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T02:10:01", "message_id": "4d283b70-fe3d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T02:00:01", "message_id": "e77f7bcc-fe3b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T01:50:01", "message_id": "81d35178-fe3a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T01:40:01", "message_id": "1c308594-fe39-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T01:30:01", "message_id": "b6808402-fe37-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T01:20:01", "message_id": "50dba4b6-fe36-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T01:10:01", "message_id": "eb22fd50-fe34-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T01:00:01", "message_id": "857b33ba-fe33-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T00:50:00", "message_id": "1fc37bc8-fe32-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T00:40:00", "message_id": "ba1b39d8-fe30-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T00:30:00", "message_id": "5466cf86-fe2f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T00:20:00", "message_id": "eeb65a86-fe2d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T00:10:00", "message_id": "890abf16-fe2c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T00:00:00", "message_id": "235c7c64-fe2b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T23:50:00", "message_id": "bdaf6e72-fe29-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T23:40:00", "message_id": "580441ac-fe28-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T23:30:00", "message_id": "f25420f8-fe26-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T23:20:00", "message_id": "8cb17544-fe25-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T23:10:00", "message_id": "273c7fac-fe24-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T23:00:00", "message_id": "c18fbeb8-fe22-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T22:49:59", "message_id": "5b99028c-fe21-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T22:39:59", "message_id": "f5e4b298-fe1f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T22:29:59", "message_id": "903de69a-fe1e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T22:19:59", "message_id": "2a92ae62-fe1d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T22:09:59", "message_id": "c4e04896-fe1b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T21:59:59", "message_id": "5f303764-fe1a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T21:49:59", "message_id": "f9807b28-fe18-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T21:39:59", "message_id": "93cdba62-fe17-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T21:29:59", "message_id": "2e16c5d4-fe16-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T21:19:59", "message_id": "c86ed600-fe14-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T21:09:58", "message_id": "62c01cd4-fe13-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T20:59:58", "message_id": "fd142638-fe11-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T20:49:58", "message_id": "975a418e-fe10-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T20:39:58", "message_id": "31ab6f1c-fe0f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T20:29:58", "message_id": "cbfa98b0-fe0d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T20:19:58", "message_id": "6655a8ca-fe0c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T20:09:58", "message_id": "00a0a652-fe0b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T19:59:58", "message_id": "9af5dc60-fe09-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T19:49:58", "message_id": "3547bc04-fe08-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T19:39:58", "message_id": "cfa4be16-fe06-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T19:29:58", "message_id": "69f1bade-fe05-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T19:19:57", "message_id": "04429cfe-fe04-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T19:09:57", "message_id": "9e99dab2-fe02-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T18:59:57", "message_id": "38e79390-fe01-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T18:49:57", "message_id": "d336b158-fdff-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T18:39:57", "message_id": "6d8f91a4-fdfe-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T18:29:57", "message_id": "07e272aa-fdfd-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T18:19:57", "message_id": "a2377cd0-fdfb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T18:09:57", "message_id": "3c97ba12-fdfa-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T17:59:57", "message_id": "d6dcc4e8-fdf8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T17:49:57", "message_id": "7132a5dc-fdf7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T17:39:57", "message_id": "0b8548da-fdf6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T17:29:57", "message_id": "a5d9be04-fdf4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T17:19:56", "message_id": "402936bc-fdf3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T17:09:56", "message_id": "da7d2b12-fdf1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T16:59:56", "message_id": "74cf021e-fdf0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T16:49:56", "message_id": "0f1fda0c-fdef-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T16:39:56", "message_id": "a97b9606-fded-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T16:29:56", "message_id": "43f57212-fdec-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T16:19:56", "message_id": "de2637ec-fdea-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T16:09:56", "message_id": "7883a56a-fde9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T15:59:56", "message_id": "12d2a460-fde8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T15:49:56", "message_id": "ad2aa8fc-fde6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T15:39:56", "message_id": "477eb27e-fde5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T15:29:56", "message_id": "e1cffed4-fde3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T15:19:56", "message_id": "7c51a932-fde2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T15:09:56", "message_id": "166b1118-fde1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T14:59:55", "message_id": "b0ba922c-fddf-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T14:49:55", "message_id": "4b18d6c8-fdde-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T14:39:55", "message_id": "e5628f46-fddc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T14:29:55", "message_id": "7fb7199c-fddb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T14:19:55", "message_id": "1a07f3c4-fdda-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T14:09:55", "message_id": "b45e7f30-fdd8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T13:59:55", "message_id": "4eaa30fe-fdd7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T13:49:55", "message_id": "e8fefdf8-fdd5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T13:39:55", "message_id": "834b57be-fdd4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T13:29:55", "message_id": "1d99985a-fdd3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T13:19:55", "message_id": "b7eb02e2-fdd1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T13:09:54", "message_id": "52408d1e-fdd0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T12:59:54", "message_id": "ec938760-fdce-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T12:49:54", "message_id": "86e57ce4-fdcd-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T12:39:54", "message_id": "2132baac-fdcc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T12:29:54", "message_id": "bb8317b6-fdca-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T12:19:54", "message_id": "55d72b38-fdc9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T12:09:54", "message_id": "f021bfb6-fdc7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T11:59:54", "message_id": "8a77d7dc-fdc6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T11:49:54", "message_id": "24ccf62a-fdc5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T11:39:54", "message_id": "bf21e8fe-fdc3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T11:29:54", "message_id": "5971b1fc-fdc2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T11:19:54", "message_id": "f3c7a2c2-fdc0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T11:09:53", "message_id": "8e1873a8-fdbf-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T10:59:53", "message_id": "286be2e8-fdbe-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T10:49:54", "message_id": "c2e799d6-fdbc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T10:39:53", "message_id": "5d0e2626-fdbb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T10:29:53", "message_id": "f76a8fc2-fdb9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T10:19:53", "message_id": "91b8316c-fdb8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T10:09:53", "message_id": "2c18dc2c-fdb7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T09:59:53", "message_id": "c66bab58-fdb5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T09:49:53", "message_id": "60bf8816-fdb4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T09:39:53", "message_id": "fb10f6fe-fdb2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T09:29:53", "message_id": "95655a12-fdb1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T09:19:53", "message_id": "2fb46cc2-fdb0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T09:09:52", "message_id": "ca010f6c-fdae-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T08:59:52", "message_id": "645a7a50-fdad-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T08:49:52", "message_id": "feb8c90a-fdab-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T08:39:52", "message_id": "98fda9f6-fdaa-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T08:29:52", "message_id": "334edf2c-fda9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T08:19:52", "message_id": "cd9d9066-fda7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T08:09:52", "message_id": "680954ac-fda6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T07:59:52", "message_id": "02455ab8-fda5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T07:49:52", "message_id": "9c94006c-fda3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T07:39:52", "message_id": "36ebe65e-fda2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T07:29:52", "message_id": "d139e190-fda0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T07:19:52", "message_id": "6b8e2578-fd9f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T07:09:52", "message_id": "0605ed04-fd9e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T06:59:51", "message_id": "a02a794c-fd9c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T06:49:51", "message_id": "3a810080-fd9b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T06:39:51", "message_id": "d4c86c34-fd99-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T06:29:51", "message_id": "6f1cfc8e-fd98-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T06:19:51", "message_id": "09688882-fd97-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T06:09:51", "message_id": "a3bdf0f4-fd95-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T05:59:51", "message_id": "3e113fc8-fd94-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T05:49:51", "message_id": "d8638b8c-fd92-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T05:39:51", "message_id": "72b42bc6-fd91-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T05:29:51", "message_id": "0d11ef20-fd90-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T05:19:50", "message_id": "a7606b8a-fd8e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T05:09:50", "message_id": "41aae1e0-fd8d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T04:59:50", "message_id": "dc0a68e8-fd8b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T04:49:50", "message_id": "7667e480-fd8a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T04:39:50", "message_id": "10c83806-fd89-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T04:29:50", "message_id": "ab1a864a-fd87-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T04:19:50", "message_id": "4552b14e-fd86-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T04:09:50", "message_id": "dfbf8a42-fd84-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T03:59:50", "message_id": "79d5ecea-fd83-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T03:49:50", "message_id": "1446a730-fd82-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T03:39:50", "message_id": "ae9fc03e-fd80-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T03:29:50", "message_id": "48fbe92a-fd7f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T03:19:50", "message_id": "e35a2f38-fd7d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T03:09:50", "message_id": "7da5da8a-fd7c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T02:59:49", "message_id": "17dc9122-fd7b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T02:49:49", "message_id": "b21e905c-fd79-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T02:39:49", "message_id": "4cb12cda-fd78-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T02:29:49", "message_id": "e6f1d2a6-fd76-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T02:19:49", "message_id": "814c6c6e-fd75-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T02:09:49", "message_id": "1b96f836-fd74-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T01:59:49", "message_id": "b5d619c4-fd72-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T01:49:49", "message_id": "502e6b40-fd71-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T01:39:49", "message_id": "ea882296-fd6f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T01:29:49", "message_id": "85067310-fd6e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T01:19:49", "message_id": "1f66e612-fd6d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T01:09:49", "message_id": "b9a45c16-fd6b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T00:59:48", "message_id": "53dbdc34-fd6a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T00:49:48", "message_id": "ee1ce2cc-fd68-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T00:39:48", "message_id": "8883fb86-fd67-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T00:29:48", "message_id": "22dcd038-fd66-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T00:19:48", "message_id": "bd3850d2-fd64-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T00:09:48", "message_id": "57a9367e-fd63-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-04T23:59:48", "message_id": "f1ffbb1e-fd61-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-04T23:49:48", "message_id": "8c3a6672-fd60-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-04T23:39:05", "message_id": "0cff470c-fd5f-11e2-b8cf-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-04T23:29:05", "message_id": "a76b4e28-fd5d-11e2-b8cf-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}], "http://localhost:8777/v2/meters/storage.objects.size?q.field=resource_id&q.value=0c5a6b84fd2a43999c8820060c57da30": [{"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-12T04:01:18", "message_id": "d76a648c-0303-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-12T03:51:18", "message_id": "71b9e8ca-0302-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-12T03:41:18", "message_id": "0c07f93c-0301-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-12T03:31:18", "message_id": "a66b622c-02ff-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-12T03:21:18", "message_id": "40b6f924-02fe-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-12T03:11:18", "message_id": "db0ce7ec-02fc-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-12T03:01:17", "message_id": "7552a3de-02fb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-12T02:51:17", "message_id": "0faec586-02fa-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-12T02:41:17", "message_id": "a9eadc4a-02f8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-12T02:31:17", "message_id": "44476594-02f7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-12T02:21:17", "message_id": "de927208-02f5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-12T02:11:17", "message_id": "78e591c0-02f4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-12T02:01:17", "message_id": "133e5c0e-02f3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-12T01:51:17", "message_id": "ad94080a-02f1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-12T01:41:17", "message_id": "47dff268-02f0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-12T01:31:17", "message_id": "e23332e6-02ee-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-12T01:21:17", "message_id": "7c7dd204-02ed-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-12T01:11:16", "message_id": "16d52ad4-02ec-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-12T01:01:16", "message_id": "b1127644-02ea-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-12T00:51:16", "message_id": "4b789918-02e9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-12T00:41:16", "message_id": "e5be5cee-02e7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-12T00:31:16", "message_id": "800dce62-02e6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-12T00:21:16", "message_id": "1a8c8e80-02e5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-12T00:11:16", "message_id": "b4ae5220-02e3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-12T00:01:16", "message_id": "4f020ea4-02e2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T23:51:16", "message_id": "e95505c6-02e0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T23:41:16", "message_id": "83aedee6-02df-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T23:31:16", "message_id": "1e04b3d2-02de-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T23:21:15", "message_id": "b84b310c-02dc-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T23:11:15", "message_id": "52ac1312-02db-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T23:01:16", "message_id": "ed351c32-02d9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T22:51:15", "message_id": "874c7dd0-02d8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T22:41:15", "message_id": "21987b02-02d7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T22:31:15", "message_id": "bbeb71de-02d5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T22:21:15", "message_id": "5636ebc6-02d4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T22:11:15", "message_id": "f0872210-02d2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T22:01:15", "message_id": "8addcbd6-02d1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T21:51:15", "message_id": "253658d0-02d0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T21:41:15", "message_id": "bf872920-02ce-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T21:31:14", "message_id": "59d3376e-02cd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T21:21:14", "message_id": "f429c5f0-02cb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T21:11:14", "message_id": "8e7aa248-02ca-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T21:01:14", "message_id": "28c9f3fa-02c9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T20:51:14", "message_id": "c31f9812-02c7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T20:41:14", "message_id": "5d6a4d9c-02c6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T20:31:14", "message_id": "f7c3ad04-02c4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T20:21:14", "message_id": "9214b698-02c3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T20:11:14", "message_id": "2c71b594-02c2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T20:01:14", "message_id": "c6bbbaf2-02c0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T19:51:14", "message_id": "6110e7c8-02bf-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T19:41:14", "message_id": "fb5ed6de-02bd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T19:31:13", "message_id": "95b463d6-02bc-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T19:21:13", "message_id": "3002f814-02bb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T19:11:13", "message_id": "ca500364-02b9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T19:01:13", "message_id": "649af660-02b8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T18:51:13", "message_id": "fee8b614-02b6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T18:41:13", "message_id": "99411a96-02b5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T18:31:13", "message_id": "338df3c8-02b4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T18:21:13", "message_id": "cddf0cf2-02b2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T18:11:13", "message_id": "682ff87c-02b1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T18:01:13", "message_id": "027f05be-02b0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T17:51:12", "message_id": "9cd4cf7e-02ae-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T17:41:12", "message_id": "372274f2-02ad-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T17:31:12", "message_id": "d17a6d0e-02ab-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T17:21:12", "message_id": "6bc8364a-02aa-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T17:11:12", "message_id": "0615872c-02a9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T17:01:12", "message_id": "a075782e-02a7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T16:51:12", "message_id": "3ac62d62-02a6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T16:41:12", "message_id": "d525c0b8-02a4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T16:31:12", "message_id": "6f6e6dca-02a3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T16:21:12", "message_id": "09b69878-02a2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T16:11:12", "message_id": "a40c5784-02a0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T16:01:12", "message_id": "3e683106-029f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T15:51:12", "message_id": "d8b74208-029d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T15:41:12", "message_id": "7315c4f2-029c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T15:31:11", "message_id": "0d70184c-029b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T15:21:11", "message_id": "a7cf4e3c-0299-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T15:11:11", "message_id": "421c979e-0298-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T15:01:11", "message_id": "dc6b315e-0296-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T14:51:11", "message_id": "76b61208-0295-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T14:41:11", "message_id": "1107f5d0-0294-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T14:31:11", "message_id": "ab57d332-0292-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T14:21:11", "message_id": "45aa1e42-0291-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T14:11:11", "message_id": "dff871e4-028f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T14:01:11", "message_id": "7a5308b4-028e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T13:51:11", "message_id": "14a7a3cc-028d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T13:41:11", "message_id": "aefa1cea-028b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T13:31:10", "message_id": "494b63b4-028a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T13:21:10", "message_id": "e3970c72-0288-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T13:11:10", "message_id": "7deffbdc-0287-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T13:01:10", "message_id": "1847d92c-0286-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T12:51:10", "message_id": "b2923a92-0284-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T12:41:10", "message_id": "4ce80ca4-0283-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T12:31:10", "message_id": "e73468d6-0281-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T12:21:10", "message_id": "81805ec4-0280-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T12:11:10", "message_id": "1bd36644-027f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T12:01:10", "message_id": "b6210910-027d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T11:51:10", "message_id": "5079c828-027c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T11:41:09", "message_id": "eabf823a-027a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T11:31:09", "message_id": "85143526-0279-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T11:21:09", "message_id": "1f64b90e-0278-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T11:11:09", "message_id": "b9b6b3ba-0276-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T11:01:09", "message_id": "54075052-0275-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T10:51:09", "message_id": "ee558c0c-0273-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T10:41:09", "message_id": "88abb8f0-0272-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T10:31:09", "message_id": "23018486-0271-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T10:21:09", "message_id": "bd49917a-026f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T10:11:09", "message_id": "57ac55ba-026e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T10:01:09", "message_id": "f1f89cf2-026c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T09:51:08", "message_id": "8c48b050-026b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T09:41:08", "message_id": "26973232-026a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T09:31:08", "message_id": "c0eec860-0268-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T09:21:08", "message_id": "5b3e9172-0267-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T09:11:08", "message_id": "f596474e-0265-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T09:01:08", "message_id": "8fe6b24a-0264-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T08:51:08", "message_id": "2a43c578-0263-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T08:41:08", "message_id": "c496e706-0261-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T08:31:08", "message_id": "5eed0c2e-0260-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T08:21:08", "message_id": "f9312006-025e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T08:11:08", "message_id": "938521b8-025d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T08:01:08", "message_id": "2ddc141c-025c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T07:51:07", "message_id": "c825b2fa-025a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T07:41:07", "message_id": "6281450a-0259-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T07:31:07", "message_id": "fccdae2a-0257-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T07:21:07", "message_id": "97229758-0256-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T07:11:07", "message_id": "3164ecb4-0255-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T07:01:07", "message_id": "cbc99bd0-0253-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T06:51:07", "message_id": "6615325a-0252-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T06:41:07", "message_id": "0064bd5a-0251-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T06:31:07", "message_id": "9ab4b5f6-024f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T06:21:07", "message_id": "3515268c-024e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T06:11:07", "message_id": "cf5d895c-024c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T06:01:07", "message_id": "69c79782-024b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T05:51:07", "message_id": "040cdc64-024a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T05:41:06", "message_id": "9e5b7be2-0248-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T05:31:06", "message_id": "38a4c3fe-0247-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T05:21:06", "message_id": "d2f6f7b2-0245-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T05:11:06", "message_id": "6d3f6356-0244-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T05:01:06", "message_id": "07972242-0243-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T04:51:06", "message_id": "a1ef36d8-0241-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T04:41:06", "message_id": "3c3c5448-0240-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T04:31:06", "message_id": "d690edb2-023e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T04:21:06", "message_id": "70f9bc14-023d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T04:11:06", "message_id": "0b30b140-023c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T04:01:05", "message_id": "a5880808-023a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T03:51:05", "message_id": "3fdb205e-0239-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T03:41:05", "message_id": "da43d0ac-0237-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T03:31:05", "message_id": "7477a8e4-0236-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T03:21:05", "message_id": "0eca10aa-0235-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T03:11:05", "message_id": "a917de14-0233-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T03:01:05", "message_id": "4367b6c6-0232-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T02:51:05", "message_id": "ddb59060-0230-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T02:41:05", "message_id": "77f717fe-022f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T02:31:05", "message_id": "1255bfdc-022e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T02:21:04", "message_id": "aca45d5c-022c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T02:11:04", "message_id": "46f5e8dc-022b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T02:01:04", "message_id": "e15295b2-0229-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T01:51:04", "message_id": "7b9ad4b0-0228-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T01:41:04", "message_id": "15fee8e0-0227-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T01:31:04", "message_id": "b04c55ba-0225-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T01:21:04", "message_id": "4a852aa0-0224-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T01:11:04", "message_id": "e4d7ac06-0222-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T01:01:04", "message_id": "7f33d68c-0221-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T00:51:04", "message_id": "197c9faa-0220-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T00:41:04", "message_id": "b3ce27f6-021e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T00:31:03", "message_id": "4e1d8d26-021d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T00:21:03", "message_id": "e86e5416-021b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T00:11:03", "message_id": "82bce124-021a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T00:01:03", "message_id": "1d130dc2-0219-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T23:51:03", "message_id": "b7659540-0217-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T23:41:03", "message_id": "51b3fcf6-0216-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T23:31:03", "message_id": "ec0bb958-0214-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T23:21:03", "message_id": "8663ba20-0213-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T23:11:03", "message_id": "20a9595c-0212-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T23:01:03", "message_id": "bb55b9c0-0210-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T22:51:03", "message_id": "5561cce0-020f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T22:41:08", "message_id": "f2c0e72a-020d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T22:31:03", "message_id": "8a0efa74-020c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T22:21:02", "message_id": "2456eddc-020b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T22:11:02", "message_id": "bebc9ff4-0209-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T22:01:02", "message_id": "58fce51c-0208-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T21:51:02", "message_id": "f365c710-0206-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T21:41:02", "message_id": "8dada47a-0205-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T21:31:02", "message_id": "27f83b64-0204-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T21:21:02", "message_id": "c26ba110-0202-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T21:11:02", "message_id": "5ca52154-0201-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T21:01:02", "message_id": "f6e38ffa-01ff-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T20:51:02", "message_id": "9195fd00-01fe-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T20:41:02", "message_id": "2b99c67c-01fd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T20:31:02", "message_id": "c61b84d0-01fb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T20:21:01", "message_id": "60370ca8-01fa-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T20:11:01", "message_id": "fa7a2afe-01f8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T20:01:01", "message_id": "94d24692-01f7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T19:51:01", "message_id": "2f26c274-01f6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T19:41:01", "message_id": "c978ed04-01f4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T19:31:01", "message_id": "63d1cf3a-01f3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T19:21:01", "message_id": "fe0954d0-01f1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T19:11:01", "message_id": "986b1b96-01f0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T19:01:01", "message_id": "32bbfdb6-01ef-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T18:51:00", "message_id": "ccfaf866-01ed-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T18:41:00", "message_id": "67616072-01ec-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T18:31:00", "message_id": "01ad1e84-01eb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T18:21:00", "message_id": "9bfbf9e4-01e9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T18:11:00", "message_id": "3646e326-01e8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T18:01:00", "message_id": "d0971e3e-01e6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T17:51:00", "message_id": "6af153ac-01e5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T17:41:00", "message_id": "05469b9e-01e4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T17:31:00", "message_id": "9f91d210-01e2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T17:21:00", "message_id": "39e4d59e-01e1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T17:11:00", "message_id": "d42f6c7e-01df-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T17:00:59", "message_id": "6e8162ca-01de-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T16:50:59", "message_id": "08d686cc-01dd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T16:40:59", "message_id": "a32379a8-01db-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T16:30:59", "message_id": "3d794700-01da-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T16:20:59", "message_id": "d7c243cc-01d8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T16:10:59", "message_id": "721e000c-01d7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T16:00:59", "message_id": "0c745770-01d6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T15:50:59", "message_id": "a6c42bfe-01d4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T15:40:59", "message_id": "412587c6-01d3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T15:30:59", "message_id": "db729ef6-01d1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T15:20:59", "message_id": "75cb9f40-01d0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T15:10:59", "message_id": "101a48aa-01cf-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T15:00:58", "message_id": "aa6511e4-01cd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T14:50:58", "message_id": "44bc9516-01cc-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T14:40:58", "message_id": "df0445da-01ca-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T14:30:58", "message_id": "794c78b2-01c9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T14:20:58", "message_id": "139d7c88-01c8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T14:10:58", "message_id": "adf7b066-01c6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T14:00:58", "message_id": "48496b02-01c5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T13:50:58", "message_id": "e29d7df8-01c3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T13:40:58", "message_id": "7ce6ee50-01c2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T13:30:58", "message_id": "17447f3c-01c1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T13:20:58", "message_id": "b18b8e20-01bf-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T13:10:57", "message_id": "4bdd4808-01be-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T13:00:57", "message_id": "e63022f6-01bc-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T12:50:57", "message_id": "807e7292-01bb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T12:40:57", "message_id": "1ad3b0de-01ba-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T12:30:57", "message_id": "b52b7b50-01b8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T12:20:57", "message_id": "4f81b176-01b7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T12:10:57", "message_id": "e9d87eb4-01b5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T12:00:57", "message_id": "84205e9e-01b4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T11:50:57", "message_id": "1e7739ec-01b3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T11:40:57", "message_id": "b8d1e002-01b1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T11:30:57", "message_id": "531d96e4-01b0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T11:20:57", "message_id": "ed70e5cc-01ae-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T11:10:57", "message_id": "87c94fbc-01ad-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T11:00:56", "message_id": "22045ed4-01ac-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T10:50:57", "message_id": "bc895e02-01aa-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T10:40:56", "message_id": "56b569e6-01a9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T10:30:56", "message_id": "f1124e66-01a7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T10:20:56", "message_id": "8b580954-01a6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T10:10:56", "message_id": "25c7f992-01a5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T10:00:56", "message_id": "c004115a-01a3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T09:50:56", "message_id": "5a491a46-01a2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T09:40:56", "message_id": "f4a608f8-01a0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T09:30:56", "message_id": "8f118e28-019f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T09:20:56", "message_id": "2946aef8-019e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T09:10:55", "message_id": "c39f1424-019c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T09:00:56", "message_id": "5e08ca20-019b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T08:50:55", "message_id": "f83ff048-0199-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T08:40:55", "message_id": "929f6c74-0198-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T08:30:55", "message_id": "2cd3c8b4-0197-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T08:20:55", "message_id": "c73318f8-0195-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T08:10:55", "message_id": "617384c2-0194-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T08:00:55", "message_id": "fbc85ca2-0192-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T07:50:55", "message_id": "962b0602-0191-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T07:40:55", "message_id": "30802f7c-0190-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T07:30:55", "message_id": "cacb1828-018e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T07:20:54", "message_id": "65212950-018d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T07:10:54", "message_id": "ff7320d2-018b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T07:00:54", "message_id": "99c07b78-018a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T06:50:54", "message_id": "34172278-0189-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T06:40:54", "message_id": "ce69eea2-0187-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T06:30:54", "message_id": "68bd613e-0186-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T06:20:54", "message_id": "03129026-0185-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T06:10:54", "message_id": "9d581270-0183-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T06:00:54", "message_id": "37a07d4c-0182-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T05:50:54", "message_id": "d2029e30-0180-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T05:40:54", "message_id": "6c4f265e-017f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T05:30:53", "message_id": "0695d4ee-017e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T05:20:53", "message_id": "a0ecdfb2-017c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T05:10:53", "message_id": "3b4369c0-017b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T05:00:53", "message_id": "d59bc03c-0179-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T04:50:53", "message_id": "6fe11a86-0178-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T04:40:53", "message_id": "0a2b25ca-0177-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T04:30:53", "message_id": "a4806394-0175-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T04:20:53", "message_id": "3ed07ae4-0174-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T04:10:53", "message_id": "d922e610-0172-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T04:00:53", "message_id": "737e2cda-0171-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T03:50:53", "message_id": "0dcfecbc-0170-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T03:40:53", "message_id": "a8237dbc-016e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T03:30:52", "message_id": "4278b910-016d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T03:20:52", "message_id": "dcc4b5a2-016b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T03:10:52", "message_id": "7716ad6a-016a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T03:00:52", "message_id": "1168eede-0169-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T02:50:52", "message_id": "abbd4860-0167-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T02:40:52", "message_id": "4606a21a-0166-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T02:30:52", "message_id": "e057de62-0164-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T02:20:52", "message_id": "7abbdef6-0163-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T02:10:52", "message_id": "150dcce6-0162-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T02:00:52", "message_id": "af582352-0160-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T01:50:52", "message_id": "49d0b2d4-015f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T01:40:52", "message_id": "e41423fa-015d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T01:30:52", "message_id": "7e7731d2-015c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T01:20:52", "message_id": "18ca1bc0-015b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T01:10:51", "message_id": "b30c01f0-0159-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T01:00:51", "message_id": "4d6750b2-0158-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T00:50:51", "message_id": "e794b79e-0156-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T00:40:51", "message_id": "81ec00c4-0155-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T00:30:51", "message_id": "1c3c8eb6-0154-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T00:20:51", "message_id": "b67f387c-0152-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T00:10:51", "message_id": "50dc689c-0151-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T00:00:51", "message_id": "eb2a9fa6-014f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T23:50:50", "message_id": "857c78d8-014e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T23:40:50", "message_id": "1fc829a2-014d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T23:30:50", "message_id": "ba0ed0e4-014b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T23:20:50", "message_id": "5471d142-014a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T23:10:50", "message_id": "eebaf96a-0148-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T23:00:50", "message_id": "894bfee0-0147-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T22:50:50", "message_id": "23605f5a-0146-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T22:40:50", "message_id": "bda9d14c-0144-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T22:30:50", "message_id": "57fefc6a-0143-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T22:20:50", "message_id": "f262fdbc-0141-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T22:10:49", "message_id": "8c9e68c8-0140-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T22:00:49", "message_id": "26fd7988-013f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T21:50:49", "message_id": "c1511bfe-013d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T21:40:49", "message_id": "5ba9ddf0-013c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T21:30:49", "message_id": "f600da0e-013a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T21:20:49", "message_id": "904ab4d8-0139-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T21:10:49", "message_id": "2aa66d08-0138-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T21:00:49", "message_id": "c4fd7434-0136-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T20:50:49", "message_id": "5f4b0986-0135-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T20:40:49", "message_id": "f9a15438-0133-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T20:30:49", "message_id": "93e64eba-0132-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T20:20:49", "message_id": "2e593770-0131-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T20:10:49", "message_id": "c894d65c-012f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T20:00:49", "message_id": "62e59e64-012e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T19:50:49", "message_id": "fd42812c-012c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T19:40:48", "message_id": "97846bda-012b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T19:30:48", "message_id": "31dc67d4-012a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T19:20:48", "message_id": "cc3e42d6-0128-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T19:10:48", "message_id": "66833678-0127-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T19:00:48", "message_id": "00ce8a86-0126-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T18:50:48", "message_id": "9b19d458-0124-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T18:40:48", "message_id": "356ef3f0-0123-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T18:30:48", "message_id": "cfb8c1fe-0121-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T18:20:48", "message_id": "6a07b6b8-0120-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T18:10:47", "message_id": "045762e2-011f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T18:00:47", "message_id": "9e9f8f52-011d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T17:50:47", "message_id": "38f9e05e-011c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T17:40:47", "message_id": "d34653b0-011a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T17:30:47", "message_id": "6d953c80-0119-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T17:20:47", "message_id": "07ee7bd6-0118-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T17:10:47", "message_id": "a23c19d4-0116-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T17:00:47", "message_id": "3c8f84d2-0115-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T16:50:47", "message_id": "d6dad28c-0113-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T16:40:47", "message_id": "712a8bea-0112-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T16:30:47", "message_id": "0b8bdede-0111-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T16:20:46", "message_id": "a5d22306-010f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T16:10:46", "message_id": "402a6172-010e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T16:00:46", "message_id": "da790bea-010c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T15:50:49", "message_id": "764f9edc-010b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T15:40:47", "message_id": "0f79d41c-010a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T15:30:46", "message_id": "a993d6a8-0108-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T15:20:46", "message_id": "43ca19f0-0107-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T15:10:46", "message_id": "de319236-0105-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T15:00:46", "message_id": "78701054-0104-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T14:50:46", "message_id": "12cafa80-0103-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T14:40:46", "message_id": "ad16c986-0101-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T14:30:46", "message_id": "4760b652-0100-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T14:20:46", "message_id": "e1be8226-00fe-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T14:10:46", "message_id": "7c45e106-00fd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T14:00:45", "message_id": "164d9476-00fc-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T13:50:45", "message_id": "b0adefae-00fa-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T13:40:45", "message_id": "4af75db8-00f9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T13:30:45", "message_id": "e5486576-00f7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T13:20:46", "message_id": "7ffd4ffc-00f6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T13:10:45", "message_id": "19dd7cde-00f5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T13:00:45", "message_id": "b43b0c9e-00f3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T12:50:45", "message_id": "4e81feea-00f2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T12:40:45", "message_id": "e8db908e-00f0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T12:30:44", "message_id": "8331ef5e-00ef-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T12:20:44", "message_id": "1d7bc320-00ee-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T12:10:44", "message_id": "b7cceb9a-00ec-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T12:00:44", "message_id": "52201e1c-00eb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T11:50:44", "message_id": "ec796f6a-00e9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T11:40:44", "message_id": "86c242ce-00e8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T11:30:44", "message_id": "211b7f54-00e7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T11:20:44", "message_id": "bb6a7814-00e5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T11:10:44", "message_id": "55c224cc-00e4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T11:00:44", "message_id": "f009b1b4-00e2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T10:50:44", "message_id": "8a5b873a-00e1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T10:40:43", "message_id": "24ab3d46-00e0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T10:30:43", "message_id": "bf025b1a-00de-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T10:20:43", "message_id": "594e5086-00dd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T10:10:43", "message_id": "f3a287bc-00db-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T10:00:43", "message_id": "8e0410e8-00da-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T09:50:43", "message_id": "28428ab0-00d9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T09:40:43", "message_id": "c29d9d04-00d7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T09:30:43", "message_id": "5ceda07c-00d6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T09:20:43", "message_id": "f73ff6b8-00d4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T09:10:43", "message_id": "9199c786-00d3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T09:00:43", "message_id": "2be62836-00d2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T08:50:42", "message_id": "c63034ce-00d0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T08:40:42", "message_id": "608ab2a8-00cf-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T08:30:42", "message_id": "fadebfea-00cd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T08:20:42", "message_id": "952fbde4-00cc-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T08:10:42", "message_id": "2f7a5d0c-00cb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T08:00:42", "message_id": "c9c9ffe0-00c9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T07:50:42", "message_id": "641b24b8-00c8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T07:40:42", "message_id": "fe976558-00c6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T07:30:42", "message_id": "98c818ea-00c5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T07:20:42", "message_id": "330b56bc-00c4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T07:10:42", "message_id": "cd5e52b6-00c2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T07:00:41", "message_id": "67b3e2b0-00c1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T06:50:41", "message_id": "01ff3e66-00c0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T06:40:41", "message_id": "9c540f8e-00be-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T06:30:41", "message_id": "36a6d410-00bd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T06:20:41", "message_id": "d0f2b9b4-00bb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T06:10:41", "message_id": "6b49236a-00ba-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T06:00:41", "message_id": "05a43302-00b9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T05:50:41", "message_id": "9ff0311a-00b7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T05:40:41", "message_id": "3a488e8a-00b6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T05:30:41", "message_id": "d493f92c-00b4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T05:20:41", "message_id": "6ee53c90-00b3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T05:10:41", "message_id": "0938c8d6-00b2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T05:00:40", "message_id": "a38d91b6-00b0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T04:50:40", "message_id": "3df35fd0-00af-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T04:40:40", "message_id": "d84adf56-00ad-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T04:30:40", "message_id": "72983998-00ac-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T04:20:40", "message_id": "0cf9b4dc-00ab-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T04:10:40", "message_id": "a75297d0-00a9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T04:00:40", "message_id": "41c7b2d4-00a8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T03:50:41", "message_id": "dc443d34-00a6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T03:40:40", "message_id": "765747ec-00a5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T03:30:40", "message_id": "10dcf700-00a4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T03:20:40", "message_id": "ab05eece-00a2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T03:10:40", "message_id": "456181a6-00a1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T03:00:40", "message_id": "dfb53d58-009f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T02:50:40", "message_id": "79f9246c-009e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T02:40:40", "message_id": "1482271a-009d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T02:30:40", "message_id": "ae9fc4f8-009b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T02:20:40", "message_id": "48f5b9f6-009a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T02:10:39", "message_id": "e34999f2-0098-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T02:00:39", "message_id": "7d9bd012-0097-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T01:50:39", "message_id": "17d969e8-0096-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T01:40:39", "message_id": "b2292558-0094-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T01:30:39", "message_id": "4c7bb866-0093-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T01:20:39", "message_id": "e6d89836-0091-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T01:10:39", "message_id": "811ca722-0090-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T01:00:39", "message_id": "1b7affa0-008f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T00:50:39", "message_id": "b5c19cce-008d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T00:40:38", "message_id": "500cc292-008c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T00:30:38", "message_id": "ea6cdee6-008a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T00:20:38", "message_id": "84c17e04-0089-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T00:10:38", "message_id": "1f0e5b0a-0088-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T00:00:38", "message_id": "b95f2060-0086-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T23:50:38", "message_id": "53a9f0f2-0085-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T23:40:38", "message_id": "ee0aa09e-0083-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T23:30:38", "message_id": "8850d0bc-0082-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T23:20:38", "message_id": "229aa230-0081-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T23:10:38", "message_id": "bcf76dec-007f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T23:00:38", "message_id": "577fad2c-007e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T22:50:38", "message_id": "f1920bd2-007c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T22:40:37", "message_id": "8beadd64-007b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T22:30:37", "message_id": "262a6f4a-007a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T22:20:37", "message_id": "c086e610-0078-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T22:10:37", "message_id": "5ad6ebcc-0077-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T22:00:37", "message_id": "f527a420-0075-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T21:50:37", "message_id": "8f8458b2-0074-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T21:40:37", "message_id": "29cd329c-0073-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T21:30:37", "message_id": "c422b9f4-0071-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T21:20:37", "message_id": "5e838a0c-0070-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T21:10:37", "message_id": "f8c773fa-006e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T21:00:37", "message_id": "93108ffc-006d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T20:50:36", "message_id": "2d5e308e-006c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T20:40:36", "message_id": "c7b0f178-006a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T20:30:36", "message_id": "6209e416-0069-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T20:20:36", "message_id": "fc4eae1e-0067-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T20:10:36", "message_id": "96ac0b66-0066-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T20:00:36", "message_id": "30f731fc-0065-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T19:50:36", "message_id": "cb4f44c6-0063-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T19:40:36", "message_id": "659a17ec-0062-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T19:30:36", "message_id": "ffecd0ac-0060-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T19:20:36", "message_id": "9a3894b8-005f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T19:10:35", "message_id": "348d7224-005e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T19:00:35", "message_id": "cee14cbc-005c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T18:50:35", "message_id": "6930ab16-005b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T18:40:35", "message_id": "037d77f0-005a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T18:30:35", "message_id": "9dddcb76-0058-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T18:20:35", "message_id": "381da4c4-0057-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T18:10:35", "message_id": "d27b2688-0055-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T18:00:35", "message_id": "6cccddf0-0054-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T17:50:35", "message_id": "071f778e-0053-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T17:40:35", "message_id": "a1795a86-0051-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T17:30:35", "message_id": "3bcd40c2-0050-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T17:20:35", "message_id": "d61ac2f0-004e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T17:10:34", "message_id": "706b295a-004d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T17:00:34", "message_id": "0ab9ca9a-004c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T16:50:34", "message_id": "a50c6ec4-004a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T16:40:34", "message_id": "3f67922a-0049-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T16:30:34", "message_id": "d9ba4c7a-0047-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T16:20:34", "message_id": "740ed0b8-0046-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T16:10:34", "message_id": "0e5af0ae-0045-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T16:00:34", "message_id": "a8b65eb0-0043-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T15:50:34", "message_id": "4304f956-0042-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T15:40:34", "message_id": "dd51f272-0040-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T15:30:34", "message_id": "77a727a4-003f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T15:20:34", "message_id": "11fcfc2c-003e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T15:10:33", "message_id": "ac4c836c-003c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T15:00:33", "message_id": "4696eb58-003b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T14:50:33", "message_id": "e0ef7f32-0039-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T14:40:33", "message_id": "7b398da0-0038-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T14:30:33", "message_id": "1593c502-0037-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T14:20:33", "message_id": "afdf6be0-0035-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T14:10:33", "message_id": "4a41773e-0034-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T14:00:33", "message_id": "e4c2dea8-0032-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T13:50:33", "message_id": "7ed49768-0031-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T13:40:33", "message_id": "1932ab76-0030-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T13:30:33", "message_id": "b380b152-002e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T13:20:33", "message_id": "4ddc67fc-002d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T13:10:32", "message_id": "e8288b58-002b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T13:00:32", "message_id": "82769b3e-002a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T12:50:32", "message_id": "1ccacd60-0029-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T12:40:32", "message_id": "b710e97e-0027-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T12:30:32", "message_id": "516a84be-0026-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T12:20:32", "message_id": "ebb40d76-0024-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T12:10:32", "message_id": "85fe352a-0023-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T12:00:32", "message_id": "205afd3a-0022-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T11:50:32", "message_id": "baa6fb8e-0020-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T11:40:32", "message_id": "550ed658-001f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T11:30:32", "message_id": "ef63e880-001d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T11:20:31", "message_id": "89a52f50-001c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T11:10:32", "message_id": "2416c000-001b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T11:00:31", "message_id": "be55b40c-0019-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T10:50:31", "message_id": "58a7dd3e-0018-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T10:40:31", "message_id": "f303ec30-0016-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T10:30:31", "message_id": "8d71773a-0015-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T10:20:31", "message_id": "27bb4908-0014-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T10:10:31", "message_id": "c222386e-0012-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T10:00:31", "message_id": "5c45fd60-0011-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T09:50:31", "message_id": "f695c014-000f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T09:40:31", "message_id": "90dece6a-000e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T09:30:31", "message_id": "2b428520-000d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T09:20:30", "message_id": "c585c9d2-000b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T09:10:30", "message_id": "5fd46f36-000a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T09:00:30", "message_id": "fa2ec858-0008-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T08:50:30", "message_id": "947d72a8-0007-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T08:40:30", "message_id": "2ed61618-0006-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T08:30:30", "message_id": "c92bcf3e-0004-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T08:20:30", "message_id": "63786c5c-0003-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T08:10:30", "message_id": "fdd79d88-0001-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T08:00:30", "message_id": "981d8486-0000-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T07:50:30", "message_id": "326ca1f4-ffff-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T07:40:30", "message_id": "ccbd36f8-fffd-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T07:30:30", "message_id": "670c2b44-fffc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T07:20:29", "message_id": "01669244-fffb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T07:10:29", "message_id": "9badb316-fff9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T07:00:29", "message_id": "35f8ba62-fff8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T06:50:29", "message_id": "d05b9f04-fff6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T06:40:29", "message_id": "6aa36cec-fff5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T06:30:29", "message_id": "04f0e0f6-fff4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T06:20:29", "message_id": "9f44be68-fff2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T06:10:29", "message_id": "3995291e-fff1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T06:00:29", "message_id": "d3ed6dca-ffef-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T05:50:29", "message_id": "6e46c062-ffee-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T05:40:29", "message_id": "089f563a-ffed-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T05:30:29", "message_id": "a2e7c33c-ffeb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T05:20:28", "message_id": "3d2f2d7e-ffea-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T05:10:28", "message_id": "d7848d6c-ffe8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T05:00:28", "message_id": "71d98a86-ffe7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T04:50:28", "message_id": "0c1d2da2-ffe6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T04:40:28", "message_id": "a67e9e3c-ffe4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T04:30:28", "message_id": "40c2e810-ffe3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T04:20:28", "message_id": "db1cb8fc-ffe1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T04:10:28", "message_id": "756e08cc-ffe0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T04:00:28", "message_id": "0fb631ea-ffdf-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T03:50:28", "message_id": "aa0d0a04-ffdd-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T03:40:27", "message_id": "445a5ac8-ffdc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T03:30:27", "message_id": "deabb510-ffda-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T03:20:27", "message_id": "78fb53de-ffd9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T03:10:27", "message_id": "135054b8-ffd8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T03:00:27", "message_id": "ada279d0-ffd6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T02:50:27", "message_id": "47ed93fa-ffd5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T02:40:27", "message_id": "e23c1758-ffd3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T02:30:27", "message_id": "7c967390-ffd2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T02:20:27", "message_id": "17010e56-ffd1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T02:10:27", "message_id": "b12ad900-ffcf-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T02:00:26", "message_id": "4b862592-ffce-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T01:50:26", "message_id": "e5d08d38-ffcc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T01:40:26", "message_id": "80221f34-ffcb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T01:30:26", "message_id": "1a734fec-ffca-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T01:20:26", "message_id": "b4cb3cb4-ffc8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T01:10:26", "message_id": "4f21331a-ffc7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T01:00:26", "message_id": "e96e7218-ffc5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T00:50:26", "message_id": "83c46356-ffc4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T00:40:26", "message_id": "1e1828e0-ffc3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T00:30:26", "message_id": "b8665298-ffc1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T00:20:26", "message_id": "53117ff4-ffc0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T00:10:26", "message_id": "ed064fd8-ffbe-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T00:00:26", "message_id": "87823876-ffbd-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T23:50:25", "message_id": "21b2ac3e-ffbc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T23:40:25", "message_id": "bc0862b2-ffba-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T23:30:25", "message_id": "56617828-ffb9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T23:20:25", "message_id": "f0cd9ab0-ffb7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T23:10:25", "message_id": "8b1e52a0-ffb6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T23:00:25", "message_id": "259633ae-ffb5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T22:50:25", "message_id": "bf914810-ffb3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T22:40:25", "message_id": "59ef31c6-ffb2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T22:30:25", "message_id": "f43eef8e-ffb0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T22:20:24", "message_id": "8e7f5180-ffaf-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T22:10:24", "message_id": "28e44d04-ffae-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T22:00:24", "message_id": "c32a8934-ffac-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T21:50:24", "message_id": "5d6ce408-ffab-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T21:40:24", "message_id": "f7c7347e-ffa9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T21:30:24", "message_id": "921fa9a4-ffa8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T21:20:24", "message_id": "2c6791fe-ffa7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T21:10:24", "message_id": "c6ab8074-ffa5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T21:00:24", "message_id": "61060100-ffa4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T20:50:24", "message_id": "fb567868-ffa2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T20:40:23", "message_id": "95a262a8-ffa1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T20:30:23", "message_id": "2ff80418-ffa0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T20:20:23", "message_id": "ca4a93ca-ff9e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T20:10:23", "message_id": "648fab16-ff9d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T20:00:23", "message_id": "fee8ee04-ff9b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T19:50:23", "message_id": "993273b0-ff9a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T19:40:23", "message_id": "338c3718-ff99-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T19:30:23", "message_id": "cddd5dc6-ff97-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T19:20:23", "message_id": "683324e8-ff96-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T19:10:23", "message_id": "0281fd46-ff95-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T19:00:23", "message_id": "9ccba62e-ff93-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T18:50:22", "message_id": "3724ccde-ff92-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T18:40:22", "message_id": "d1773c4c-ff90-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T18:30:22", "message_id": "6bb71eb4-ff8f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T18:20:22", "message_id": "0606deb6-ff8e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T18:10:22", "message_id": "a05c2dc4-ff8c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T18:00:22", "message_id": "3ab0b400-ff8b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T17:50:22", "message_id": "d5005eea-ff89-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T17:40:22", "message_id": "6f588208-ff88-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T17:30:22", "message_id": "09a7b8c6-ff87-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T17:20:22", "message_id": "a3f4166a-ff85-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T17:10:22", "message_id": "3e4c36c2-ff84-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T17:00:21", "message_id": "d8910a3e-ff82-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T16:50:21", "message_id": "72d99b62-ff81-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T16:40:21", "message_id": "0d2ffaaa-ff80-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T16:30:21", "message_id": "a78cd174-ff7e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T16:20:21", "message_id": "41d05122-ff7d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T16:10:21", "message_id": "dc2a7682-ff7b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T16:00:21", "message_id": "767be484-ff7a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T15:50:21", "message_id": "10cfcf84-ff79-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T15:40:21", "message_id": "ab1b97fa-ff77-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T15:30:21", "message_id": "456799aa-ff76-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T15:20:20", "message_id": "dfbb83c4-ff74-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T15:10:20", "message_id": "7a0938b0-ff73-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T15:00:20", "message_id": "1458f95c-ff72-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T14:50:20", "message_id": "aeabd99a-ff70-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T14:40:20", "message_id": "48fa8f16-ff6f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T14:30:20", "message_id": "e360cb62-ff6d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T14:20:20", "message_id": "7db07142-ff6c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T14:10:20", "message_id": "17ffdbe0-ff6b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T14:00:20", "message_id": "b2502d00-ff69-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T13:50:20", "message_id": "4c9dbb36-ff68-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T13:40:20", "message_id": "e7055776-ff66-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T13:30:20", "message_id": "814aea1e-ff65-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T13:20:19", "message_id": "1b9cd4a8-ff64-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T13:10:19", "message_id": "b5f3b2a8-ff62-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T13:00:19", "message_id": "504ec722-ff61-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T12:50:19", "message_id": "eaa4a73a-ff5f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T12:40:19", "message_id": "84ef1264-ff5e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T12:30:19", "message_id": "1f455c44-ff5d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T12:20:19", "message_id": "b99afc42-ff5b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T12:10:19", "message_id": "53e06154-ff5a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T12:00:19", "message_id": "ee2e48a4-ff58-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T11:50:19", "message_id": "8886e052-ff57-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T11:40:19", "message_id": "22dc3b5e-ff56-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T11:30:19", "message_id": "bd2bee04-ff54-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T11:20:18", "message_id": "577baaaa-ff53-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T11:10:19", "message_id": "f1e939c4-ff51-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T11:00:18", "message_id": "8c30e2c2-ff50-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T10:50:18", "message_id": "2684057c-ff4f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T10:40:18", "message_id": "c0df617c-ff4d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T10:30:18", "message_id": "5b28c0f4-ff4c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T10:20:18", "message_id": "f57b072c-ff4a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T10:10:18", "message_id": "8fd943bc-ff49-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T10:00:18", "message_id": "2a348ebe-ff48-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T09:50:18", "message_id": "c47409fc-ff46-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T09:40:18", "message_id": "5ecdba72-ff45-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T09:30:18", "message_id": "f90ce574-ff43-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T09:20:18", "message_id": "93664ad6-ff42-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T09:10:17", "message_id": "2db73b06-ff41-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T09:00:17", "message_id": "c7fb0cda-ff3f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T08:50:17", "message_id": "624e1b58-ff3e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T08:40:17", "message_id": "fca5c112-ff3c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T08:30:17", "message_id": "96f3a218-ff3b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T08:20:17", "message_id": "3136f73c-ff3a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T08:10:17", "message_id": "cb87a2f2-ff38-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T08:00:17", "message_id": "65d6e0ae-ff37-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T07:50:17", "message_id": "002820fc-ff36-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T07:40:16", "message_id": "9a7512de-ff34-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T07:30:16", "message_id": "34d0cf50-ff33-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T07:20:16", "message_id": "cf182aba-ff31-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T07:10:16", "message_id": "696761dc-ff30-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T07:00:16", "message_id": "03c1dfac-ff2f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T06:50:16", "message_id": "9e1439d0-ff2d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T06:40:16", "message_id": "3864556c-ff2c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T06:30:16", "message_id": "d2aafce0-ff2a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T06:20:16", "message_id": "6d0d39da-ff29-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T06:10:16", "message_id": "076aa9c4-ff28-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T06:00:16", "message_id": "a1aa6030-ff26-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T05:50:16", "message_id": "3c06a8d4-ff25-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T05:40:15", "message_id": "d648aa20-ff23-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T05:30:16", "message_id": "70c23672-ff22-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T05:20:15", "message_id": "0af5d840-ff21-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T05:10:15", "message_id": "a53aab62-ff1f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T05:00:15", "message_id": "3fa1d6b4-ff1e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T04:50:15", "message_id": "d9e5211a-ff1c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T04:40:15", "message_id": "743e3af0-ff1b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T04:30:15", "message_id": "0e9cd87e-ff1a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T04:20:15", "message_id": "a8dd924a-ff18-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T04:10:15", "message_id": "4339d3c8-ff17-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T04:00:15", "message_id": "dd87f132-ff15-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T03:50:15", "message_id": "77f0482a-ff14-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T03:40:14", "message_id": "1231242e-ff13-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T03:30:14", "message_id": "ac784726-ff11-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T03:20:14", "message_id": "46cf13e2-ff10-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T03:10:14", "message_id": "e133fc7e-ff0e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T03:00:14", "message_id": "7b719d52-ff0d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T02:50:14", "message_id": "15df0ca0-ff0c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T02:40:14", "message_id": "b02938f0-ff0a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T02:30:14", "message_id": "4a7c87e2-ff09-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T02:20:14", "message_id": "e4c3a7b0-ff07-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T02:10:14", "message_id": "7f140960-ff06-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T02:00:14", "message_id": "196182f6-ff05-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T01:50:14", "message_id": "b3c1cb32-ff03-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T01:40:13", "message_id": "4e06670e-ff02-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T01:30:13", "message_id": "e85f21da-ff00-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T01:20:13", "message_id": "82b0ee64-feff-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T01:10:13", "message_id": "1d094472-fefe-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T01:00:13", "message_id": "b74c9acc-fefc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T00:50:13", "message_id": "51a91520-fefb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T00:40:13", "message_id": "ebfe51c8-fef9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T00:30:13", "message_id": "8640292a-fef8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T00:20:13", "message_id": "209219ea-fef7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T00:10:13", "message_id": "bae4f082-fef5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T00:00:12", "message_id": "552d26ac-fef4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T23:50:12", "message_id": "ef9036aa-fef2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T23:40:12", "message_id": "89e04238-fef1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T23:30:12", "message_id": "24364a6e-fef0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T23:20:12", "message_id": "be9809e6-feee-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T23:10:12", "message_id": "58cfd0a4-feed-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T23:00:12", "message_id": "f36d8b3a-feeb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T22:50:12", "message_id": "8d79966c-feea-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T22:40:12", "message_id": "27ce5cd6-fee9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T22:30:12", "message_id": "c220c7f8-fee7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T22:20:12", "message_id": "5c69bb46-fee6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T22:10:12", "message_id": "f6d23854-fee4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T22:00:12", "message_id": "913a8844-fee3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T21:50:11", "message_id": "2b6a0b3a-fee2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T21:40:12", "message_id": "c5e2361c-fee0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T21:30:11", "message_id": "6018a39e-fedf-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T21:20:11", "message_id": "fa6bbf46-fedd-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T21:10:11", "message_id": "94b461fe-fedc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T21:00:11", "message_id": "2efaa734-fedb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T20:50:11", "message_id": "c9578baa-fed9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T20:40:11", "message_id": "63b6503e-fed8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T20:30:11", "message_id": "fe0211de-fed6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T20:20:11", "message_id": "987ff0fc-fed5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T20:10:11", "message_id": "329ed952-fed4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T20:00:11", "message_id": "cd07e580-fed2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T19:50:10", "message_id": "6750062e-fed1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T19:40:10", "message_id": "01a763d6-fed0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T19:30:10", "message_id": "9bf829f4-fece-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T19:20:10", "message_id": "36450614-fecd-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T19:10:10", "message_id": "d0950e6e-fecb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T19:00:10", "message_id": "6ad55b84-feca-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T18:50:10", "message_id": "0551e2c4-fec9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T18:40:10", "message_id": "9f89c6f6-fec7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T18:30:10", "message_id": "39d2ceda-fec6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T18:20:10", "message_id": "d428f04c-fec4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T18:10:09", "message_id": "6e757866-fec3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T18:00:09", "message_id": "08b9feee-fec2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T17:50:09", "message_id": "a3122b44-fec0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T17:40:09", "message_id": "3d6a4598-febf-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T17:30:09", "message_id": "d7b5933e-febd-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T17:20:09", "message_id": "720d0a4a-febc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T17:10:09", "message_id": "0c531254-febb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T17:00:09", "message_id": "a6a5dbe0-feb9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T16:50:09", "message_id": "40f96a92-feb8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T16:40:09", "message_id": "db420c82-feb6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T16:30:09", "message_id": "75994004-feb5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T16:20:08", "message_id": "0fe67174-feb4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T16:10:08", "message_id": "aa432ce6-feb2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T16:00:08", "message_id": "44957756-feb1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T15:50:08", "message_id": "deded296-feaf-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T15:40:08", "message_id": "793c81f0-feae-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T15:30:08", "message_id": "13820e9e-fead-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T15:20:08", "message_id": "add7418c-feab-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T15:10:08", "message_id": "48252616-feaa-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T15:00:08", "message_id": "e2763130-fea8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T14:50:08", "message_id": "7ccc1030-fea7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T14:40:08", "message_id": "172a5eea-fea6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T14:30:08", "message_id": "b184086c-fea4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T14:20:07", "message_id": "4bd2c19e-fea3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T14:10:07", "message_id": "e61f59da-fea1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T14:00:07", "message_id": "808d5532-fea0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T13:50:07", "message_id": "1ad0b7bc-fe9f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T13:40:07", "message_id": "b513bbd2-fe9d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T13:30:07", "message_id": "4f66311c-fe9c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T13:20:07", "message_id": "e9b68fc0-fe9a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T13:10:07", "message_id": "84051c10-fe99-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T13:00:07", "message_id": "1e60c522-fe98-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T12:50:07", "message_id": "b8b54cbc-fe96-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T12:40:07", "message_id": "531a7450-fe95-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T12:30:07", "message_id": "ed593616-fe93-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T12:20:06", "message_id": "87a474da-fe92-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T12:10:06", "message_id": "22022a6a-fe91-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T12:00:06", "message_id": "bc535154-fe8f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T11:50:06", "message_id": "56a1d7a0-fe8e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T11:40:06", "message_id": "f1006958-fe8c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T11:30:07", "message_id": "8bde7f02-fe8b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T11:20:06", "message_id": "25982bfe-fe8a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T11:10:06", "message_id": "bfe423ae-fe88-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T11:00:06", "message_id": "5a3d6692-fe87-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T10:50:06", "message_id": "f4912e6a-fe85-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T10:40:06", "message_id": "8ee2ccd2-fe84-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T10:30:05", "message_id": "29306fbc-fe83-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T10:20:05", "message_id": "c3867c3e-fe81-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T10:10:05", "message_id": "5dccfb08-fe80-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T10:00:05", "message_id": "f8240c52-fe7e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T09:50:05", "message_id": "92709318-fe7d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T09:40:05", "message_id": "2cc7d4fa-fe7c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T09:30:05", "message_id": "c71c8b2e-fe7a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T09:20:05", "message_id": "6165aff0-fe79-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T09:10:05", "message_id": "fbbe5f86-fe77-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T09:00:05", "message_id": "960cad38-fe76-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T08:50:05", "message_id": "305e4146-fe75-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T08:40:04", "message_id": "cab0e7be-fe73-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T08:30:04", "message_id": "64ff3ff2-fe72-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T08:20:04", "message_id": "ff52bd9c-fe70-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T08:10:04", "message_id": "99a7e310-fe6f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T08:00:04", "message_id": "33fa06fc-fe6e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T07:50:04", "message_id": "ce4a92e6-fe6c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T07:40:04", "message_id": "68abe328-fe6b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T07:30:04", "message_id": "02fbc90e-fe6a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T07:20:04", "message_id": "9d500170-fe68-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T07:10:04", "message_id": "379f3cca-fe67-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T07:00:04", "message_id": "d1efafa0-fe65-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T06:50:04", "message_id": "6c3f2100-fe64-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T06:40:04", "message_id": "069c9694-fe63-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T06:30:03", "message_id": "a0ee9fc8-fe61-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T06:20:03", "message_id": "3b3970b4-fe60-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T06:10:03", "message_id": "d584fe92-fe5e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T06:00:03", "message_id": "6fd62522-fe5d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T05:50:03", "message_id": "0a28a5fc-fe5c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T05:40:03", "message_id": "a47fc75e-fe5a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T05:30:03", "message_id": "3ec76fee-fe59-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T05:20:03", "message_id": "d91b7182-fe57-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T05:10:03", "message_id": "7372b72e-fe56-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T05:00:03", "message_id": "0dbea650-fe55-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T04:50:02", "message_id": "a810814e-fe53-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T04:40:02", "message_id": "426a12a2-fe52-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T04:30:02", "message_id": "dcbe9cf8-fe50-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T04:20:02", "message_id": "7706d78c-fe4f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T04:10:02", "message_id": "114de1b6-fe4e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T04:00:02", "message_id": "aba9ef7c-fe4c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T03:50:02", "message_id": "45f904e8-fe4b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T03:40:02", "message_id": "e04dd78c-fe49-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T03:30:02", "message_id": "7a982b78-fe48-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T03:20:02", "message_id": "14e56418-fe47-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T03:10:02", "message_id": "af41cee0-fe45-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T03:00:01", "message_id": "498d323e-fe44-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T02:50:01", "message_id": "e3dc48f4-fe42-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T02:40:01", "message_id": "7e2b1c2a-fe41-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T02:30:01", "message_id": "1889b742-fe40-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T02:20:01", "message_id": "b2de6ce0-fe3e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T02:10:01", "message_id": "4d27712c-fe3d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T02:00:01", "message_id": "e77e7f10-fe3b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T01:50:01", "message_id": "81d1dc4e-fe3a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T01:40:01", "message_id": "1c2fae44-fe39-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T01:30:01", "message_id": "b67f9862-fe37-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T01:20:01", "message_id": "50dabd9e-fe36-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T01:10:01", "message_id": "eb21b1b6-fe34-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T01:00:01", "message_id": "857a975c-fe33-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T00:50:00", "message_id": "1fc21fa8-fe32-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T00:40:00", "message_id": "ba1a531a-fe30-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T00:30:00", "message_id": "5465f8ea-fe2f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T00:20:00", "message_id": "eeb56c5c-fe2d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T00:10:00", "message_id": "890941cc-fe2c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T00:00:00", "message_id": "235bb70c-fe2b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T23:50:00", "message_id": "bdae80fc-fe29-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T23:40:00", "message_id": "58033f32-fe28-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T23:30:00", "message_id": "f252251e-fe26-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T23:20:00", "message_id": "8caf49b8-fe25-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T23:10:00", "message_id": "273b4a60-fe24-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T23:00:00", "message_id": "c18e960a-fe22-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T22:49:59", "message_id": "5b978420-fe21-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T22:39:59", "message_id": "f5e34f34-fe1f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T22:29:59", "message_id": "903d2124-fe1e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T22:19:59", "message_id": "2a91d1b8-fe1d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T22:09:59", "message_id": "c4df6e3a-fe1b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T21:59:59", "message_id": "5f2f4f02-fe1a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T21:49:59", "message_id": "f97fc3f4-fe18-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T21:39:59", "message_id": "93cccb7a-fe17-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T21:29:59", "message_id": "2e161242-fe16-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T21:19:58", "message_id": "c86dcd0a-fe14-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T21:09:58", "message_id": "62bf0df8-fe13-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T20:59:58", "message_id": "fd13337c-fe11-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T20:49:58", "message_id": "97595206-fe10-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T20:39:58", "message_id": "31aab090-fe0f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T20:29:58", "message_id": "cbf9f928-fe0d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T20:19:58", "message_id": "6654ed2c-fe0c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T20:09:58", "message_id": "009f1f12-fe0b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T19:59:58", "message_id": "9af4a05c-fe09-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T19:49:58", "message_id": "35471600-fe08-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T19:39:58", "message_id": "cfa3e6f8-fe06-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T19:29:58", "message_id": "69f0e9a6-fe05-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T19:19:57", "message_id": "0441e566-fe04-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T19:09:57", "message_id": "9e989ddc-fe02-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T18:59:57", "message_id": "38e6f296-fe01-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T18:49:57", "message_id": "d335cd2e-fdff-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T18:39:57", "message_id": "6d8ec094-fdfe-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T18:29:57", "message_id": "07e1b162-fdfd-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T18:19:57", "message_id": "a236e482-fdfb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T18:09:57", "message_id": "3c96fa5a-fdfa-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T17:59:57", "message_id": "d6dbfa4a-fdf8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T17:49:57", "message_id": "7131fb00-fdf7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T17:39:57", "message_id": "0b8310ba-fdf6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T17:29:57", "message_id": "a5d8df52-fdf4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T17:19:56", "message_id": "402874ac-fdf3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T17:09:56", "message_id": "da7c7a32-fdf1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T16:59:56", "message_id": "74cddef2-fdf0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T16:49:56", "message_id": "0f1e5f56-fdef-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T16:39:56", "message_id": "a979d406-fded-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T16:29:56", "message_id": "43f4a044-fdec-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T16:19:56", "message_id": "de25a30e-fdea-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T16:09:56", "message_id": "788234fa-fde9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T15:59:56", "message_id": "12d21478-fde8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T15:49:56", "message_id": "ad29e232-fde6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T15:39:56", "message_id": "477de97a-fde5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T15:29:56", "message_id": "e1cf36ac-fde3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T15:19:56", "message_id": "7c50ac9e-fde2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T15:09:56", "message_id": "166a4120-fde1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T14:59:55", "message_id": "b0b9c5c2-fddf-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T14:49:55", "message_id": "4b17b914-fdde-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T14:39:55", "message_id": "e561dbf0-fddc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T14:29:55", "message_id": "7fb6584a-fddb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T14:19:55", "message_id": "1a073a74-fdda-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T14:09:55", "message_id": "b45d8684-fdd8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T13:59:55", "message_id": "4ea96bd8-fdd7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T13:49:55", "message_id": "e8fe57d6-fdd5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T13:39:55", "message_id": "834aaf1c-fdd4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T13:29:55", "message_id": "1d98c84e-fdd3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T13:19:55", "message_id": "b7ea3e02-fdd1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T13:09:54", "message_id": "523f7f78-fdd0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T12:59:54", "message_id": "ec929850-fdce-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T12:49:54", "message_id": "86e38e98-fdcd-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T12:39:54", "message_id": "2132092c-fdcc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T12:29:54", "message_id": "bb826b0e-fdca-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T12:19:54", "message_id": "55d6424a-fdc9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T12:09:54", "message_id": "f020dcfe-fdc7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T11:59:54", "message_id": "8a76ed40-fdc6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T11:49:54", "message_id": "24cc36b8-fdc5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T11:39:54", "message_id": "bf210d4e-fdc3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T11:29:54", "message_id": "5970dab6-fdc2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T11:19:53", "message_id": "f3c6947c-fdc0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T11:09:53", "message_id": "8e17a720-fdbf-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T10:59:53", "message_id": "286b360e-fdbe-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T10:49:54", "message_id": "c2e6d1f4-fdbc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T10:39:53", "message_id": "5d0d2db6-fdbb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T10:29:53", "message_id": "f769900e-fdb9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T10:19:53", "message_id": "91b76ce6-fdb8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T10:09:53", "message_id": "2c1832ea-fdb7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T09:59:53", "message_id": "c66ac5e4-fdb5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T09:49:53", "message_id": "60bed83a-fdb4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T09:39:53", "message_id": "fb0fe6a6-fdb2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T09:29:53", "message_id": "9564ad92-fdb1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T09:19:53", "message_id": "2fb352f6-fdb0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T09:09:52", "message_id": "ca006c42-fdae-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T08:59:52", "message_id": "6457e664-fdad-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T08:49:52", "message_id": "feb7fa48-fdab-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T08:39:52", "message_id": "98fcf2a4-fdaa-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T08:29:52", "message_id": "334dfad0-fda9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T08:19:52", "message_id": "cd9ce9ea-fda7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T08:09:52", "message_id": "6808b6b4-fda6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T07:59:52", "message_id": "0244230a-fda5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T07:49:52", "message_id": "9c926a18-fda3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T07:39:52", "message_id": "36eb1396-fda2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T07:29:52", "message_id": "d1390108-fda0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T07:19:52", "message_id": "6b8cfd74-fd9f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T07:09:52", "message_id": "060533a0-fd9e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T06:59:51", "message_id": "a029e662-fd9c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T06:49:51", "message_id": "3a804d16-fd9b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T06:39:51", "message_id": "d4c7adb2-fd99-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T06:29:51", "message_id": "6f1c3c2c-fd98-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T06:19:51", "message_id": "0967c550-fd97-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T06:09:51", "message_id": "a3bd29a8-fd95-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T05:59:51", "message_id": "3e107e62-fd94-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T05:49:51", "message_id": "d862807a-fd92-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T05:39:51", "message_id": "72b38432-fd91-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T05:29:51", "message_id": "0d1069d4-fd90-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T05:19:50", "message_id": "a75f79fa-fd8e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T05:09:50", "message_id": "41a988f4-fd8d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T04:59:50", "message_id": "dc09be70-fd8b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T04:49:50", "message_id": "76674b92-fd8a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T04:39:50", "message_id": "10c72b46-fd89-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T04:29:50", "message_id": "ab19a964-fd87-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T04:19:50", "message_id": "455210ea-fd86-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T04:09:50", "message_id": "dfbe67c0-fd84-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T03:59:50", "message_id": "79d52ca6-fd83-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T03:49:50", "message_id": "1445e67e-fd82-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T03:39:50", "message_id": "ae9eaa82-fd80-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T03:29:50", "message_id": "48fb1f2c-fd7f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T03:19:50", "message_id": "e35940be-fd7d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T03:09:50", "message_id": "7da52edc-fd7c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T02:59:49", "message_id": "17dbed3a-fd7b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T02:49:49", "message_id": "b21dac32-fd79-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T02:39:49", "message_id": "4caf702a-fd78-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T02:29:49", "message_id": "e6f10a88-fd76-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T02:19:49", "message_id": "814b5b12-fd75-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T02:09:49", "message_id": "1b964aee-fd74-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T01:59:49", "message_id": "b5d53a0e-fd72-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T01:49:49", "message_id": "502b6832-fd71-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T01:39:49", "message_id": "ea87735a-fd6f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T01:29:49", "message_id": "85051b50-fd6e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T01:19:49", "message_id": "1f65dd62-fd6d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T01:09:49", "message_id": "b9a3a44c-fd6b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T00:59:48", "message_id": "53db322a-fd6a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T00:49:48", "message_id": "ee1c1bee-fd68-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T00:39:48", "message_id": "88832ada-fd67-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T00:29:48", "message_id": "22dc0ed2-fd66-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T00:19:48", "message_id": "bd37925a-fd64-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T00:09:48", "message_id": "57a840de-fd63-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-04T23:59:48", "message_id": "f1ff1600-fd61-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-04T23:49:48", "message_id": "8c399f58-fd60-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-04T23:39:06", "message_id": "0d6796ae-fd5f-11e2-b8cf-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-04T23:29:06", "message_id": "a7d6a25e-fd5d-11e2-b8cf-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}], "http://localhost:8777/v2/meters/storage.objects?q.field=resource_id&q.value=0c5a6b84fd2a43999c8820060c57da30": [{"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-12T04:01:18", "message_id": "d7694bf6-0303-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-12T03:51:18", "message_id": "71b8e36c-0302-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-12T03:41:18", "message_id": "0c06fcd0-0301-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-12T03:31:18", "message_id": "a66a9522-02ff-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-12T03:21:18", "message_id": "40b5ec78-02fe-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-12T03:11:18", "message_id": "db0c43aa-02fc-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-12T03:01:17", "message_id": "7551ac04-02fb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-12T02:51:17", "message_id": "0fadf3cc-02fa-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-12T02:41:17", "message_id": "a9e9d34a-02f8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-12T02:31:17", "message_id": "4446bcd4-02f7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-12T02:21:17", "message_id": "de91b6ce-02f5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-12T02:11:17", "message_id": "78e4ac56-02f4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-12T02:01:17", "message_id": "133d7f3c-02f3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-12T01:51:17", "message_id": "ad932b88-02f1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-12T01:41:17", "message_id": "47dec46a-02f0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-12T01:31:17", "message_id": "e2326d70-02ee-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-12T01:21:17", "message_id": "7c7cd566-02ed-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-12T01:11:16", "message_id": "16d3f092-02ec-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-12T01:01:16", "message_id": "b1113e5a-02ea-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-12T00:51:16", "message_id": "4b77ab16-02e9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-12T00:41:16", "message_id": "e5bd98d6-02e7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-12T00:31:16", "message_id": "800cad3e-02e6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-12T00:21:16", "message_id": "1a8ac410-02e5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-12T00:11:16", "message_id": "b4ada53c-02e3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-12T00:01:16", "message_id": "4f00b9aa-02e2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T23:51:16", "message_id": "e95418dc-02e0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T23:41:16", "message_id": "83ae260e-02df-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T23:31:16", "message_id": "1e037076-02de-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T23:21:15", "message_id": "b84a4da0-02dc-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T23:11:15", "message_id": "52aae802-02db-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T23:01:16", "message_id": "ed343fba-02d9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T22:51:15", "message_id": "874bbabc-02d8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T22:41:15", "message_id": "21974994-02d7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T22:31:15", "message_id": "bbea46c4-02d5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T22:21:15", "message_id": "5636108e-02d4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T22:11:15", "message_id": "f0864034-02d2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T22:01:15", "message_id": "8add0a02-02d1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T21:51:15", "message_id": "2535410c-02d0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T21:41:15", "message_id": "bf865a36-02ce-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T21:31:14", "message_id": "59d257d6-02cd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T21:21:14", "message_id": "f42871b4-02cb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T21:11:14", "message_id": "8e79a0a0-02ca-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T21:01:14", "message_id": "28c92fba-02c9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T20:51:14", "message_id": "c31e5e02-02c7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T20:41:14", "message_id": "5d693d12-02c6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T20:31:14", "message_id": "f7c2952c-02c4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T20:21:14", "message_id": "9213bcde-02c3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T20:11:14", "message_id": "2c709056-02c2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T20:01:14", "message_id": "c6ba3ace-02c0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T19:51:14", "message_id": "610ff2fa-02bf-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T19:41:14", "message_id": "fb5e07fe-02bd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T19:31:13", "message_id": "95b391cc-02bc-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T19:21:13", "message_id": "3001b17a-02bb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T19:11:13", "message_id": "ca4f53ba-02b9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T19:01:13", "message_id": "649a2fbe-02b8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T18:51:13", "message_id": "fee7be6c-02b6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T18:41:13", "message_id": "993ffb84-02b5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T18:31:13", "message_id": "338cf00e-02b4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T18:21:13", "message_id": "cddd86b6-02b2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T18:11:13", "message_id": "682f2960-02b1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T18:01:13", "message_id": "027e5100-02b0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T17:51:12", "message_id": "9cd38204-02ae-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T17:41:12", "message_id": "37219d02-02ad-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T17:31:12", "message_id": "d1796490-02ab-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T17:21:12", "message_id": "6bc6cddc-02aa-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T17:11:12", "message_id": "06148df4-02a9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T17:01:12", "message_id": "a074b2d6-02a7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T16:51:12", "message_id": "3ac4f71c-02a6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T16:41:12", "message_id": "d52511e0-02a4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T16:31:12", "message_id": "6f6d41ca-02a3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T16:21:12", "message_id": "09b5cd3a-02a2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T16:11:12", "message_id": "a40b6c02-02a0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T16:01:12", "message_id": "3e677748-029f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T15:51:12", "message_id": "d8b61a7c-029d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T15:41:12", "message_id": "7314b3dc-029c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T15:31:11", "message_id": "0d6f42dc-029b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T15:21:11", "message_id": "a7ce7958-0299-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T15:11:11", "message_id": "421bc6f2-0298-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T15:01:11", "message_id": "dc6a4f0a-0296-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T14:51:11", "message_id": "76b51c36-0295-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T14:41:11", "message_id": "110742e8-0294-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T14:31:11", "message_id": "ab568806-0292-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T14:21:11", "message_id": "45a8f922-0291-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T14:11:11", "message_id": "dff7cece-028f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T14:01:11", "message_id": "7a52543c-028e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T13:51:11", "message_id": "14a6c218-028d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T13:41:11", "message_id": "aef962be-028b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T13:31:10", "message_id": "494a648c-028a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T13:21:10", "message_id": "e3966466-0288-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T13:11:10", "message_id": "7def2702-0287-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T13:01:10", "message_id": "18470c90-0286-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T12:51:10", "message_id": "b291578a-0284-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T12:41:10", "message_id": "4ce6b7e6-0283-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T12:31:10", "message_id": "e7339424-0281-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T12:21:10", "message_id": "817fbfb4-0280-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T12:11:10", "message_id": "1bd26960-027f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T12:01:10", "message_id": "b62040b6-027d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T11:51:10", "message_id": "5079189c-027c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T11:41:09", "message_id": "eabea68a-027a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T11:31:09", "message_id": "851360ce-0279-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T11:21:09", "message_id": "1f64089c-0278-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T11:11:09", "message_id": "b9b58062-0276-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T11:01:09", "message_id": "5405c084-0275-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T10:51:09", "message_id": "ee54ddd4-0273-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T10:41:09", "message_id": "88aaec18-0272-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T10:31:09", "message_id": "23007a82-0271-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T10:21:09", "message_id": "bd486c3c-026f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T10:11:09", "message_id": "57ab02aa-026e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T10:01:09", "message_id": "f1f7c6ec-026c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T09:51:08", "message_id": "8c4767a4-026b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T09:41:08", "message_id": "2695f408-026a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T09:31:08", "message_id": "c0edab24-0268-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T09:21:08", "message_id": "5b3d2788-0267-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T09:11:08", "message_id": "f5953e6c-0265-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T09:01:08", "message_id": "8fe59a86-0264-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T08:51:08", "message_id": "2a42d316-0263-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T08:41:08", "message_id": "c4960c1e-0261-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T08:31:08", "message_id": "5eeb93da-0260-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T08:21:08", "message_id": "f92fdf20-025e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T08:11:08", "message_id": "93845bd4-025d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T08:01:08", "message_id": "2dda8f70-025c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T07:51:07", "message_id": "c824dc9a-025a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T07:41:07", "message_id": "62803836-0259-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T07:31:07", "message_id": "fccbbb7e-0257-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T07:21:07", "message_id": "9720bb5e-0256-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T07:11:07", "message_id": "3164088a-0255-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T07:01:07", "message_id": "cbc7b90a-0253-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T06:51:07", "message_id": "66138932-0252-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T06:41:07", "message_id": "006395d8-0251-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T06:31:07", "message_id": "9ab3711e-024f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T06:21:07", "message_id": "351438f8-024e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T06:11:07", "message_id": "cf5cc792-024c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T06:01:07", "message_id": "69c6ca1e-024b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T05:51:06", "message_id": "040c0fb4-024a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T05:41:06", "message_id": "9e5a1a18-0248-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T05:31:06", "message_id": "38a39754-0247-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T05:21:06", "message_id": "d2f64038-0245-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T05:11:06", "message_id": "6d3e414c-0244-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T05:01:06", "message_id": "0795c8f2-0243-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T04:51:06", "message_id": "a1ee42c8-0241-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T04:41:06", "message_id": "3c3b8112-0240-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T04:31:06", "message_id": "d69027ba-023e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T04:21:06", "message_id": "70f8cfb6-023d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T04:11:06", "message_id": "0b2fe0e4-023c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T04:01:05", "message_id": "a5873270-023a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T03:51:05", "message_id": "3fda5930-0239-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T03:41:05", "message_id": "da42a330-0237-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T03:31:05", "message_id": "7476ec1a-0236-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T03:21:05", "message_id": "0ec8f256-0235-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T03:11:05", "message_id": "a91728f2-0233-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T03:01:05", "message_id": "4366f966-0232-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T02:51:05", "message_id": "ddb43af8-0230-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T02:41:05", "message_id": "77f679b6-022f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T02:31:05", "message_id": "1254f62e-022e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T02:21:04", "message_id": "aca39732-022c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T02:11:04", "message_id": "46f50520-022b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T02:01:04", "message_id": "e1510512-0229-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T01:51:04", "message_id": "7b9a2632-0228-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T01:41:04", "message_id": "15fdd374-0227-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T01:31:04", "message_id": "b04b7dc0-0225-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T01:21:04", "message_id": "4a847240-0224-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T01:11:04", "message_id": "e4d6f482-0222-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T01:01:04", "message_id": "7f32b05e-0221-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T00:51:04", "message_id": "197b800c-0220-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T00:41:04", "message_id": "b3cd5542-021e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T00:31:03", "message_id": "4e1ca8d4-021d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T00:21:03", "message_id": "e86da868-021b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T00:11:03", "message_id": "82bc20ea-021a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-11T00:01:03", "message_id": "1d118f7e-0219-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T23:51:03", "message_id": "b764aa22-0217-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T23:41:03", "message_id": "51b318b8-0216-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T23:31:03", "message_id": "ec0ad948-0214-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T23:21:03", "message_id": "8662fc16-0213-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T23:11:03", "message_id": "20a88c5c-0212-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T23:01:03", "message_id": "bb54c8da-0210-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T22:51:03", "message_id": "5560a234-020f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T22:41:08", "message_id": "f2bf852e-020d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T22:31:03", "message_id": "8a0e1e4c-020c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T22:21:02", "message_id": "2455f5a8-020b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T22:11:02", "message_id": "bebb8830-0209-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T22:01:02", "message_id": "58fbd1e0-0208-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T21:51:02", "message_id": "f364e138-0206-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T21:41:02", "message_id": "8dac9396-0205-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T21:31:02", "message_id": "27f75e4c-0204-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T21:21:02", "message_id": "c25fb7d8-0202-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T21:11:02", "message_id": "5ca454ea-0201-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T21:01:02", "message_id": "f6e2ad42-01ff-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T20:51:02", "message_id": "9194a932-01fe-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T20:41:02", "message_id": "2b98f85a-01fd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T20:31:02", "message_id": "c61a70c2-01fb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T20:21:01", "message_id": "6035e814-01fa-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T20:11:01", "message_id": "fa797e60-01f8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T20:01:01", "message_id": "94d1836a-01f7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T19:51:01", "message_id": "2f25de04-01f6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T19:41:01", "message_id": "c97793a0-01f4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T19:31:01", "message_id": "63d11716-01f3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T19:21:01", "message_id": "fe083e38-01f1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T19:11:01", "message_id": "986a47d4-01f0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T19:01:01", "message_id": "32bb3836-01ef-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T18:51:00", "message_id": "ccfa25c6-01ed-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T18:41:00", "message_id": "676081fc-01ec-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T18:31:00", "message_id": "01abef96-01eb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T18:21:00", "message_id": "9bfadf32-01e9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T18:11:00", "message_id": "3646017c-01e8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T18:01:00", "message_id": "d094df84-01e6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T17:51:00", "message_id": "6af000a6-01e5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T17:41:00", "message_id": "05459046-01e4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T17:31:00", "message_id": "9f90c85c-01e2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T17:21:00", "message_id": "39e3179a-01e1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T17:11:00", "message_id": "d42ebc2a-01df-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T17:00:59", "message_id": "6e8085c6-01de-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T16:50:59", "message_id": "08d5bd1e-01dd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T16:40:59", "message_id": "a322749a-01db-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T16:30:59", "message_id": "3d7872da-01da-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T16:20:59", "message_id": "d7c17e06-01d8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T16:10:59", "message_id": "721d4dba-01d7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T16:00:59", "message_id": "0c733e58-01d6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T15:50:59", "message_id": "a6c33b40-01d4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T15:40:59", "message_id": "41244eec-01d3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T15:30:59", "message_id": "db717012-01d1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T15:20:59", "message_id": "75caca66-01d0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T15:10:59", "message_id": "101986ae-01cf-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T15:00:58", "message_id": "aa6456e6-01cd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T14:50:58", "message_id": "44bbe6d4-01cc-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T14:40:58", "message_id": "df038a28-01ca-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T14:30:58", "message_id": "794bc3b8-01c9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T14:20:58", "message_id": "139c7dd8-01c8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T14:10:58", "message_id": "adf6ace8-01c6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T14:00:58", "message_id": "4848ac76-01c5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T13:50:58", "message_id": "e29c5b76-01c3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T13:40:58", "message_id": "7ce5f1c6-01c2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T13:30:58", "message_id": "1742fc7a-01c1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T13:20:58", "message_id": "b18aa9ba-01bf-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T13:10:57", "message_id": "4bdc91ec-01be-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T13:00:57", "message_id": "e62f572c-01bc-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T12:50:57", "message_id": "807d6334-01bb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T12:40:57", "message_id": "1ad28be6-01ba-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T12:30:57", "message_id": "b52a7516-01b8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T12:20:57", "message_id": "4f800c86-01b7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T12:10:57", "message_id": "e9d79b2a-01b5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T12:00:57", "message_id": "841fab0c-01b4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T11:50:57", "message_id": "1e75dd68-01b3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T11:40:57", "message_id": "b8d10952-01b1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T11:30:57", "message_id": "531c4f64-01b0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T11:20:57", "message_id": "ed6f950a-01ae-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T11:10:57", "message_id": "87c88154-01ad-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T11:00:56", "message_id": "220394f4-01ac-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T10:50:57", "message_id": "bc8395f8-01aa-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T10:40:56", "message_id": "56b4662c-01a9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T10:30:56", "message_id": "f11151aa-01a7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T10:20:56", "message_id": "8b573862-01a6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T10:10:56", "message_id": "25c5a7a0-01a5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T10:00:56", "message_id": "c0033c8a-01a3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T09:50:56", "message_id": "5a484990-01a2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T09:40:56", "message_id": "f4a5304a-01a0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T09:30:56", "message_id": "8f10d6ae-019f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T09:20:56", "message_id": "2945a094-019e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T09:10:55", "message_id": "c39e59a8-019c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T09:00:56", "message_id": "5e07e86c-019b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T08:50:55", "message_id": "f83efecc-0199-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T08:40:55", "message_id": "929e7bfc-0198-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T08:30:55", "message_id": "2cd2f772-0197-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T08:20:55", "message_id": "c731f1ee-0195-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T08:10:55", "message_id": "6172a138-0194-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T08:00:55", "message_id": "fbc6f2ae-0192-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T07:50:55", "message_id": "962a40a0-0191-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T07:40:55", "message_id": "307f6d58-0190-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T07:30:55", "message_id": "caca623e-018e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T07:20:54", "message_id": "6520705a-018d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T07:10:54", "message_id": "ff721c1e-018b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T07:00:54", "message_id": "99bfda88-018a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T06:50:54", "message_id": "34165b04-0189-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T06:40:54", "message_id": "ce690d98-0187-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T06:30:54", "message_id": "68bcac26-0186-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T06:20:54", "message_id": "0311e216-0185-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T06:10:54", "message_id": "9d575736-0183-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T06:00:54", "message_id": "379fc212-0182-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T05:50:54", "message_id": "d20132d4-0180-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T05:40:54", "message_id": "6c4e69b2-017f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T05:30:53", "message_id": "06950a78-017e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T05:20:53", "message_id": "a0ec317a-017c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T05:10:53", "message_id": "3b421444-017b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T05:00:53", "message_id": "d59ad1e0-0179-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T04:50:53", "message_id": "6fe00894-0178-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T04:40:53", "message_id": "0a2a5b9a-0177-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T04:30:53", "message_id": "a47f30dc-0175-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T04:20:53", "message_id": "3ecf333c-0174-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T04:10:53", "message_id": "d92211d6-0172-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T04:00:53", "message_id": "737d4b80-0171-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T03:50:53", "message_id": "0dced520-0170-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T03:40:53", "message_id": "a822bd5a-016e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T03:30:52", "message_id": "4277e508-016d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T03:20:52", "message_id": "dcc4012a-016b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T03:10:52", "message_id": "7715cad0-016a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T03:00:52", "message_id": "11683214-0169-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T02:50:52", "message_id": "abbc291c-0167-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T02:40:52", "message_id": "4605d40c-0166-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T02:30:52", "message_id": "e05710ea-0164-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T02:20:52", "message_id": "7abaf252-0163-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T02:10:52", "message_id": "150cacbc-0162-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T02:00:52", "message_id": "af5721a0-0160-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T01:50:52", "message_id": "49cf6262-015f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T01:40:52", "message_id": "e412ffa2-015d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T01:30:52", "message_id": "7e71ad2a-015c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T01:20:52", "message_id": "18c93552-015b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T01:10:51", "message_id": "b30b53ea-0159-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T01:00:51", "message_id": "4d66220a-0158-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T00:50:51", "message_id": "e7938838-0156-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T00:40:51", "message_id": "81eabf52-0155-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T00:30:51", "message_id": "1c3b2c2e-0154-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T00:20:51", "message_id": "b67e54ca-0152-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T00:10:51", "message_id": "50db9156-0151-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-10T00:00:51", "message_id": "eb292fe0-014f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T23:50:50", "message_id": "857b8bf8-014e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T23:40:50", "message_id": "1fc73376-014d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T23:30:50", "message_id": "ba0e039e-014b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T23:20:50", "message_id": "5471122a-014a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T23:10:50", "message_id": "eeba26e8-0148-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T23:00:50", "message_id": "894ad128-0147-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T22:50:50", "message_id": "235f3e90-0146-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T22:40:50", "message_id": "bda8c8ec-0144-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T22:30:50", "message_id": "57fe2e2a-0143-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T22:20:50", "message_id": "f261b66e-0141-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T22:10:49", "message_id": "8c9d8048-0140-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T22:00:49", "message_id": "26fc439c-013f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T21:50:49", "message_id": "c1505282-013d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T21:40:49", "message_id": "5ba8f2e6-013c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T21:30:49", "message_id": "f600124a-013a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T21:20:49", "message_id": "904985ea-0139-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T21:10:49", "message_id": "2aa592ca-0138-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T21:00:49", "message_id": "c4fca40a-0136-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T20:50:49", "message_id": "5f49c8dc-0135-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T20:40:49", "message_id": "f9a039ae-0133-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T20:30:49", "message_id": "93e55ff0-0132-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T20:20:49", "message_id": "2e584540-0131-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T20:10:49", "message_id": "c8942b08-012f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T20:00:49", "message_id": "62e4b436-012e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T19:50:49", "message_id": "fd41e564-012c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T19:40:48", "message_id": "9783610e-012b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T19:30:48", "message_id": "31db9f20-012a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T19:20:48", "message_id": "cc3d6eec-0128-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T19:10:48", "message_id": "66825a6e-0127-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T19:00:48", "message_id": "00cd1732-0126-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T18:50:48", "message_id": "9b18fc5e-0124-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T18:40:48", "message_id": "356e229a-0123-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T18:30:48", "message_id": "cfb7e2b6-0121-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T18:20:48", "message_id": "6a062cf8-0120-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T18:10:47", "message_id": "045669b4-011f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T18:00:47", "message_id": "9e9eef16-011d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T17:50:47", "message_id": "38f91a02-011c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T17:40:47", "message_id": "d3457ecc-011a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T17:30:47", "message_id": "6d944c8a-0119-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T17:20:47", "message_id": "07edaf76-0118-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T17:10:47", "message_id": "a23b4f18-0116-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T17:00:47", "message_id": "3c8e0224-0115-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T16:50:47", "message_id": "d6d92ca2-0113-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T16:40:47", "message_id": "7129c052-0112-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T16:30:47", "message_id": "0b8ae466-0111-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T16:20:46", "message_id": "a5d15d5e-010f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T16:10:46", "message_id": "40292adc-010e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T16:00:46", "message_id": "da77f7f0-010c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T15:50:49", "message_id": "764e1940-010b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T15:40:47", "message_id": "0f791f0e-010a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T15:30:46", "message_id": "a9922998-0108-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T15:20:46", "message_id": "43c92dc4-0107-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T15:10:46", "message_id": "de309e80-0105-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T15:00:46", "message_id": "786f1d16-0104-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T14:50:46", "message_id": "12c9f89c-0103-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T14:40:46", "message_id": "ad15833c-0101-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T14:30:46", "message_id": "475fbc2a-0100-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T14:20:46", "message_id": "e1bdb3d2-00fe-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T14:10:46", "message_id": "7c450f2e-00fd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T14:00:45", "message_id": "164cdfae-00fc-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T13:50:45", "message_id": "b0acbc92-00fa-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T13:40:45", "message_id": "4af62a06-00f9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T13:30:45", "message_id": "e547413c-00f7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T13:20:46", "message_id": "7ffc7d16-00f6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T13:10:45", "message_id": "19dc839c-00f5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T13:00:45", "message_id": "b439a296-00f3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T12:50:45", "message_id": "4e81139a-00f2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T12:40:45", "message_id": "e8da9350-00f0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T12:30:44", "message_id": "833097b2-00ef-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T12:20:44", "message_id": "1d7ae0ae-00ee-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T12:10:44", "message_id": "b7cc2b24-00ec-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T12:00:44", "message_id": "521f400a-00eb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T11:50:44", "message_id": "ec787114-00e9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T11:40:44", "message_id": "86c16f98-00e8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T11:30:44", "message_id": "211a77b2-00e7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T11:20:44", "message_id": "bb69bdac-00e5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T11:10:44", "message_id": "55c1525e-00e4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T11:00:44", "message_id": "f008e98c-00e2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T10:50:44", "message_id": "8a5ab0f8-00e1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T10:40:43", "message_id": "24aa3cfc-00e0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T10:30:43", "message_id": "bf019310-00de-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T10:20:43", "message_id": "594d4196-00dd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T10:10:43", "message_id": "f3a17412-00db-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T10:00:43", "message_id": "8e02bdc4-00da-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T09:50:43", "message_id": "2841e84e-00d9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T09:40:43", "message_id": "c29c77d0-00d7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T09:30:43", "message_id": "5cec97ea-00d6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T09:20:43", "message_id": "f73ece8c-00d4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T09:10:43", "message_id": "9198f32e-00d3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T09:00:43", "message_id": "2be583e0-00d2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T08:50:42", "message_id": "c62f43d4-00d0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T08:40:42", "message_id": "6089cca8-00cf-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T08:30:42", "message_id": "fade00fa-00cd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T08:20:42", "message_id": "952ec100-00cc-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T08:10:42", "message_id": "2f797fc2-00cb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T08:00:42", "message_id": "c9c941e0-00c9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T07:50:42", "message_id": "641a5ce0-00c8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T07:40:42", "message_id": "fe962404-00c6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T07:30:42", "message_id": "98c72f20-00c5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T07:20:42", "message_id": "330aa44c-00c4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T07:10:42", "message_id": "cd5d8796-00c2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T07:00:41", "message_id": "67b3172c-00c1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T06:50:41", "message_id": "01fe77ba-00c0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T06:40:41", "message_id": "9c52e230-00be-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T06:30:41", "message_id": "36a5aeaa-00bd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T06:20:41", "message_id": "d0f1c658-00bb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T06:10:41", "message_id": "6b483518-00ba-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T06:00:41", "message_id": "05a37b4c-00b9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T05:50:41", "message_id": "9fef5736-00b7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T05:40:41", "message_id": "3a46c370-00b6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T05:30:41", "message_id": "d4930030-00b4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T05:20:41", "message_id": "6ee44ca4-00b3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T05:10:41", "message_id": "0937c788-00b2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T05:00:40", "message_id": "a38caa8a-00b0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T04:50:40", "message_id": "3df25e96-00af-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T04:40:40", "message_id": "d84a2b60-00ad-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T04:30:40", "message_id": "72976586-00ac-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T04:20:40", "message_id": "0cf78086-00ab-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T04:10:40", "message_id": "a7511b44-00a9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T04:00:40", "message_id": "41c6883c-00a8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T03:50:41", "message_id": "dc437412-00a6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T03:40:40", "message_id": "76567dda-00a5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T03:30:40", "message_id": "10dc3a86-00a4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T03:20:40", "message_id": "ab04ed4e-00a2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T03:10:40", "message_id": "45606b90-00a1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T03:00:40", "message_id": "dfb474fe-009f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T02:50:40", "message_id": "79f7f95c-009e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T02:40:40", "message_id": "1480ced8-009d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T02:30:40", "message_id": "ae9ecdaa-009b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T02:20:40", "message_id": "48f4fc8c-009a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T02:10:39", "message_id": "e348bdb6-0098-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T02:00:39", "message_id": "7d9b0f56-0097-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T01:50:39", "message_id": "17d8482e-0096-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T01:40:39", "message_id": "b2280178-0094-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T01:30:39", "message_id": "4c7ab59c-0093-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T01:20:39", "message_id": "e6d72df2-0091-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T01:10:39", "message_id": "811be45e-0090-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T01:00:39", "message_id": "1b7a1b12-008f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T00:50:39", "message_id": "b5c0d58c-008d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T00:40:38", "message_id": "500b4cf0-008c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T00:30:38", "message_id": "ea6b8424-008a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T00:20:38", "message_id": "84c0c504-0089-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T00:10:38", "message_id": "1f0d35fe-0088-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-09T00:00:38", "message_id": "b95df5a0-0086-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T23:50:38", "message_id": "53a8f1ac-0085-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T23:40:38", "message_id": "ee09f072-0083-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T23:30:38", "message_id": "884fcd98-0082-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T23:20:38", "message_id": "2299ebce-0081-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T23:10:38", "message_id": "bcf67cd4-007f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T23:00:38", "message_id": "577ea68e-007e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T22:50:37", "message_id": "f1910c82-007c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T22:40:37", "message_id": "8be9967a-007b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T22:30:37", "message_id": "2629a38a-007a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T22:20:37", "message_id": "c085e33c-0078-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T22:10:37", "message_id": "5ad594c0-0077-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T22:00:37", "message_id": "f526f520-0075-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T21:50:37", "message_id": "8f82dca8-0074-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T21:40:37", "message_id": "29cc74f6-0073-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T21:30:37", "message_id": "c4219bd2-0071-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T21:20:37", "message_id": "5e827022-0070-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T21:10:37", "message_id": "f8c66dac-006e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T21:00:36", "message_id": "930fc2c0-006d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T20:50:36", "message_id": "2d5d4d7c-006c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T20:40:36", "message_id": "c7b036de-006a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T20:30:36", "message_id": "6208ce0a-0069-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T20:20:36", "message_id": "fc4df53c-0067-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T20:10:36", "message_id": "96aaec4a-0066-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T20:00:36", "message_id": "30f65f84-0065-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T19:50:36", "message_id": "cb4e4be8-0063-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T19:40:36", "message_id": "65993a7a-0062-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T19:30:36", "message_id": "ffeb6bcc-0060-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T19:20:36", "message_id": "9a37a2ce-005f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T19:10:35", "message_id": "348c7180-005e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T19:00:35", "message_id": "cee02c42-005c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T18:50:35", "message_id": "692ff2b6-005b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T18:40:35", "message_id": "037ca7c6-005a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T18:30:35", "message_id": "9ddcda36-0058-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T18:20:35", "message_id": "381cdf76-0057-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T18:10:35", "message_id": "d279feac-0055-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T18:00:35", "message_id": "6ccbe954-0054-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T17:50:35", "message_id": "071e9f3a-0053-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T17:40:35", "message_id": "a17855b4-0051-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T17:30:35", "message_id": "3bcc7732-0050-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T17:20:35", "message_id": "d619dda4-004e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T17:10:34", "message_id": "706a190c-004d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T17:00:34", "message_id": "0ab8cb54-004c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T16:50:34", "message_id": "a50baf20-004a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T16:40:34", "message_id": "3f66de16-0049-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T16:30:34", "message_id": "d9b8c864-0047-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T16:20:34", "message_id": "740d8ae6-0046-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T16:10:34", "message_id": "0e59ba86-0045-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T16:00:34", "message_id": "a8b543b8-0043-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T15:50:34", "message_id": "4304290e-0042-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T15:40:34", "message_id": "dd5123d8-0040-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T15:30:34", "message_id": "77a64dca-003f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T15:20:34", "message_id": "11fc31de-003e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T15:10:33", "message_id": "ac4b2c56-003c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T15:00:33", "message_id": "469601f2-003b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T14:50:33", "message_id": "e0ee680e-0039-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T14:40:33", "message_id": "7b3881bc-0038-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T14:30:33", "message_id": "1592dcaa-0037-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T14:20:33", "message_id": "afde585e-0035-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T14:10:33", "message_id": "4a407596-0034-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T14:00:33", "message_id": "e4c1c522-0032-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T13:50:33", "message_id": "7ed3c11c-0031-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T13:40:33", "message_id": "1931b90a-0030-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T13:30:33", "message_id": "b37fd534-002e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T13:20:33", "message_id": "4ddb3076-002d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T13:10:32", "message_id": "e827b9a8-002b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T13:00:32", "message_id": "8275e040-002a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T12:50:32", "message_id": "1cca1906-0029-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T12:40:32", "message_id": "b71014a4-0027-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T12:30:32", "message_id": "51691304-0026-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T12:20:32", "message_id": "ebb30c8c-0024-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T12:10:32", "message_id": "85fd1546-0023-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T12:00:32", "message_id": "205a489a-0022-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T11:50:32", "message_id": "baa63352-0020-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T11:40:32", "message_id": "550d105c-001f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T11:30:32", "message_id": "ef62e250-001d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T11:20:31", "message_id": "89a449a0-001c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T11:10:32", "message_id": "24153514-001b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T11:00:31", "message_id": "be54c006-0019-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T10:50:31", "message_id": "58a6b21a-0018-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T10:40:31", "message_id": "f30307c0-0016-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T10:30:31", "message_id": "8d707718-0015-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T10:20:31", "message_id": "27ba4df0-0014-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T10:10:31", "message_id": "c22124ec-0012-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T10:00:31", "message_id": "5c4558c4-0011-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T09:50:31", "message_id": "f694bf5c-000f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T09:40:31", "message_id": "90ddf10c-000e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T09:30:31", "message_id": "2b40a61a-000d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T09:20:30", "message_id": "c585227a-000b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T09:10:30", "message_id": "5fd3c37e-000a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T09:00:30", "message_id": "fa2db742-0008-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T08:50:30", "message_id": "947c6e6c-0007-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T08:40:30", "message_id": "2ed55b6a-0006-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T08:30:30", "message_id": "c92b2930-0004-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T08:20:30", "message_id": "6376dcd4-0003-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T08:10:30", "message_id": "fdd66a26-0001-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T08:00:30", "message_id": "981ca156-0000-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T07:50:30", "message_id": "326bb4b0-ffff-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T07:40:30", "message_id": "ccbc8d34-fffd-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T07:30:30", "message_id": "670b6bfa-fffc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T07:20:29", "message_id": "01652c38-fffb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T07:10:29", "message_id": "9bac9f4e-fff9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T07:00:29", "message_id": "35f7cfe4-fff8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T06:50:29", "message_id": "d05acee4-fff6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T06:40:29", "message_id": "6aa2b0cc-fff5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T06:30:29", "message_id": "04f01fea-fff4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T06:20:29", "message_id": "9f43f51e-fff2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T06:10:29", "message_id": "39947c8a-fff1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T06:00:29", "message_id": "d3ecba38-ffef-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T05:50:29", "message_id": "6e456172-ffee-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T05:40:29", "message_id": "089e4da8-ffed-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T05:30:28", "message_id": "a2e709d8-ffeb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T05:20:28", "message_id": "3d2e68e4-ffea-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T05:10:28", "message_id": "d783b540-ffe8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T05:00:28", "message_id": "71d8b566-ffe7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T04:50:28", "message_id": "0c1c7dd0-ffe6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T04:40:28", "message_id": "a67def46-ffe4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T04:30:28", "message_id": "40c1d15a-ffe3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T04:20:28", "message_id": "db1bd7a2-ffe1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T04:10:28", "message_id": "756cb49a-ffe0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T04:00:28", "message_id": "0fb52bba-ffdf-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T03:50:28", "message_id": "aa0c3b7e-ffdd-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T03:40:27", "message_id": "4459adbc-ffdc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T03:30:27", "message_id": "deaaf9e0-ffda-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T03:20:27", "message_id": "78fa748c-ffd9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T03:10:27", "message_id": "134edb38-ffd8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T03:00:27", "message_id": "ada15bd6-ffd6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T02:50:27", "message_id": "47ec9004-ffd5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T02:40:27", "message_id": "e23b24ba-ffd3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T02:30:27", "message_id": "7c95b55e-ffd2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T02:20:27", "message_id": "16fff8ae-ffd1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T02:10:27", "message_id": "b129d500-ffcf-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T02:00:26", "message_id": "4b855f0e-ffce-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T01:50:26", "message_id": "e5cfc132-ffcc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T01:40:26", "message_id": "8021645e-ffcb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T01:30:26", "message_id": "1a728774-ffca-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T01:20:26", "message_id": "b4ca10d2-ffc8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T01:10:26", "message_id": "4f2020a6-ffc7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T01:00:26", "message_id": "e96d9b40-ffc5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T00:50:26", "message_id": "83c30c18-ffc4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T00:40:26", "message_id": "1e175744-ffc3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T00:30:26", "message_id": "b86562ac-ffc1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T00:20:26", "message_id": "5310ab24-ffc0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T00:10:25", "message_id": "ed0596ec-ffbe-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-08T00:00:26", "message_id": "87816d6a-ffbd-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T23:50:25", "message_id": "21b1cd1e-ffbc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T23:40:25", "message_id": "bc07ab60-ffba-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T23:30:25", "message_id": "56607004-ffb9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T23:20:25", "message_id": "f0cc0e66-ffb7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T23:10:25", "message_id": "8b1d1070-ffb6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T23:00:25", "message_id": "259543ea-ffb5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T22:50:25", "message_id": "bf8fd23c-ffb3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T22:40:25", "message_id": "59edb3fa-ffb2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T22:30:25", "message_id": "f43dcb9a-ffb0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T22:20:24", "message_id": "8e7e2c56-ffaf-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T22:10:24", "message_id": "28e388ec-ffae-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T22:00:24", "message_id": "c329c8c8-ffac-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T21:50:24", "message_id": "5d6c3a08-ffab-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T21:40:24", "message_id": "f7c63178-ffa9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T21:30:24", "message_id": "921e9d48-ffa8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T21:20:24", "message_id": "2c66a816-ffa7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T21:10:24", "message_id": "c6aad232-ffa5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T21:00:24", "message_id": "61053018-ffa4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T20:50:24", "message_id": "fb5560f4-ffa2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T20:40:23", "message_id": "95a1552a-ffa1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T20:30:23", "message_id": "2ff75004-ffa0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T20:20:23", "message_id": "ca49be0a-ff9e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T20:10:23", "message_id": "648ee366-ff9d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T20:00:23", "message_id": "fee82730-ff9b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T19:50:23", "message_id": "9931cd70-ff9a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T19:40:23", "message_id": "338b4ac4-ff99-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T19:30:23", "message_id": "cddc8806-ff97-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T19:20:23", "message_id": "68324fd2-ff96-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T19:10:23", "message_id": "028134e2-ff95-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T19:00:23", "message_id": "9cca36ae-ff93-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T18:50:22", "message_id": "3723f2dc-ff92-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T18:40:22", "message_id": "d17600fc-ff90-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T18:30:22", "message_id": "6bb66d3e-ff8f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T18:20:22", "message_id": "0606108a-ff8e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T18:10:22", "message_id": "a05b410c-ff8c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T18:00:22", "message_id": "3aaf6816-ff8b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T17:50:22", "message_id": "d4ff7066-ff89-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T17:40:22", "message_id": "6f5710a8-ff88-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T17:30:22", "message_id": "09a6733a-ff87-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T17:20:22", "message_id": "a3f292fe-ff85-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T17:10:22", "message_id": "3e4b4140-ff84-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T17:00:21", "message_id": "d89037a8-ff82-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T16:50:21", "message_id": "72d8cb24-ff81-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T16:40:21", "message_id": "0d2f1072-ff80-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T16:30:21", "message_id": "a78bead4-ff7e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T16:20:21", "message_id": "41cf34cc-ff7d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T16:10:21", "message_id": "dc299618-ff7b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T16:00:21", "message_id": "767b08fc-ff7a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T15:50:21", "message_id": "10cf22d2-ff79-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T15:40:21", "message_id": "ab1a70fa-ff77-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T15:30:21", "message_id": "4566c67e-ff76-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T15:20:20", "message_id": "dfba8eb0-ff74-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T15:10:20", "message_id": "7a07ce26-ff73-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T15:00:20", "message_id": "1457e88c-ff72-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T14:50:20", "message_id": "aeab06a0-ff70-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T14:40:20", "message_id": "48f9beba-ff6f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T14:30:20", "message_id": "e35ff034-ff6d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T14:20:20", "message_id": "7dafb31a-ff6c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T14:10:20", "message_id": "17fec854-ff6b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T14:00:20", "message_id": "b24f266c-ff69-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T13:50:20", "message_id": "4c9c9b8e-ff68-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T13:40:20", "message_id": "e7049a52-ff66-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T13:30:20", "message_id": "814a02f2-ff65-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T13:20:19", "message_id": "1b9be9bc-ff64-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T13:10:19", "message_id": "b5f2bccc-ff62-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T13:00:19", "message_id": "504de9a6-ff61-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T12:50:19", "message_id": "eaa3a880-ff5f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T12:40:19", "message_id": "84ee6206-ff5e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T12:30:19", "message_id": "1f449804-ff5d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T12:20:19", "message_id": "b999e8de-ff5b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T12:10:19", "message_id": "53df6c04-ff5a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T12:00:19", "message_id": "ee2d9cd8-ff58-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T11:50:19", "message_id": "888620a4-ff57-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T11:40:19", "message_id": "22dae470-ff56-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T11:30:19", "message_id": "bd2b1696-ff54-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T11:20:18", "message_id": "577afd30-ff53-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T11:10:19", "message_id": "f1e89500-ff51-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T11:00:18", "message_id": "8c2f3a9e-ff50-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T10:50:18", "message_id": "2682c98c-ff4f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T10:40:18", "message_id": "c0de96d4-ff4d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T10:30:18", "message_id": "5b2746b6-ff4c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T10:20:18", "message_id": "f57a47ba-ff4a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T10:10:18", "message_id": "8fd8321a-ff49-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T10:00:18", "message_id": "2a33dfa0-ff48-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T09:50:18", "message_id": "c47280dc-ff46-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T09:40:18", "message_id": "5eccb0c8-ff45-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T09:30:18", "message_id": "f90c155e-ff43-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T09:20:18", "message_id": "936533a8-ff42-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T09:10:17", "message_id": "2db62d6a-ff41-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T09:00:17", "message_id": "c7fa6848-ff3f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T08:50:17", "message_id": "624d68ca-ff3e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T08:40:17", "message_id": "fca50e8e-ff3c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T08:30:17", "message_id": "96f2da2c-ff3b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T08:20:17", "message_id": "31360322-ff3a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T08:10:17", "message_id": "cb86e772-ff38-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T08:00:17", "message_id": "65d60e36-ff37-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T07:50:17", "message_id": "0026f36c-ff36-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T07:40:16", "message_id": "9a743ecc-ff34-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T07:30:16", "message_id": "34d018d0-ff33-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T07:20:16", "message_id": "cf176120-ff31-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T07:10:16", "message_id": "6966b9da-ff30-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T07:00:16", "message_id": "03c0f178-ff2f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T06:50:16", "message_id": "9e133238-ff2d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T06:40:16", "message_id": "386336be-ff2c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T06:30:16", "message_id": "d2aa1500-ff2a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T06:20:16", "message_id": "6d0c7216-ff29-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T06:10:16", "message_id": "07697e6e-ff28-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T06:00:16", "message_id": "a1a99b96-ff26-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T05:50:16", "message_id": "3c05cce8-ff25-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T05:40:15", "message_id": "d647e496-ff23-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T05:30:16", "message_id": "70c113be-ff22-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T05:20:15", "message_id": "0af4ff88-ff21-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T05:10:15", "message_id": "a539ede4-ff1f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T05:00:15", "message_id": "3fa0ccf6-ff1e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T04:50:15", "message_id": "d9e455aa-ff1c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T04:40:15", "message_id": "743d61c0-ff1b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T04:30:15", "message_id": "0e9bcd4e-ff1a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T04:20:15", "message_id": "a8dccad6-ff18-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T04:10:15", "message_id": "4338db58-ff17-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T04:00:15", "message_id": "dd8613da-ff15-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T03:50:15", "message_id": "77ef2aee-ff14-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T03:40:14", "message_id": "122ff482-ff13-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T03:30:14", "message_id": "ac77646e-ff11-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T03:20:14", "message_id": "46ce19ba-ff10-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T03:10:14", "message_id": "e132b5a8-ff0e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T03:00:14", "message_id": "7b7085de-ff0d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T02:50:14", "message_id": "15de43b0-ff0c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T02:40:14", "message_id": "b0286d4e-ff0a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T02:30:14", "message_id": "4a7a73f8-ff09-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T02:20:14", "message_id": "e4c2a09a-ff07-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T02:10:14", "message_id": "7f135b6e-ff06-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T02:00:14", "message_id": "1960b11e-ff05-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T01:50:14", "message_id": "b3c0f5e0-ff03-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T01:40:13", "message_id": "4e057fba-ff02-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T01:30:13", "message_id": "e85dd2d0-ff00-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T01:20:13", "message_id": "82af9fb4-feff-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T01:10:13", "message_id": "1d088eec-fefe-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T01:00:13", "message_id": "b74b7dea-fefc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T00:50:13", "message_id": "51a80536-fefb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T00:40:13", "message_id": "ebfd550c-fef9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T00:30:13", "message_id": "863f4cee-fef8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T00:20:13", "message_id": "20913458-fef7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T00:10:13", "message_id": "bae40faa-fef5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-07T00:00:12", "message_id": "552bf9bc-fef4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T23:50:12", "message_id": "ef8f0050-fef2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T23:40:12", "message_id": "89df754c-fef1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T23:30:12", "message_id": "243575da-fef0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T23:20:12", "message_id": "be96f86c-feee-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T23:10:12", "message_id": "58cef8c8-feed-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T23:00:12", "message_id": "f36c9f5e-feeb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T22:50:12", "message_id": "8d78aad6-feea-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T22:40:12", "message_id": "27cdab7e-fee9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T22:30:12", "message_id": "c22000b6-fee7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T22:20:12", "message_id": "5c68b35e-fee6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T22:10:12", "message_id": "f6d061fa-fee4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T22:00:12", "message_id": "9139c4c2-fee3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T21:50:11", "message_id": "2b6948ee-fee2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T21:40:12", "message_id": "c5e0c85e-fee0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T21:30:11", "message_id": "601798aa-fedf-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T21:20:11", "message_id": "fa6a82e8-fedd-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T21:10:11", "message_id": "94b32eb0-fedc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T21:00:11", "message_id": "2efa0144-fedb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T20:50:11", "message_id": "c956ad52-fed9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T20:40:11", "message_id": "63b54efa-fed8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T20:30:11", "message_id": "fe0110d6-fed6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T20:20:11", "message_id": "98738f88-fed5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T20:10:11", "message_id": "329e0680-fed4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T20:00:11", "message_id": "cd071c68-fed2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T19:50:10", "message_id": "674f3a78-fed1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T19:40:10", "message_id": "01a6a1e4-fed0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T19:30:10", "message_id": "9bf787ba-fece-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T19:20:10", "message_id": "36445b56-fecd-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T19:10:10", "message_id": "d094625c-fecb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T19:00:10", "message_id": "6ad43376-feca-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T18:50:10", "message_id": "0550be62-fec9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T18:40:10", "message_id": "9f8801d6-fec7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T18:30:10", "message_id": "39d1f488-fec6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T18:20:10", "message_id": "d428160e-fec4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T18:10:09", "message_id": "6e748ad2-fec3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T18:00:09", "message_id": "08b92960-fec2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T17:50:09", "message_id": "a311692a-fec0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T17:40:09", "message_id": "3d6925be-febf-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T17:30:09", "message_id": "d7b4b108-febd-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T17:20:09", "message_id": "720c422c-febc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T17:10:09", "message_id": "0c524612-febb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T17:00:09", "message_id": "a6a49b40-feb9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T16:50:09", "message_id": "40f82e66-feb8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T16:40:09", "message_id": "db411976-feb6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T16:30:08", "message_id": "75986cec-feb5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T16:20:08", "message_id": "0fe5222e-feb4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T16:10:08", "message_id": "aa425730-feb2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T16:00:08", "message_id": "4494c6c6-feb1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T15:50:08", "message_id": "dedda06a-feaf-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T15:40:08", "message_id": "793bb522-feae-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T15:30:08", "message_id": "1381077e-fead-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T15:20:08", "message_id": "add6789c-feab-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T15:10:08", "message_id": "482442dc-feaa-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T15:00:08", "message_id": "e2756232-fea8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T14:50:08", "message_id": "7ccb0dc0-fea7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T14:40:08", "message_id": "172977e6-fea6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T14:30:08", "message_id": "b1830c8c-fea4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T14:20:07", "message_id": "4bd19c92-fea3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T14:10:07", "message_id": "e61e81fe-fea1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T14:00:07", "message_id": "808c45ac-fea0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T13:50:07", "message_id": "1acff8a4-fe9f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T13:40:07", "message_id": "b512874e-fe9d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T13:30:07", "message_id": "4f658c58-fe9c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T13:20:07", "message_id": "e9b59f16-fe9a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T13:10:07", "message_id": "840433fe-fe99-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T13:00:07", "message_id": "1e5fac28-fe98-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T12:50:07", "message_id": "b8b45d0c-fe96-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T12:40:07", "message_id": "53190b38-fe95-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T12:30:07", "message_id": "ed5858cc-fe93-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T12:20:06", "message_id": "87a3a80c-fe92-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T12:10:06", "message_id": "220173ea-fe91-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T12:00:06", "message_id": "bc52888c-fe8f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T11:50:06", "message_id": "56a10c1c-fe8e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T11:40:06", "message_id": "f0ff1224-fe8c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T11:30:07", "message_id": "8bd09036-fe8b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T11:20:06", "message_id": "2597554e-fe8a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T11:10:06", "message_id": "bfe34d62-fe88-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T11:00:06", "message_id": "5a3c4a46-fe87-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T10:50:06", "message_id": "f49056ca-fe85-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T10:40:06", "message_id": "8ee1ee52-fe84-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T10:30:05", "message_id": "292fb0c2-fe83-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T10:20:05", "message_id": "c385b7d6-fe81-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T10:10:05", "message_id": "5dcc1e5e-fe80-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T10:00:05", "message_id": "f8235ca8-fe7e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T09:50:05", "message_id": "926f930a-fe7d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T09:40:05", "message_id": "2cc63064-fe7c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T09:30:05", "message_id": "c71b23a6-fe7a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T09:20:05", "message_id": "6164a9ac-fe79-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T09:10:05", "message_id": "fbbd6572-fe77-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T09:00:05", "message_id": "960bd926-fe76-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T08:50:05", "message_id": "305d0c86-fe75-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T08:40:04", "message_id": "caafcc3a-fe73-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T08:30:04", "message_id": "64fe6f5a-fe72-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T08:20:04", "message_id": "ff51fd44-fe70-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T08:10:04", "message_id": "99a6f626-fe6f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T08:00:04", "message_id": "33f9046e-fe6e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T07:50:04", "message_id": "ce49a746-fe6c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T07:40:04", "message_id": "68aab5ca-fe6b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T07:30:04", "message_id": "02fae3cc-fe6a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T07:20:04", "message_id": "9d4f00f4-fe68-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T07:10:04", "message_id": "379e9950-fe67-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T07:00:04", "message_id": "d1eea164-fe65-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T06:50:04", "message_id": "6c3e5716-fe64-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T06:40:04", "message_id": "069b0234-fe63-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T06:30:03", "message_id": "a0edd1ba-fe61-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T06:20:03", "message_id": "3b3846d0-fe60-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T06:10:03", "message_id": "d583eebc-fe5e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T06:00:03", "message_id": "6fd55a16-fe5d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T05:50:03", "message_id": "0a27a4fe-fe5c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T05:40:03", "message_id": "a47ebdbe-fe5a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T05:30:03", "message_id": "3ec66c16-fe59-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T05:20:03", "message_id": "d91a507c-fe57-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T05:10:03", "message_id": "7371c9d6-fe56-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T05:00:03", "message_id": "0dbd5dc2-fe55-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T04:50:02", "message_id": "a80fb3a4-fe53-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T04:40:02", "message_id": "42661602-fe52-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T04:30:02", "message_id": "dcbd9bdc-fe50-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T04:20:02", "message_id": "77061e0a-fe4f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T04:10:02", "message_id": "114cff1c-fe4e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T04:00:02", "message_id": "aba8d06a-fe4c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T03:50:02", "message_id": "45f79090-fe4b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T03:40:02", "message_id": "e04ca5ec-fe49-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T03:30:02", "message_id": "7a970400-fe48-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T03:20:02", "message_id": "14e49614-fe47-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T03:10:02", "message_id": "af412788-fe45-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T03:00:01", "message_id": "498c4658-fe44-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T02:50:01", "message_id": "e3db8ed2-fe42-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T02:40:01", "message_id": "7e29fe8a-fe41-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T02:30:01", "message_id": "1888be46-fe40-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T02:20:01", "message_id": "b2dbeb00-fe3e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T02:10:01", "message_id": "4d26c1b4-fe3d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T02:00:01", "message_id": "e77dd4a2-fe3b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T01:50:01", "message_id": "81d0eb72-fe3a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T01:40:01", "message_id": "1c2ecede-fe39-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T01:30:01", "message_id": "b67e2f86-fe37-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T01:20:01", "message_id": "50d9e130-fe36-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T01:10:01", "message_id": "eb206aae-fe34-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T01:00:01", "message_id": "8579e0aa-fe33-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T00:50:00", "message_id": "1fc0dd5a-fe32-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T00:40:00", "message_id": "ba198ba6-fe30-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T00:30:00", "message_id": "5464fdaa-fe2f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T00:20:00", "message_id": "eeb45812-fe2d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T00:10:00", "message_id": "8908114e-fe2c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-06T00:00:00", "message_id": "235b1158-fe2b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T23:50:00", "message_id": "bdadc234-fe29-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T23:40:00", "message_id": "5802497e-fe28-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T23:30:00", "message_id": "f250f798-fe26-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T23:20:00", "message_id": "8cae568e-fe25-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T23:10:00", "message_id": "273a7586-fe24-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T23:00:00", "message_id": "c18d30ee-fe22-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T22:49:59", "message_id": "5b962f08-fe21-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T22:39:59", "message_id": "f5e22b68-fe1f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T22:29:59", "message_id": "903c459c-fe1e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T22:19:59", "message_id": "2a909cbc-fe1d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T22:09:59", "message_id": "c4dd7a94-fe1b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T21:59:59", "message_id": "5f2dc510-fe1a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T21:49:59", "message_id": "f97f014e-fe18-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T21:39:59", "message_id": "93cb75cc-fe17-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T21:29:59", "message_id": "2e1561f8-fe16-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T21:19:58", "message_id": "c86cc8ba-fe14-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T21:09:58", "message_id": "62bdc84e-fe13-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T20:59:58", "message_id": "fd121a8c-fe11-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T20:49:58", "message_id": "9758a1bc-fe10-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T20:39:58", "message_id": "31a9e5de-fe0f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T20:29:58", "message_id": "cbf952fc-fe0d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T20:19:58", "message_id": "6653d9e6-fe0c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T20:09:58", "message_id": "009db1f4-fe0b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T19:59:58", "message_id": "9af3a81e-fe09-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T19:49:58", "message_id": "35466250-fe08-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T19:39:58", "message_id": "cfa32574-fe06-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T19:29:58", "message_id": "69efc738-fe05-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T19:19:57", "message_id": "0440ff34-fe04-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T19:09:57", "message_id": "9e970134-fe02-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T18:59:57", "message_id": "38e61470-fe01-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T18:49:57", "message_id": "d334f728-fdff-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T18:39:57", "message_id": "6d8ddcf6-fdfe-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T18:29:57", "message_id": "07e0be6a-fdfd-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T18:19:57", "message_id": "a2362416-fdfb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T18:09:57", "message_id": "3c95c680-fdfa-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T17:59:57", "message_id": "d6db2d5e-fdf8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T17:49:57", "message_id": "7131296e-fdf7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T17:39:57", "message_id": "0b822b14-fdf6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T17:29:57", "message_id": "a5d81590-fdf4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T17:19:56", "message_id": "40279bf4-fdf3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T17:09:56", "message_id": "da7bc88a-fdf1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T16:59:56", "message_id": "74ccc526-fdf0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T16:49:56", "message_id": "0f1da0a2-fdef-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T16:39:56", "message_id": "a9790a30-fded-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T16:29:56", "message_id": "43f3842a-fdec-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T16:19:56", "message_id": "de24f404-fdea-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T16:09:56", "message_id": "788180a0-fde9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T15:59:56", "message_id": "12d163f2-fde8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T15:49:56", "message_id": "ad294052-fde6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T15:39:56", "message_id": "477d44b6-fde5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T15:29:56", "message_id": "e1ce8446-fde3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T15:19:56", "message_id": "7c4fe214-fde2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T15:09:56", "message_id": "166962fa-fde1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T14:59:55", "message_id": "b0b904ac-fddf-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T14:49:55", "message_id": "4b16a966-fdde-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T14:39:55", "message_id": "e5610158-fddc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T14:29:55", "message_id": "7fb58550-fddb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T14:19:55", "message_id": "1a065ab4-fdda-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T14:09:55", "message_id": "b45ca52a-fdd8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T13:59:55", "message_id": "4ea87fac-fdd7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T13:49:55", "message_id": "e8fda8fe-fdd5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T13:39:55", "message_id": "8349f130-fdd4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T13:29:55", "message_id": "1d97f3e2-fdd3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T13:19:55", "message_id": "b7e99664-fdd1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T13:09:54", "message_id": "523e4bbc-fdd0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T12:59:54", "message_id": "ec91a0e4-fdce-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T12:49:54", "message_id": "86e25f46-fdcd-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T12:39:54", "message_id": "2131310a-fdcc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T12:29:54", "message_id": "bb81b2a4-fdca-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T12:19:54", "message_id": "55d578ba-fdc9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T12:09:54", "message_id": "f0200202-fdc7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T11:59:54", "message_id": "8a75cc08-fdc6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T11:49:54", "message_id": "24cb45dc-fdc5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T11:39:54", "message_id": "bf1fa116-fdc3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T11:29:54", "message_id": "596f35e4-fdc2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T11:19:53", "message_id": "f3c56890-fdc0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T11:09:53", "message_id": "8e16817e-fdbf-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T10:59:53", "message_id": "286a49e2-fdbe-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T10:49:54", "message_id": "c2e5ca70-fdbc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T10:39:53", "message_id": "5d0c27ea-fdbb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T10:29:53", "message_id": "f768a82e-fdb9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T10:19:53", "message_id": "91b67462-fdb8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T10:09:53", "message_id": "2c176f5e-fdb7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T09:59:53", "message_id": "c669d878-fdb5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T09:49:53", "message_id": "60be3538-fdb4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T09:39:53", "message_id": "fb0f004c-fdb2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T09:29:53", "message_id": "9564022a-fdb1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T09:19:53", "message_id": "2fb26fa8-fdb0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T09:09:52", "message_id": "c9ffc756-fdae-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T08:59:52", "message_id": "64567702-fdad-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T08:49:52", "message_id": "feb7585e-fdab-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T08:39:52", "message_id": "98fc3896-fdaa-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T08:29:52", "message_id": "334c5d7e-fda9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T08:19:52", "message_id": "cd9babc0-fda7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T08:09:52", "message_id": "68081114-fda6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T07:59:52", "message_id": "024359ac-fda5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T07:49:52", "message_id": "9c915c4a-fda3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T07:39:52", "message_id": "36e97e5a-fda2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T07:29:52", "message_id": "d13819b4-fda0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T07:19:52", "message_id": "6b8c108a-fd9f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T07:09:52", "message_id": "0604819e-fd9e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T06:59:51", "message_id": "a028ab30-fd9c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T06:49:51", "message_id": "3a7f8a16-fd9b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T06:39:51", "message_id": "d4c6e2e2-fd99-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T06:29:51", "message_id": "6f1b9f4c-fd98-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T06:19:51", "message_id": "0966c5e2-fd97-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T06:09:51", "message_id": "a3bc4768-fd95-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T05:59:51", "message_id": "3e0fcd32-fd94-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T05:49:51", "message_id": "d86133aa-fd92-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T05:39:51", "message_id": "72b2c768-fd91-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T05:29:51", "message_id": "0d0f93ce-fd90-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T05:19:50", "message_id": "a75db05c-fd8e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T05:09:50", "message_id": "41a86c58-fd8d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T04:59:50", "message_id": "dc090ebc-fd8b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T04:49:50", "message_id": "76666830-fd8a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T04:39:50", "message_id": "10c4ea0c-fd89-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T04:29:50", "message_id": "ab18a99c-fd87-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T04:19:50", "message_id": "45516b40-fd86-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T04:09:50", "message_id": "dfbd0484-fd84-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T03:59:50", "message_id": "79d4727a-fd83-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T03:49:50", "message_id": "1444ceec-fd82-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T03:39:50", "message_id": "ae9d7fc2-fd80-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T03:29:50", "message_id": "48f93810-fd7f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T03:19:50", "message_id": "e358627a-fd7d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T03:09:50", "message_id": "7da4a85e-fd7c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T02:59:49", "message_id": "17db5604-fd7b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T02:49:49", "message_id": "b21cc254-fd79-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T02:39:49", "message_id": "4cad8990-fd78-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T02:29:49", "message_id": "e6eef7b6-fd76-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T02:19:49", "message_id": "814a5d3e-fd75-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T02:09:49", "message_id": "1b95ac10-fd74-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T01:59:49", "message_id": "b5d47a10-fd72-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T01:49:49", "message_id": "5028bfc4-fd71-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T01:39:49", "message_id": "ea8663fc-fd6f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T01:29:49", "message_id": "8503766a-fd6e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T01:19:49", "message_id": "1f648d40-fd6d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T01:09:49", "message_id": "b9a12c1c-fd6b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T00:59:48", "message_id": "53da493c-fd6a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T00:49:48", "message_id": "ee1b42fa-fd68-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T00:39:48", "message_id": "88826d0c-fd67-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T00:29:48", "message_id": "22db3e44-fd66-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T00:19:48", "message_id": "bd369044-fd64-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-05T00:09:48", "message_id": "57a7665a-fd63-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-04T23:59:48", "message_id": "f1fd45b4-fd61-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-04T23:49:48", "message_id": "8c3877cc-fd60-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-04T23:39:05", "message_id": "0cfcd288-fd5f-11e2-b8cf-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0c5a6b84fd2a43999c8820060c57da30", "timestamp": "2013-08-04T23:29:05", "message_id": "a766b49e-fd5d-11e2-b8cf-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0c5a6b84fd2a43999c8820060c57da30", "resource_metadata": {}, "counter_type": "gauge"}]} \ No newline at end of file diff --git a/tests/data/map_fixture_4.json b/tests/data/map_fixture_4.json new file mode 100644 index 0000000..43082db --- /dev/null +++ b/tests/data/map_fixture_4.json @@ -0,0 +1 @@ +{"http://localhost:8777/v2/meters/storage.objects.size?q.field=resource_id&q.value=0d0854c42a7b49b0a6348b2746d60e7f": [{"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-12T04:01:18", "message_id": "d76a6d38-0303-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-12T03:51:18", "message_id": "71b9f9fa-0302-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-12T03:41:18", "message_id": "0c08053a-0301-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-12T03:31:18", "message_id": "a66b6b6e-02ff-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-12T03:21:18", "message_id": "40b7068a-02fe-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-12T03:11:18", "message_id": "db0cedb4-02fc-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-12T03:01:17", "message_id": "7552abf4-02fb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-12T02:51:17", "message_id": "0faecc0c-02fa-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-12T02:41:17", "message_id": "a9eae302-02f8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-12T02:31:17", "message_id": "44476b8e-02f7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-12T02:21:17", "message_id": "de9278d4-02f5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-12T02:11:17", "message_id": "78e5977e-02f4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-12T02:01:17", "message_id": "133e65b4-02f3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-12T01:51:17", "message_id": "ad940dbe-02f1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-12T01:41:17", "message_id": "47dffe66-02f0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-12T01:31:17", "message_id": "e233382c-02ee-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-12T01:21:17", "message_id": "7c7def8c-02ed-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-12T01:11:16", "message_id": "16d53358-02ec-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-12T01:01:16", "message_id": "b1128224-02ea-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-12T00:51:16", "message_id": "4b78a2b4-02e9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-12T00:41:16", "message_id": "e5be61e4-02e7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-12T00:31:16", "message_id": "800de32a-02e6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-12T00:21:16", "message_id": "1a8c9542-02e5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-12T00:11:16", "message_id": "b4ae57b6-02e3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-12T00:01:16", "message_id": "4f0218e0-02e2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T23:51:16", "message_id": "e9550cec-02e0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T23:41:16", "message_id": "83aee918-02df-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T23:31:16", "message_id": "1e04bbb6-02de-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T23:21:15", "message_id": "b84b473c-02dc-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T23:11:15", "message_id": "52ac195c-02db-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T23:01:16", "message_id": "ed35268c-02d9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T22:51:15", "message_id": "874c844c-02d8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T22:41:15", "message_id": "219885d4-02d7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T22:31:15", "message_id": "bbeba56e-02d5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T22:21:15", "message_id": "5636f468-02d4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T22:11:15", "message_id": "f0872d32-02d2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T22:01:15", "message_id": "8addd298-02d1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T21:51:15", "message_id": "25366154-02d0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T21:41:15", "message_id": "bf873172-02ce-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T21:31:14", "message_id": "59d3402e-02cd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T21:21:14", "message_id": "f429d1c6-02cb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T21:11:14", "message_id": "8e7aac7a-02ca-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T21:01:14", "message_id": "28c9fd3c-02c9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T20:51:14", "message_id": "c31fa7e4-02c7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T20:41:14", "message_id": "5d6a5a44-02c6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T20:31:14", "message_id": "f7c3b7c2-02c4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T20:21:14", "message_id": "9214c08e-02c3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T20:11:14", "message_id": "2c71c1e2-02c2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T20:01:14", "message_id": "c6bbc66e-02c0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T19:51:14", "message_id": "6110f39e-02bf-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T19:41:14", "message_id": "fb5ee2b4-02bd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T19:31:13", "message_id": "95b46962-02bc-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T19:21:13", "message_id": "3002fea4-02bb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T19:11:13", "message_id": "ca500972-02b9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T19:01:13", "message_id": "649afd18-02b8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T18:51:13", "message_id": "fee8c212-02b6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T18:41:13", "message_id": "994127fc-02b5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T18:31:13", "message_id": "338dfdaa-02b4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T18:21:13", "message_id": "cddf17ec-02b2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T18:11:13", "message_id": "682ffdf4-02b1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T18:01:13", "message_id": "027f0b5e-02b0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T17:51:12", "message_id": "9cd4d58c-02ae-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T17:41:12", "message_id": "37227ff6-02ad-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T17:31:12", "message_id": "d17a7448-02ab-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T17:21:12", "message_id": "6bc83f3c-02aa-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T17:11:12", "message_id": "06159032-02a9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T17:01:12", "message_id": "a0757d2e-02a7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T16:51:12", "message_id": "3ac6362c-02a6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T16:41:12", "message_id": "d525c6b2-02a4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T16:31:12", "message_id": "6f6e9570-02a3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T16:21:12", "message_id": "09b69fa8-02a2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T16:11:12", "message_id": "a40c681e-02a0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T16:01:12", "message_id": "3e68376e-029f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T15:51:12", "message_id": "d8b749ba-029d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T15:41:12", "message_id": "7315cc86-029c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T15:31:11", "message_id": "0d701fc2-029b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T15:21:11", "message_id": "a7cf53d2-0299-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T15:11:11", "message_id": "421c9f00-0298-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T15:01:11", "message_id": "dc6b3faa-0296-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T14:51:11", "message_id": "76b6191a-0295-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T14:41:11", "message_id": "1107fbde-0294-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T14:31:11", "message_id": "ab57d9ae-0292-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T14:21:11", "message_id": "45aa2950-0291-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T14:11:11", "message_id": "dff87770-028f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T14:01:11", "message_id": "7a530e90-028e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T13:51:11", "message_id": "14a7aa16-028d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T13:41:11", "message_id": "aefa24f6-028b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T13:31:10", "message_id": "494b8402-028a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T13:21:10", "message_id": "e3971208-0288-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T13:11:10", "message_id": "7df001ea-0287-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T13:01:10", "message_id": "1847e5ac-0286-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T12:51:10", "message_id": "b2924456-0284-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T12:41:10", "message_id": "4ce812c6-0283-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T12:31:10", "message_id": "e7346ef8-0281-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T12:21:10", "message_id": "8180631a-0280-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T12:11:10", "message_id": "1bd37dc8-027f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T12:01:10", "message_id": "b6211432-027d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T11:51:10", "message_id": "5079ce22-027c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T11:41:09", "message_id": "eabf8bae-027a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T11:31:09", "message_id": "85143cba-0279-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T11:21:09", "message_id": "1f64c070-0278-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T11:11:09", "message_id": "b9b6be3c-0276-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T11:01:09", "message_id": "54075746-0275-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T10:51:09", "message_id": "ee5591de-0273-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T10:41:09", "message_id": "88abc61a-0272-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T10:31:09", "message_id": "23018e40-0271-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T10:21:09", "message_id": "bd499cc4-026f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T10:11:09", "message_id": "57ac5f74-026e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T10:01:09", "message_id": "f1f8a2e2-026c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T09:51:08", "message_id": "8c48c040-026b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T09:41:08", "message_id": "26973b38-026a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T09:31:08", "message_id": "c0eed008-0268-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T09:21:08", "message_id": "5b3e9b72-0267-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T09:11:08", "message_id": "f5965040-0265-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T09:01:08", "message_id": "8fe6c226-0264-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T08:51:08", "message_id": "2a43ce06-0263-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T08:41:08", "message_id": "c496ed6e-0261-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T08:31:08", "message_id": "5eed1516-0260-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T08:21:08", "message_id": "f9312b5a-025e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T08:11:08", "message_id": "93852c1c-025d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T08:01:08", "message_id": "2ddc3b54-025c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T07:51:07", "message_id": "c825b958-025a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T07:41:07", "message_id": "62814f78-0259-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T07:31:07", "message_id": "fccdb528-0257-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T07:21:07", "message_id": "9722a338-0256-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T07:11:07", "message_id": "3164f330-0255-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T07:01:07", "message_id": "cbc9a2b0-0253-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T06:51:07", "message_id": "6615640a-0252-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T06:41:07", "message_id": "0064c9a8-0251-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T06:31:07", "message_id": "9ab4bcc2-024f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T06:21:07", "message_id": "351530aa-024e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T06:11:07", "message_id": "cf5d8ea2-024c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T06:01:07", "message_id": "69c7a43e-024b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T05:51:07", "message_id": "040ce484-024a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T05:41:06", "message_id": "9e5b85ba-0248-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T05:31:06", "message_id": "38a4d268-0247-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T05:21:06", "message_id": "d2f6ff5a-0245-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T05:11:06", "message_id": "6d3f6c84-0244-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T05:01:06", "message_id": "0797317e-0243-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T04:51:06", "message_id": "a1ef4114-0241-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T04:41:06", "message_id": "3c3c6b18-0240-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T04:31:06", "message_id": "d690f3ca-023e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T04:21:06", "message_id": "70f9c2f4-023d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T04:11:06", "message_id": "0b30b942-023c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T04:01:05", "message_id": "a5881140-023a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T03:51:05", "message_id": "3fdb26bc-0239-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T03:41:05", "message_id": "da43e93e-0237-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T03:31:05", "message_id": "7477aefc-0236-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T03:21:05", "message_id": "0eca18c0-0235-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T03:11:05", "message_id": "a917e490-0233-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T03:01:05", "message_id": "4367bc48-0232-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T02:51:05", "message_id": "ddb59a4c-0230-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T02:41:05", "message_id": "77f71fb0-022f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T02:31:05", "message_id": "1255c57c-022e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T02:21:04", "message_id": "aca4643c-022c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T02:11:04", "message_id": "46f5f2a0-022b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T02:01:04", "message_id": "e1529ca6-0229-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T01:51:04", "message_id": "7b9ad9ce-0228-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T01:41:04", "message_id": "15fef29a-0227-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T01:31:04", "message_id": "b04c5ec0-0225-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T01:21:04", "message_id": "4a853388-0224-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T01:11:04", "message_id": "e4d7b58e-0222-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T01:01:04", "message_id": "7f33e0c8-0221-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T00:51:04", "message_id": "197ca6ee-0220-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T00:41:04", "message_id": "b3ce3372-021e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T00:31:03", "message_id": "4e1d92ee-021d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T00:21:03", "message_id": "e86e57b8-021b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T00:11:03", "message_id": "82bce6d8-021a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T00:01:03", "message_id": "1d131934-0219-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T23:51:03", "message_id": "b7659afe-0217-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T23:41:03", "message_id": "51b40502-0216-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T23:31:03", "message_id": "ec0bc3a8-0214-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T23:21:03", "message_id": "8663beda-0213-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T23:11:03", "message_id": "20a96712-0212-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T23:01:03", "message_id": "bb55c5b4-0210-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T22:51:03", "message_id": "5561d280-020f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T22:41:08", "message_id": "f2c0ef5e-020d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T22:31:03", "message_id": "8a0f0064-020c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T22:21:02", "message_id": "2456f5d4-020b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T22:11:02", "message_id": "bebca72e-0209-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T22:01:02", "message_id": "58fceb70-0208-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T21:51:02", "message_id": "f365d0fc-0206-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T21:41:02", "message_id": "8dadab8c-0205-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T21:31:02", "message_id": "27f846b8-0204-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T21:21:02", "message_id": "c26bb7c2-0202-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T21:11:02", "message_id": "5ca527b2-0201-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T21:01:02", "message_id": "f6e3970c-01ff-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T20:51:02", "message_id": "91960df4-01fe-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T20:41:02", "message_id": "2b99d25c-01fd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T20:31:02", "message_id": "c61b8e8a-01fb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T20:21:01", "message_id": "60372044-01fa-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T20:11:01", "message_id": "fa7a3832-01f8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T20:01:01", "message_id": "94d24bce-01f7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T19:51:01", "message_id": "2f26cbe8-01f6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T19:41:01", "message_id": "c978f7f4-01f4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T19:31:01", "message_id": "63d1dd68-01f3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T19:21:01", "message_id": "fe095d0e-01f1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T19:11:01", "message_id": "986b23d4-01f0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T19:01:01", "message_id": "32bc06bc-01ef-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T18:51:00", "message_id": "ccfb03b0-01ed-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T18:41:00", "message_id": "67616aa4-01ec-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T18:31:00", "message_id": "01ad280c-01eb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T18:21:00", "message_id": "9bfc00a6-01e9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T18:11:00", "message_id": "3646ead8-01e8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T18:01:00", "message_id": "d0972d34-01e6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T17:51:00", "message_id": "6af16982-01e5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T17:41:00", "message_id": "0546a1fc-01e4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T17:31:00", "message_id": "9f91d8a0-01e2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T17:21:00", "message_id": "39e4e318-01e1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T17:11:00", "message_id": "d42f7570-01df-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T17:00:59", "message_id": "6e816c7a-01de-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T16:50:59", "message_id": "08d68c9e-01dd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T16:40:59", "message_id": "a3237ff2-01db-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T16:30:59", "message_id": "3d795038-01da-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T16:20:59", "message_id": "d7c24cd2-01d8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T16:10:59", "message_id": "721e0534-01d7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T16:00:59", "message_id": "0c746062-01d6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T15:50:59", "message_id": "a6c43374-01d4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T15:40:59", "message_id": "41258e60-01d3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T15:30:59", "message_id": "db72a59a-01d1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T15:20:59", "message_id": "75cba576-01d0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T15:10:59", "message_id": "101a552a-01cf-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T15:00:58", "message_id": "aa651770-01cd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T14:50:58", "message_id": "44bc9f66-01cc-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T14:40:58", "message_id": "df045976-01ca-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T14:30:58", "message_id": "794c7ec0-01c9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T14:20:58", "message_id": "139d88b8-01c8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T14:10:58", "message_id": "adf7bab6-01c6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T14:00:58", "message_id": "4849705c-01c5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T13:50:58", "message_id": "e29d8528-01c3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T13:40:58", "message_id": "7ce6f4a4-01c2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T13:30:58", "message_id": "174486c6-01c1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T13:20:58", "message_id": "b18b9744-01bf-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T13:10:57", "message_id": "4bdd6db0-01be-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T13:00:57", "message_id": "e6302972-01bc-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T12:50:57", "message_id": "807e7f08-01bb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T12:40:57", "message_id": "1ad3bbe2-01ba-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T12:30:57", "message_id": "b52b8884-01b8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T12:20:57", "message_id": "4f81bb26-01b7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T12:10:57", "message_id": "e9d8876a-01b5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T12:00:57", "message_id": "84206b8c-01b4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T11:50:57", "message_id": "1e77461c-01b3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T11:40:57", "message_id": "b8d1e660-01b1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T11:30:57", "message_id": "531d9d2e-01b0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T11:20:57", "message_id": "ed70f8d2-01ae-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T11:10:57", "message_id": "87c959bc-01ad-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T11:00:56", "message_id": "22046578-01ac-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T10:50:57", "message_id": "bc8968f2-01aa-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T10:40:56", "message_id": "56b57436-01a9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T10:30:56", "message_id": "f112576c-01a7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T10:20:56", "message_id": "8b581746-01a6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T10:10:56", "message_id": "25c7ffd2-01a5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T10:00:56", "message_id": "c0041c86-01a3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T09:50:56", "message_id": "5a492482-01a2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T09:40:56", "message_id": "f4a60ef2-01a0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T09:30:56", "message_id": "8f11951c-019f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T09:20:56", "message_id": "2946b4d4-019e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T09:10:55", "message_id": "c39f19ce-019c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T09:00:56", "message_id": "5e08d4fc-019b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T08:50:55", "message_id": "f8400092-0199-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T08:40:55", "message_id": "929f7962-0198-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T08:30:55", "message_id": "2cd3d002-0197-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T08:20:55", "message_id": "c733233e-0195-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T08:10:55", "message_id": "61739304-0194-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T08:00:55", "message_id": "fbc86620-0192-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T07:50:55", "message_id": "962b0c4c-0191-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T07:40:55", "message_id": "30803558-0190-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T07:30:55", "message_id": "cacb1da0-018e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T07:20:54", "message_id": "65212f0e-018d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T07:10:54", "message_id": "ff733284-018b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T07:00:54", "message_id": "99c08136-018a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T06:50:54", "message_id": "34172d90-0189-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T06:40:54", "message_id": "ce6a061c-0187-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T06:30:54", "message_id": "68bd66fc-0186-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T06:20:54", "message_id": "0312986e-0185-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T06:10:54", "message_id": "9d58186a-0183-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T06:00:54", "message_id": "37a08346-0182-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T05:50:54", "message_id": "d202a4d4-0180-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T05:40:54", "message_id": "6c4f2c08-017f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T05:30:53", "message_id": "0695dd2c-017e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T05:20:53", "message_id": "a0ece548-017c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T05:10:53", "message_id": "3b43af2a-017b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T05:00:53", "message_id": "d59bcb36-0179-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T04:50:53", "message_id": "6fe123be-0178-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T04:40:53", "message_id": "0a2b2dfe-0177-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T04:30:53", "message_id": "a4806a9c-0175-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T04:20:53", "message_id": "3ed08408-0174-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T04:10:53", "message_id": "d922f04c-0172-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T04:00:53", "message_id": "737e359a-0171-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T03:50:53", "message_id": "0dcff874-0170-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T03:40:53", "message_id": "a823842e-016e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T03:30:52", "message_id": "4278c036-016d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T03:20:52", "message_id": "dcc4bdcc-016b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T03:10:52", "message_id": "7716b7e2-016a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T03:00:52", "message_id": "1168f2f8-0169-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T02:50:52", "message_id": "abbd4f7c-0167-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T02:40:52", "message_id": "4606acc4-0166-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T02:30:52", "message_id": "e057e42a-0164-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T02:20:52", "message_id": "7abbe8a6-0163-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T02:10:52", "message_id": "150dd77c-0162-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T02:00:52", "message_id": "af582d70-0160-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T01:50:52", "message_id": "49d0c058-015f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T01:40:52", "message_id": "e4143264-015d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T01:30:52", "message_id": "7e77384e-015c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T01:20:52", "message_id": "18ca2dea-015b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T01:10:51", "message_id": "b30c0844-0159-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T01:00:51", "message_id": "4d675846-0158-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T00:50:51", "message_id": "e794bdf2-0156-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T00:40:51", "message_id": "81ec06f0-0155-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T00:30:51", "message_id": "1c3c9d16-0154-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T00:20:51", "message_id": "b67f433a-0152-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T00:10:51", "message_id": "50dc6f7c-0151-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T00:00:51", "message_id": "eb2aac08-014f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T23:50:50", "message_id": "857c84c2-014e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T23:40:50", "message_id": "1fc82fe2-014d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T23:30:50", "message_id": "ba0edad0-014b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T23:20:50", "message_id": "5471d85e-014a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T23:10:50", "message_id": "eebb01da-0148-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T23:00:50", "message_id": "894c0822-0147-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T22:50:50", "message_id": "23606a04-0146-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T22:40:50", "message_id": "bda9ddc2-0144-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T22:30:50", "message_id": "57ff02fa-0143-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T22:20:50", "message_id": "f2630e1a-0141-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T22:10:49", "message_id": "8c9e732c-0140-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T22:00:49", "message_id": "26fd7f28-013f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T21:50:49", "message_id": "c1512130-013d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T21:40:49", "message_id": "5baa0320-013c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T21:30:49", "message_id": "f600e6e8-013a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T21:20:49", "message_id": "904ac28e-0139-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T21:10:49", "message_id": "2aa6724e-0138-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T21:00:49", "message_id": "c4fd7cf4-0136-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T20:50:49", "message_id": "5f4b11ec-0135-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T20:40:49", "message_id": "f9a1643c-0133-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T20:30:49", "message_id": "93e65cd4-0132-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T20:20:49", "message_id": "2e593f04-0131-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T20:10:49", "message_id": "c894dc38-012f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T20:00:49", "message_id": "62e5a9fe-012e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T19:50:49", "message_id": "fd4286e0-012c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T19:40:48", "message_id": "9784727e-012b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T19:30:48", "message_id": "31dc6ed2-012a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T19:20:48", "message_id": "cc3e4894-0128-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T19:10:48", "message_id": "6683412c-0127-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T19:00:48", "message_id": "00ce912a-0126-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T18:50:48", "message_id": "9b19e86c-0124-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T18:40:48", "message_id": "356effda-0123-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T18:30:48", "message_id": "cfb8c898-0121-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T18:20:48", "message_id": "6a07c31a-0120-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T18:10:47", "message_id": "04576e86-011f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T18:00:47", "message_id": "9e9f98e4-011d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T17:50:47", "message_id": "38f9eef0-011c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T17:40:47", "message_id": "d3465f22-011a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T17:30:47", "message_id": "6d954216-0119-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T17:20:47", "message_id": "07ee8720-0118-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T17:10:47", "message_id": "a23c2280-0116-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T17:00:47", "message_id": "3c8f904e-0115-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T16:50:47", "message_id": "d6dade26-0113-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T16:40:47", "message_id": "712a936a-0112-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T16:30:47", "message_id": "0b8be50a-0111-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T16:20:46", "message_id": "a5d2290a-010f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T16:10:46", "message_id": "402a6bf4-010e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T16:00:46", "message_id": "da7918f6-010c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T15:50:49", "message_id": "764fa5b2-010b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T15:40:47", "message_id": "0f79eb14-010a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T15:30:46", "message_id": "a993e6c0-0108-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T15:20:46", "message_id": "43ca1f72-0107-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T15:10:46", "message_id": "de31983a-0105-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T15:00:46", "message_id": "787018f6-0104-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T14:50:46", "message_id": "12cb03fe-0103-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T14:40:46", "message_id": "ad16d980-0101-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T14:30:46", "message_id": "4760bc92-0100-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T14:20:46", "message_id": "e1be88ac-00fe-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T14:10:46", "message_id": "7c45e6f6-00fd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T14:00:45", "message_id": "164d9a8e-00fc-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T13:50:45", "message_id": "b0ae1312-00fa-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T13:40:45", "message_id": "4af76c90-00f9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T13:30:45", "message_id": "e548748a-00f7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T13:20:46", "message_id": "7ffd592a-00f6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T13:10:45", "message_id": "19dd8256-00f5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T13:00:45", "message_id": "b43b1554-00f3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T12:50:45", "message_id": "4e8205c0-00f2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T12:40:45", "message_id": "e8db9796-00f0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T12:30:44", "message_id": "83321524-00ef-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T12:20:44", "message_id": "1d7bce60-00ee-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T12:10:44", "message_id": "b7ccf22a-00ec-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T12:00:44", "message_id": "522026dc-00eb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T11:50:44", "message_id": "ec797974-00e9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T11:40:44", "message_id": "86c24c9c-00e8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T11:30:44", "message_id": "211b8a44-00e7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T11:20:44", "message_id": "bb6a7e54-00e5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T11:10:44", "message_id": "55c22abc-00e4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T11:00:44", "message_id": "f009ce88-00e2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T10:50:44", "message_id": "8a5b9464-00e1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T10:40:43", "message_id": "24ab4bba-00e0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T10:30:43", "message_id": "bf0261dc-00de-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T10:20:43", "message_id": "594e609e-00dd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T10:10:43", "message_id": "f3a28ece-00db-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T10:00:43", "message_id": "8e041ee4-00da-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T09:50:43", "message_id": "28429064-00d9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T09:40:43", "message_id": "c29da39e-00d7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T09:30:43", "message_id": "5ceda6bc-00d6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T09:20:43", "message_id": "f73fff14-00d4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T09:10:43", "message_id": "9199d136-00d3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T09:00:43", "message_id": "2be62e12-00d2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T08:50:42", "message_id": "c6303b54-00d0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T08:40:42", "message_id": "608abb2c-00cf-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T08:30:42", "message_id": "fadec6e8-00cd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T08:20:42", "message_id": "952fc514-00cc-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T08:10:42", "message_id": "2f7a6838-00cb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T08:00:42", "message_id": "c9ca0a44-00c9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T07:50:42", "message_id": "641b46c8-00c8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T07:40:42", "message_id": "fe97787c-00c6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T07:30:42", "message_id": "98c822ae-00c5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T07:20:42", "message_id": "330b5d1a-00c4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T07:10:42", "message_id": "cd5e59a0-00c2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T07:00:41", "message_id": "67b3e8e6-00c1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T06:50:41", "message_id": "01ff450a-00c0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T06:40:41", "message_id": "9c5419ac-00be-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T06:30:41", "message_id": "36a6dbae-00bd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T06:20:41", "message_id": "d0f2c788-00bb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T06:10:41", "message_id": "6b492b44-00ba-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T06:00:41", "message_id": "05a43834-00b9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T05:50:41", "message_id": "9ff03746-00b7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T05:40:41", "message_id": "3a489b78-00b6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T05:30:41", "message_id": "d4940084-00b4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T05:20:41", "message_id": "6ee542f8-00b3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T05:10:41", "message_id": "0938d420-00b2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T05:00:40", "message_id": "a38d988c-00b0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T04:50:40", "message_id": "3df36e4e-00af-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T04:40:40", "message_id": "d84ae8f2-00ad-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T04:30:40", "message_id": "729840be-00ac-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T04:20:40", "message_id": "0cf9bbbc-00ab-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T04:10:40", "message_id": "a752a11c-00a9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T04:00:40", "message_id": "41c7b9dc-00a8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T03:50:41", "message_id": "dc44432e-00a6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T03:40:40", "message_id": "765750de-00a5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T03:30:40", "message_id": "10dcfcc8-00a4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T03:20:40", "message_id": "ab05f40a-00a2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T03:10:40", "message_id": "45618908-00a1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T03:00:40", "message_id": "dfb5483e-009f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T02:50:40", "message_id": "79f92fc0-009e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T02:40:40", "message_id": "14822de6-009d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T02:30:40", "message_id": "ae9fd240-009b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T02:20:40", "message_id": "48f5bf0a-009a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T02:10:39", "message_id": "e349a078-0098-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T02:00:39", "message_id": "7d9bd5ee-0097-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T01:50:39", "message_id": "17d96f74-0096-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T01:40:39", "message_id": "b2292b98-0094-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T01:30:39", "message_id": "4c7bc248-0093-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T01:20:39", "message_id": "e6d8a466-0091-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T01:10:39", "message_id": "811cafd8-0090-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T01:00:39", "message_id": "1b7b0856-008f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T00:50:39", "message_id": "b5c1a250-008d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T00:40:38", "message_id": "500cc94a-008c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T00:30:38", "message_id": "ea6cefc6-008a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T00:20:38", "message_id": "84c183c2-0089-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T00:10:38", "message_id": "1f0e6bcc-0088-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T00:00:38", "message_id": "b95f272c-0086-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T23:50:38", "message_id": "53a9ffca-0085-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T23:40:38", "message_id": "ee0aa88c-0083-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T23:30:38", "message_id": "8850dc88-0082-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T23:20:38", "message_id": "229aa988-0081-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T23:10:38", "message_id": "bcf7736e-007f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T23:00:38", "message_id": "577fb542-007e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T22:50:38", "message_id": "f19218de-007c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T22:40:37", "message_id": "8beaea34-007b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T22:30:37", "message_id": "262a760c-007a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T22:20:37", "message_id": "c086f89e-0078-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T22:10:37", "message_id": "5ad6f3ec-0077-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T22:00:37", "message_id": "f527a89e-0075-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T21:50:37", "message_id": "8f84662c-0074-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T21:40:37", "message_id": "29cd3a80-0073-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T21:30:37", "message_id": "c422c8cc-0071-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T21:20:37", "message_id": "5e8392f4-0070-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T21:10:37", "message_id": "f8c77d64-006e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T21:00:37", "message_id": "9310992a-006d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T20:50:36", "message_id": "2d5e3b4c-006c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T20:40:36", "message_id": "c7b0fe02-006a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T20:30:36", "message_id": "6209eb64-0069-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T20:20:36", "message_id": "fc4eb486-0067-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T20:10:36", "message_id": "96ac12d2-0066-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T20:00:36", "message_id": "30f74124-0065-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T19:50:36", "message_id": "cb4f4ed0-0063-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T19:40:36", "message_id": "659a2570-0062-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T19:30:36", "message_id": "ffecdffc-0060-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T19:20:36", "message_id": "9a389e4a-005f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T19:10:35", "message_id": "348d7ba2-005e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T19:00:35", "message_id": "cee155d6-005c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T18:50:35", "message_id": "6930b50c-005b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T18:40:35", "message_id": "037d8312-005a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T18:30:35", "message_id": "9dddd4c2-0058-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T18:20:35", "message_id": "381dae1a-0057-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T18:10:35", "message_id": "d27b3178-0055-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T18:00:35", "message_id": "6ccce87c-0054-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T17:50:35", "message_id": "071f7dba-0053-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T17:40:35", "message_id": "a17963a0-0051-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T17:30:35", "message_id": "3bcd47f2-0050-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T17:20:35", "message_id": "d61aca3e-004e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T17:10:34", "message_id": "706b326a-004d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T17:00:34", "message_id": "0ab9d206-004c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T16:50:34", "message_id": "a50c7658-004a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T16:40:34", "message_id": "3f6798ec-0049-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T16:30:34", "message_id": "d9ba5d1e-0047-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T16:20:34", "message_id": "740edb1c-0046-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T16:10:34", "message_id": "0e5afebe-0045-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T16:00:34", "message_id": "a8b66798-0043-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T15:50:34", "message_id": "43050054-0042-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T15:40:34", "message_id": "dd51f812-0040-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T15:30:34", "message_id": "77a73046-003f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T15:20:34", "message_id": "11fd04ce-003e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T15:10:33", "message_id": "ac4c8b3c-003c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T15:00:33", "message_id": "4696f044-003b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T14:50:33", "message_id": "e0ef8d4c-0039-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T14:40:33", "message_id": "7b3993d6-0038-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T14:30:33", "message_id": "1593cb88-0037-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T14:20:33", "message_id": "afdf74fa-0035-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T14:10:33", "message_id": "4a41808a-0034-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T14:00:33", "message_id": "e4c2e47a-0032-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T13:50:33", "message_id": "7ed49baa-0031-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T13:40:33", "message_id": "1932b3d2-0030-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T13:30:33", "message_id": "b380b724-002e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T13:20:33", "message_id": "4ddc70c6-002d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T13:10:32", "message_id": "e82894fe-002b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T13:00:32", "message_id": "8276a174-002a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T12:50:32", "message_id": "1ccad2ba-0029-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T12:40:32", "message_id": "b710ef32-0027-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T12:30:32", "message_id": "516a8d74-0026-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T12:20:32", "message_id": "ebb414ec-0024-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T12:10:32", "message_id": "85fe4538-0023-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T12:00:32", "message_id": "205b02ee-0022-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T11:50:32", "message_id": "baa7089a-0020-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T11:40:32", "message_id": "550edc16-001f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T11:30:32", "message_id": "ef63eff6-001d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T11:20:31", "message_id": "89a53734-001c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T11:10:32", "message_id": "2416c74e-001b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T11:00:31", "message_id": "be55be2a-0019-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T10:50:31", "message_id": "58a7e41e-0018-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T10:40:31", "message_id": "f303f91e-0016-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T10:30:31", "message_id": "8d718220-0015-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T10:20:31", "message_id": "27bb56c8-0014-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T10:10:31", "message_id": "c2223efe-0012-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T10:00:31", "message_id": "5c460300-0011-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T09:50:31", "message_id": "f695ca1e-000f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T09:40:31", "message_id": "90dedd06-000e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T09:30:31", "message_id": "2b428b74-000d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T09:20:30", "message_id": "c585cf9a-000b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T09:10:30", "message_id": "5fd47576-000a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T09:00:30", "message_id": "fa2ed08c-0008-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T08:50:30", "message_id": "947d7820-0007-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T08:40:30", "message_id": "2ed61cbc-0006-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T08:30:30", "message_id": "c92bd4de-0004-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T08:20:30", "message_id": "637874e0-0003-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T08:10:30", "message_id": "fdd7a79c-0001-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T08:00:30", "message_id": "981d890e-0000-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T07:50:30", "message_id": "326cace4-ffff-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T07:40:30", "message_id": "ccbd3d74-fffd-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T07:30:30", "message_id": "670c3fc6-fffc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T07:20:29", "message_id": "01669d7a-fffb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T07:10:29", "message_id": "9badbb40-fff9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T07:00:29", "message_id": "35f8c2b4-fff8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T06:50:29", "message_id": "d05ba846-fff6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T06:40:29", "message_id": "6aa37278-fff5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T06:30:29", "message_id": "04f0e61e-fff4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T06:20:29", "message_id": "9f44c962-fff2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T06:10:29", "message_id": "39952e82-fff1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T06:00:29", "message_id": "d3ed74e6-ffef-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T05:50:29", "message_id": "6e46c6e8-ffee-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T05:40:29", "message_id": "089f5cca-ffed-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T05:30:29", "message_id": "a2e7c954-ffeb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T05:20:28", "message_id": "3d2f3418-ffea-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T05:10:28", "message_id": "d78497b2-ffe8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T05:00:28", "message_id": "71d99490-ffe7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T04:50:28", "message_id": "0c1d34c8-ffe6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T04:40:28", "message_id": "a67ea3b4-ffe4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T04:30:28", "message_id": "40c2f6ca-ffe3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T04:20:28", "message_id": "db1cbf5a-ffe1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T04:10:28", "message_id": "756e1466-ffe0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T04:00:28", "message_id": "0fb63c9e-ffdf-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T03:50:28", "message_id": "aa0d113e-ffdd-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T03:40:27", "message_id": "445a60a4-ffdc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T03:30:27", "message_id": "deabb97a-ffda-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T03:20:27", "message_id": "78fb5a64-ffd9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T03:10:27", "message_id": "13506408-ffd8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T03:00:27", "message_id": "ada2813c-ffd6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T02:50:27", "message_id": "47ed9e40-ffd5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T02:40:27", "message_id": "e23c20fe-ffd3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T02:30:27", "message_id": "7c967d36-ffd2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T02:20:27", "message_id": "17011eb4-ffd1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T02:10:27", "message_id": "b12ae7ce-ffcf-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T02:00:26", "message_id": "4b862ba0-ffce-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T01:50:26", "message_id": "e5d0949a-ffcc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T01:40:26", "message_id": "802225b0-ffcb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T01:30:26", "message_id": "1a735a64-ffca-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T01:20:26", "message_id": "b4cb4484-ffc8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T01:10:26", "message_id": "4f213e50-ffc7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T01:00:26", "message_id": "e96e7a74-ffc5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T00:50:26", "message_id": "83c47102-ffc4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T00:40:26", "message_id": "1e182e94-ffc3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T00:30:26", "message_id": "b8665c7a-ffc1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T00:20:26", "message_id": "531187f6-ffc0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T00:10:26", "message_id": "ed066554-ffbe-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T00:00:26", "message_id": "87824172-ffbd-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T23:50:25", "message_id": "21b2b774-ffbc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T23:40:25", "message_id": "bc08696a-ffba-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T23:30:25", "message_id": "56618a98-ffb9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T23:20:25", "message_id": "f0cda2bc-ffb7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T23:10:25", "message_id": "8b1e5c00-ffb6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T23:00:25", "message_id": "25963dae-ffb5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T22:50:25", "message_id": "bf915152-ffb3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T22:40:25", "message_id": "59ef3838-ffb2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T22:30:25", "message_id": "f43efd76-ffb0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T22:20:24", "message_id": "8e7f57a2-ffaf-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T22:10:24", "message_id": "28e45380-ffae-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T22:00:24", "message_id": "c32a9136-ffac-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T21:50:24", "message_id": "5d6cea20-ffab-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T21:40:24", "message_id": "f7c73a3c-ffa9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T21:30:24", "message_id": "921fafd0-ffa8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T21:20:24", "message_id": "2c67a0e0-ffa7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T21:10:24", "message_id": "c6ab87ea-ffa5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T21:00:24", "message_id": "6106070e-ffa4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T20:50:24", "message_id": "fb569e56-ffa2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T20:40:23", "message_id": "95a26b22-ffa1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T20:30:23", "message_id": "2ff8099a-ffa0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T20:20:23", "message_id": "ca4a9a82-ff9e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T20:10:23", "message_id": "648fb214-ff9d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T20:00:23", "message_id": "fee8f4a8-ff9b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T19:50:23", "message_id": "99327a72-ff9a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T19:40:23", "message_id": "338c4244-ff99-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T19:30:23", "message_id": "cddd64ce-ff97-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T19:20:23", "message_id": "68332dbc-ff96-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T19:10:23", "message_id": "02820408-ff95-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T19:00:23", "message_id": "9ccbadea-ff93-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T18:50:22", "message_id": "3724d35a-ff92-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T18:40:22", "message_id": "d17747d2-ff90-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T18:30:22", "message_id": "6bb7245e-ff8f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T18:20:22", "message_id": "0606e578-ff8e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T18:10:22", "message_id": "a05c38c8-ff8c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T18:00:22", "message_id": "3ab0ba90-ff8b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T17:50:22", "message_id": "d500658e-ff89-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T17:40:22", "message_id": "6f588a64-ff88-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T17:30:22", "message_id": "09a7c8de-ff87-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T17:20:22", "message_id": "a3f4207e-ff85-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T17:10:22", "message_id": "3e4c3d3e-ff84-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T17:00:21", "message_id": "d89111be-ff82-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T16:50:21", "message_id": "72d9a2ba-ff81-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T16:40:21", "message_id": "0d30004a-ff80-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T16:30:21", "message_id": "a78cd714-ff7e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T16:20:21", "message_id": "41d05dac-ff7d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T16:10:21", "message_id": "dc2a7ff6-ff7b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T16:00:21", "message_id": "767bef92-ff7a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T15:50:21", "message_id": "10cfd54c-ff79-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T15:40:21", "message_id": "ab1ba092-ff77-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T15:30:21", "message_id": "4567a7b0-ff76-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T15:20:20", "message_id": "dfbb898c-ff74-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T15:10:20", "message_id": "7a093fa4-ff73-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T15:00:20", "message_id": "14590438-ff72-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T14:50:20", "message_id": "aeabe2a0-ff70-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T14:40:20", "message_id": "48fa954c-ff6f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T14:30:20", "message_id": "e360d42c-ff6d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T14:20:20", "message_id": "7db0775a-ff6c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T14:10:20", "message_id": "17ffe28e-ff6b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T14:00:20", "message_id": "b25037be-ff69-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T13:50:20", "message_id": "4c9dc496-ff68-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T13:40:20", "message_id": "e7055d20-ff66-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T13:30:20", "message_id": "814af34c-ff65-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T13:20:19", "message_id": "1b9ce1dc-ff64-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T13:10:19", "message_id": "b5f3c568-ff62-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T13:00:19", "message_id": "504ecef2-ff61-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T12:50:19", "message_id": "eaa4b52c-ff5f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T12:40:19", "message_id": "84ef17e6-ff5e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T12:30:19", "message_id": "1f4562f2-ff5d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T12:20:19", "message_id": "b99b020a-ff5b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T12:10:19", "message_id": "53e06d70-ff5a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T12:00:19", "message_id": "ee2e4da4-ff58-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T11:50:19", "message_id": "8886e71e-ff57-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T11:40:19", "message_id": "22dc41da-ff56-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T11:30:19", "message_id": "bd2bf764-ff54-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T11:20:18", "message_id": "577bb126-ff53-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T11:10:19", "message_id": "f1e94018-ff51-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T11:00:18", "message_id": "8c30eeca-ff50-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T10:50:18", "message_id": "26840a9a-ff4f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T10:40:18", "message_id": "c0df6974-ff4d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T10:30:18", "message_id": "5b28c82e-ff4c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T10:20:18", "message_id": "f57b0fd8-ff4a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T10:10:18", "message_id": "8fd94a9c-ff49-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T10:00:18", "message_id": "2a34944a-ff48-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T09:50:18", "message_id": "c47417bc-ff46-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T09:40:18", "message_id": "5ecdc224-ff45-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T09:30:18", "message_id": "f90ceba0-ff43-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T09:20:18", "message_id": "936654ae-ff42-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T09:10:17", "message_id": "2db7442a-ff41-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T09:00:17", "message_id": "c7fb123e-ff3f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T08:50:17", "message_id": "624e212a-ff3e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T08:40:17", "message_id": "fca5c6ee-ff3c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T08:30:17", "message_id": "96f3ac54-ff3b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T08:20:17", "message_id": "31370466-ff3a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T08:10:17", "message_id": "cb87b332-ff38-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T08:00:17", "message_id": "65d6e6f8-ff37-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T07:50:17", "message_id": "00282c14-ff36-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T07:40:16", "message_id": "9a751da6-ff34-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T07:30:16", "message_id": "34d0d59a-ff33-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T07:20:16", "message_id": "cf183230-ff31-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T07:10:16", "message_id": "69676790-ff30-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T07:00:16", "message_id": "03c1eace-ff2f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T06:50:16", "message_id": "9e1448d0-ff2d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T06:40:16", "message_id": "38646174-ff2c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T06:30:16", "message_id": "d2ab0794-ff2a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T06:20:16", "message_id": "6d0d4222-ff29-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T06:10:16", "message_id": "076aaf3c-ff28-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T06:00:16", "message_id": "a1aa67a6-ff26-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T05:50:16", "message_id": "3c06b414-ff25-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T05:40:15", "message_id": "d648b268-ff23-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T05:30:16", "message_id": "70c23e56-ff22-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T05:20:15", "message_id": "0af5e20e-ff21-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T05:10:15", "message_id": "a53ab3e6-ff1f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T05:00:15", "message_id": "3fa1defc-ff1e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T04:50:15", "message_id": "d9e52a48-ff1c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T04:40:15", "message_id": "743e4d06-ff1b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T04:30:15", "message_id": "0e9ce38c-ff1a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T04:20:15", "message_id": "a8dd99a2-ff18-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T04:10:15", "message_id": "4339dbd4-ff17-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T04:00:15", "message_id": "dd87ff56-ff15-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T03:50:15", "message_id": "77f04fc8-ff14-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T03:40:14", "message_id": "12312a82-ff13-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T03:30:14", "message_id": "ac7854d2-ff11-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T03:20:14", "message_id": "46cf1bc6-ff10-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T03:10:14", "message_id": "e1340ac0-ff0e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T03:00:14", "message_id": "7b71a6b2-ff0d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T02:50:14", "message_id": "15df148e-ff0c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T02:40:14", "message_id": "b0293efe-ff0a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T02:30:14", "message_id": "4a7c9296-ff09-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T02:20:14", "message_id": "e4c3b0ca-ff07-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T02:10:14", "message_id": "7f140e92-ff06-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T02:00:14", "message_id": "19618b5c-ff05-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T01:50:14", "message_id": "b3c1d3fc-ff03-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T01:40:13", "message_id": "4e066e20-ff02-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T01:30:13", "message_id": "e85f317a-ff00-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T01:20:13", "message_id": "82b101f6-feff-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T01:10:13", "message_id": "1d094b0c-fefe-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T01:00:13", "message_id": "b74ca990-fefc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T00:50:13", "message_id": "51a9256a-fefb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T00:40:13", "message_id": "ebfe5e5c-fef9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T00:30:13", "message_id": "86403186-fef8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T00:20:13", "message_id": "20922642-fef7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T00:10:13", "message_id": "bae4f88e-fef5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T00:00:12", "message_id": "552d305c-fef4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T23:50:12", "message_id": "ef903d76-fef2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T23:40:12", "message_id": "89e04c4c-fef1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T23:30:12", "message_id": "243652e8-fef0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T23:20:12", "message_id": "be981558-feee-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T23:10:12", "message_id": "58cfd7b6-feed-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T23:00:12", "message_id": "f36d9468-feeb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T22:50:12", "message_id": "8d799e28-feea-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T22:40:12", "message_id": "27ce629e-fee9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T22:30:12", "message_id": "c220cf28-fee7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T22:20:12", "message_id": "5c69ca1e-fee6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T22:10:12", "message_id": "f6d24286-fee4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T22:00:12", "message_id": "913a8efc-fee3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T21:50:11", "message_id": "2b6a11fc-fee2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T21:40:12", "message_id": "c5e2492c-fee0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T21:30:11", "message_id": "6018ad58-fedf-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T21:20:11", "message_id": "fa6bccb6-fedd-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T21:10:11", "message_id": "94b46bcc-fedc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T21:00:11", "message_id": "2efaac98-fedb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T20:50:11", "message_id": "c9579208-fed9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T20:40:11", "message_id": "63b65912-fed8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T20:30:11", "message_id": "fe0218be-fed6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T20:20:11", "message_id": "987ff7dc-fed5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T20:10:11", "message_id": "329ee118-fed4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T20:00:11", "message_id": "cd07eb3e-fed2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T19:50:10", "message_id": "67500f3e-fed1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T19:40:10", "message_id": "01a76ba6-fed0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T19:30:10", "message_id": "9bf82fc6-fece-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T19:20:10", "message_id": "36450ee8-fecd-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T19:10:10", "message_id": "d0951436-fecb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T19:00:10", "message_id": "6ad5646c-feca-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T18:50:10", "message_id": "0551eab2-fec9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T18:40:10", "message_id": "9f89cd72-fec7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T18:30:10", "message_id": "39d2d696-fec6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T18:20:10", "message_id": "d428f646-fec4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T18:10:09", "message_id": "6e757f50-fec3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T18:00:09", "message_id": "08ba04d4-fec2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T17:50:09", "message_id": "a31231b6-fec0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T17:40:09", "message_id": "3d6a4c50-febf-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T17:30:09", "message_id": "d7b59ad2-febd-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T17:20:09", "message_id": "720d1382-febc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T17:10:09", "message_id": "0c5318da-febb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T17:00:09", "message_id": "a6a5e50e-feb9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T16:50:09", "message_id": "40f97140-feb8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T16:40:09", "message_id": "db4218ee-feb6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T16:30:09", "message_id": "759949d2-feb5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T16:20:08", "message_id": "0fe6775a-feb4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T16:10:08", "message_id": "aa433290-feb2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T16:00:08", "message_id": "44957ce2-feb1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T15:50:08", "message_id": "dedede9e-feaf-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T15:40:08", "message_id": "793c890c-feae-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T15:30:08", "message_id": "13821f06-fead-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T15:20:08", "message_id": "add74a38-feab-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T15:10:08", "message_id": "48252e18-feaa-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T15:00:08", "message_id": "e2763dec-fea8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T14:50:08", "message_id": "7ccc1d78-fea7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T14:40:08", "message_id": "172a6c3c-fea6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T14:30:08", "message_id": "b1840dee-fea4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T14:20:07", "message_id": "4bd2c8d8-fea3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T14:10:07", "message_id": "e61f613c-fea1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T14:00:07", "message_id": "808d65f4-fea0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T13:50:07", "message_id": "1ad0bd2a-fe9f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T13:40:07", "message_id": "b513c4a6-fe9d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T13:30:07", "message_id": "4f6636da-fe9c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T13:20:07", "message_id": "e9b696a0-fe9a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T13:10:07", "message_id": "84052232-fe99-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T13:00:07", "message_id": "1e60cb58-fe98-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T12:50:07", "message_id": "b8b5546e-fe96-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T12:40:07", "message_id": "531a7dce-fe95-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T12:30:07", "message_id": "ed593cf6-fe93-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T12:20:06", "message_id": "87a47c3c-fe92-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T12:10:06", "message_id": "2202305a-fe91-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T12:00:06", "message_id": "bc535816-fe8f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T11:50:06", "message_id": "56a1e1d2-fe8e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T11:40:06", "message_id": "f100777c-fe8c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T11:30:07", "message_id": "8bde8d58-fe8b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T11:20:06", "message_id": "2598340a-fe8a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T11:10:06", "message_id": "bfe42fd4-fe88-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T11:00:06", "message_id": "5a3d6cbe-fe87-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T10:50:06", "message_id": "f491343c-fe85-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T10:40:06", "message_id": "8ee2da24-fe84-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T10:30:05", "message_id": "29307a7a-fe83-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T10:20:05", "message_id": "c38684b8-fe81-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T10:10:05", "message_id": "5dcd079c-fe80-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T10:00:05", "message_id": "f82414ae-fe7e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T09:50:05", "message_id": "92709f8e-fe7d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T09:40:05", "message_id": "2cc7e224-fe7c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T09:30:05", "message_id": "c71c98b2-fe7a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T09:20:05", "message_id": "6165bb3a-fe79-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T09:10:05", "message_id": "fbbe6670-fe77-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T09:00:05", "message_id": "960cb562-fe76-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T08:50:05", "message_id": "305e4e16-fe75-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T08:40:04", "message_id": "cab0f54c-fe73-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T08:30:04", "message_id": "64ff483a-fe72-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T08:20:04", "message_id": "ff52c45e-fe70-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T08:10:04", "message_id": "99a7e856-fe6f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T08:00:04", "message_id": "33fa0f26-fe6e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T07:50:04", "message_id": "ce4a9e3a-fe6c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T07:40:04", "message_id": "68abf232-fe6b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T07:30:04", "message_id": "02fbcf12-fe6a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T07:20:04", "message_id": "9d50076a-fe68-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T07:10:04", "message_id": "379f4256-fe67-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T07:00:04", "message_id": "d1efb7e8-fe65-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T06:50:04", "message_id": "6c3f2650-fe64-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T06:40:04", "message_id": "069ca238-fe63-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T06:30:03", "message_id": "a0eea89c-fe61-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T06:20:03", "message_id": "3b3975f0-fe60-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T06:10:03", "message_id": "d5850db0-fe5e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T06:00:03", "message_id": "6fd62cb6-fe5d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T05:50:03", "message_id": "0a28aca0-fe5c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T05:40:03", "message_id": "a47fd15e-fe5a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T05:30:03", "message_id": "3ec77d04-fe59-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T05:20:03", "message_id": "d91b7b00-fe57-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T05:10:03", "message_id": "7372c098-fe56-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T05:00:03", "message_id": "0dbebc30-fe55-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T04:50:02", "message_id": "a8108bbc-fe53-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T04:40:02", "message_id": "426a1978-fe52-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T04:30:02", "message_id": "dcbea388-fe50-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T04:20:02", "message_id": "7706df52-fe4f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T04:10:02", "message_id": "114de92c-fe4e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T04:00:02", "message_id": "aba9f5f8-fe4c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T03:50:02", "message_id": "45f90e0c-fe4b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T03:40:02", "message_id": "e04ddfca-fe49-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T03:30:02", "message_id": "7a983726-fe48-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T03:20:02", "message_id": "14e569f4-fe47-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T03:10:02", "message_id": "af41d53e-fe45-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T03:00:01", "message_id": "498d3aea-fe44-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T02:50:01", "message_id": "e3dc4e1c-fe42-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T02:40:01", "message_id": "7e2b2558-fe41-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T02:30:01", "message_id": "1889be4a-fe40-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T02:20:01", "message_id": "b2de76cc-fe3e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T02:10:01", "message_id": "4d277672-fe3d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T02:00:01", "message_id": "e77e86fe-fe3b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T01:50:01", "message_id": "81d1e70c-fe3a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T01:40:01", "message_id": "1c2fb9b6-fe39-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T01:30:01", "message_id": "b67f9efc-fe37-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T01:20:01", "message_id": "50dac406-fe36-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T01:10:01", "message_id": "eb21b7f6-fe34-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T01:00:01", "message_id": "857a9c84-fe33-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T00:50:00", "message_id": "1fc229bc-fe32-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T00:40:00", "message_id": "ba1a5b1c-fe30-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T00:30:00", "message_id": "5466031c-fe2f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T00:20:00", "message_id": "eeb57710-fe2d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T00:10:00", "message_id": "8909613e-fe2c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T00:00:00", "message_id": "235bbd4c-fe2b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T23:50:00", "message_id": "bdae87dc-fe29-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T23:40:00", "message_id": "580348ce-fe28-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T23:30:00", "message_id": "f2522ee2-fe26-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T23:20:00", "message_id": "8caf4fb2-fe25-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T23:10:00", "message_id": "273b579e-fe24-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T23:00:00", "message_id": "c18e9f74-fe22-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T22:49:59", "message_id": "5b978f56-fe21-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T22:39:59", "message_id": "f5e355f6-fe1f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T22:29:59", "message_id": "903d2836-fe1e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T22:19:59", "message_id": "2a91dd16-fe1d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T22:09:59", "message_id": "c4df8082-fe1b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T21:59:59", "message_id": "5f2f5790-fe1a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T21:49:59", "message_id": "f97fcc32-fe18-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T21:39:59", "message_id": "93ccd8cc-fe17-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T21:29:59", "message_id": "2e161814-fe16-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T21:19:58", "message_id": "c86dda16-fe14-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T21:09:58", "message_id": "62bf19b0-fe13-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T20:59:58", "message_id": "fd13404c-fe11-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T20:49:58", "message_id": "975959c2-fe10-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T20:39:58", "message_id": "31aab694-fe0f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T20:29:58", "message_id": "cbf9ff0e-fe0d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T20:19:58", "message_id": "6654f2f4-fe0c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T20:09:58", "message_id": "009f2d86-fe0b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T19:59:58", "message_id": "9af4a908-fe09-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T19:49:58", "message_id": "35471b96-fe08-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T19:39:58", "message_id": "cfa3ef22-fe06-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T19:29:58", "message_id": "69f0f7fc-fe05-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T19:19:57", "message_id": "0441ec3c-fe04-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T19:09:57", "message_id": "9e98aab6-fe02-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T18:59:57", "message_id": "38e6f84a-fe01-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T18:49:57", "message_id": "d335dc24-fdff-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T18:39:57", "message_id": "6d8ec67a-fdfe-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T18:29:57", "message_id": "07e1bc98-fdfd-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T18:19:57", "message_id": "a236ea68-fdfb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T18:09:57", "message_id": "3c96fffa-fdfa-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T17:59:57", "message_id": "d6dc051c-fdf8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T17:49:57", "message_id": "7132012c-fdf7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T17:39:57", "message_id": "0b831dc6-fdf6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T17:29:57", "message_id": "a5d8e4b6-fdf4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T17:19:56", "message_id": "4028808c-fdf3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T17:09:56", "message_id": "da7c800e-fdf1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T16:59:56", "message_id": "74cdeaa0-fdf0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T16:49:56", "message_id": "0f1e6500-fdef-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T16:39:56", "message_id": "a979dece-fded-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T16:29:56", "message_id": "43f4a738-fdec-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T16:19:56", "message_id": "de25aa84-fdea-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T16:09:56", "message_id": "78824044-fde9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T15:59:56", "message_id": "12d219a0-fde8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T15:49:56", "message_id": "ad29e7aa-fde6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T15:39:56", "message_id": "477def24-fde5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T15:29:56", "message_id": "e1cf3d32-fde3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T15:19:56", "message_id": "7c50b39c-fde2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T15:09:56", "message_id": "166a492c-fde1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T14:59:55", "message_id": "b0b9cad6-fddf-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T14:49:55", "message_id": "4b17c846-fdde-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T14:39:55", "message_id": "e561e406-fddc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T14:29:55", "message_id": "7fb66290-fddb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T14:19:55", "message_id": "1a0740e6-fdda-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T14:09:55", "message_id": "b45d8d0a-fdd8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T13:59:55", "message_id": "4ea97254-fdd7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T13:49:55", "message_id": "e8fe5d30-fdd5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T13:39:55", "message_id": "834ab494-fdd4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T13:29:55", "message_id": "1d98ce34-fdd3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T13:19:55", "message_id": "b7ea43de-fdd1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T13:09:54", "message_id": "523f8e5a-fdd0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T12:59:54", "message_id": "ec92a160-fdce-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T12:49:54", "message_id": "86e395b4-fdcd-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T12:39:54", "message_id": "2132139a-fdcc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T12:29:54", "message_id": "bb8270ae-fdca-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T12:19:54", "message_id": "55d64c86-fdc9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T12:09:54", "message_id": "f020ed3e-fdc7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T11:59:54", "message_id": "8a76fa06-fdc6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T11:49:54", "message_id": "24cc3cee-fdc5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T11:39:54", "message_id": "bf211550-fdc3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T11:29:54", "message_id": "5970e48e-fdc2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T11:19:53", "message_id": "f3c69e40-fdc0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T11:09:53", "message_id": "8e17b0ee-fdbf-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T10:59:53", "message_id": "286b3bd6-fdbe-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T10:49:54", "message_id": "c2e6d8fc-fdbc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T10:39:53", "message_id": "5d0d3a90-fdbb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T10:29:53", "message_id": "f769975c-fdb9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T10:19:53", "message_id": "91b776aa-fdb8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T10:09:53", "message_id": "2c18388a-fdb7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T09:59:53", "message_id": "c66ad0b6-fdb5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T09:49:53", "message_id": "60bedf42-fdb4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T09:39:53", "message_id": "fb100514-fdb2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T09:29:53", "message_id": "9564b404-fdb1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T09:19:53", "message_id": "2fb35a3a-fdb0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T09:09:52", "message_id": "ca007296-fdae-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T08:59:52", "message_id": "6457f0aa-fdad-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T08:49:52", "message_id": "feb7ffd4-fdab-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T08:39:52", "message_id": "98fd00dc-fdaa-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T08:29:52", "message_id": "334e06ce-fda9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T08:19:52", "message_id": "cd9cee86-fda7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T08:09:52", "message_id": "6808bd08-fda6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T07:59:52", "message_id": "02442bf2-fda5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T07:49:52", "message_id": "9c9270e4-fda3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T07:39:52", "message_id": "36eb1cba-fda2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T07:29:52", "message_id": "d1390874-fda0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T07:19:52", "message_id": "6b8d0512-fd9f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T07:09:52", "message_id": "06053972-fd9e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T06:59:51", "message_id": "a029ebe4-fd9c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T06:49:51", "message_id": "3a805374-fd9b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T06:39:51", "message_id": "d4c7b988-fd99-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T06:29:51", "message_id": "6f1c414a-fd98-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T06:19:51", "message_id": "0967cd02-fd97-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T06:09:51", "message_id": "a3bd3524-fd95-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T05:59:51", "message_id": "3e108484-fd94-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T05:49:51", "message_id": "d8628a70-fd92-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T05:39:51", "message_id": "72b389d2-fd91-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T05:29:51", "message_id": "0d107532-fd90-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T05:19:50", "message_id": "a75f853a-fd8e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T05:09:50", "message_id": "41a99cae-fd8d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T04:59:50", "message_id": "dc09c604-fd8b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T04:49:50", "message_id": "7667511e-fd8a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T04:39:50", "message_id": "10c73550-fd89-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T04:29:50", "message_id": "ab19b896-fd87-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T04:19:50", "message_id": "4552186a-fd86-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T04:09:50", "message_id": "dfbe8174-fd84-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T03:59:50", "message_id": "79d5352a-fd83-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T03:49:50", "message_id": "1445ecb4-fd82-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T03:39:50", "message_id": "ae9ebb58-fd80-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T03:29:50", "message_id": "48fb305c-fd7f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T03:19:50", "message_id": "e359491a-fd7d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T03:09:50", "message_id": "7da5374c-fd7c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T02:59:49", "message_id": "17dbf29e-fd7b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T02:49:49", "message_id": "b21db84e-fd79-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T02:39:49", "message_id": "4caf780e-fd78-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T02:29:49", "message_id": "e6f11596-fd76-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T02:19:49", "message_id": "814b64a4-fd75-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T02:09:49", "message_id": "1b96523c-fd74-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T01:59:49", "message_id": "b5d54468-fd72-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T01:49:49", "message_id": "502b848e-fd71-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T01:39:49", "message_id": "ea877ac6-fd6f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T01:29:49", "message_id": "8505314e-fd6e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T01:19:49", "message_id": "1f65e474-fd6d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T01:09:49", "message_id": "b9a3aa1e-fd6b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T00:59:48", "message_id": "53db39f0-fd6a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T00:49:48", "message_id": "ee1c24e0-fd68-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T00:39:48", "message_id": "88833408-fd67-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T00:29:48", "message_id": "22dc1ecc-fd66-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T00:19:48", "message_id": "bd379c5a-fd64-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T00:09:48", "message_id": "57a849e4-fd63-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-04T23:59:48", "message_id": "f1ff1cb8-fd61-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-04T23:49:48", "message_id": "8c39a8ae-fd60-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-04T23:39:06", "message_id": "0d67ab44-fd5f-11e2-b8cf-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-04T23:29:06", "message_id": "a7d6abd2-fd5d-11e2-b8cf-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}], "http://localhost:8777/v2/meters/storage.objects?q.field=resource_id&q.value=0d0854c42a7b49b0a6348b2746d60e7f": [{"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-12T04:01:18", "message_id": "d769588a-0303-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-12T03:51:18", "message_id": "71b8f3f2-0302-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-12T03:41:18", "message_id": "0c070806-0301-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-12T03:31:18", "message_id": "a66aa3dc-02ff-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-12T03:21:18", "message_id": "40b5f6b4-02fe-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-12T03:11:18", "message_id": "db0c4a12-02fc-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-12T03:01:17", "message_id": "7551b2ee-02fb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-12T02:51:17", "message_id": "0fadfd54-02fa-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-12T02:41:17", "message_id": "a9e9d9e4-02f8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-12T02:31:17", "message_id": "4446c3a0-02f7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-12T02:21:17", "message_id": "de91bef8-02f5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-12T02:11:17", "message_id": "78e4b674-02f4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-12T02:01:17", "message_id": "133d89c8-02f3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-12T01:51:17", "message_id": "ad933be6-02f1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-12T01:41:17", "message_id": "47deceb0-02f0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-12T01:31:17", "message_id": "e23274d2-02ee-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-12T01:21:17", "message_id": "7c7ce006-02ed-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-12T01:11:16", "message_id": "16d3f75e-02ec-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-12T01:01:16", "message_id": "b11144ea-02ea-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-12T00:51:16", "message_id": "4b77b674-02e9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-12T00:41:16", "message_id": "e5bda2c2-02e7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-12T00:31:16", "message_id": "800cbb08-02e6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-12T00:21:16", "message_id": "1a8aca78-02e5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-12T00:11:16", "message_id": "b4adaf3c-02e3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-12T00:01:16", "message_id": "4f00e11e-02e2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T23:51:16", "message_id": "e954221e-02e0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T23:41:16", "message_id": "83ae2cda-02df-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T23:31:16", "message_id": "1e037ab2-02de-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T23:21:15", "message_id": "b84a5610-02dc-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T23:11:15", "message_id": "52aaee24-02db-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T23:01:16", "message_id": "ed3447da-02d9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T22:51:15", "message_id": "874bc17e-02d8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T22:41:15", "message_id": "219751a0-02d7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T22:31:15", "message_id": "bbea53d0-02d5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T22:21:15", "message_id": "56361822-02d4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T22:11:15", "message_id": "f08647dc-02d2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T22:01:15", "message_id": "8add1060-02d1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T21:51:15", "message_id": "253552be-02d0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T21:41:15", "message_id": "bf866350-02ce-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T21:31:14", "message_id": "59d26320-02cd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T21:21:14", "message_id": "f4287da8-02cb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T21:11:14", "message_id": "8e79aa46-02ca-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T21:01:14", "message_id": "28c93406-02c9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T20:51:14", "message_id": "c31e754a-02c7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T20:41:14", "message_id": "5d694708-02c6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T20:31:14", "message_id": "f7c29ec8-02c4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T20:21:14", "message_id": "9213c3dc-02c3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T20:11:14", "message_id": "2c70a136-02c2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T20:01:14", "message_id": "c6ba4834-02c0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T19:51:14", "message_id": "611000d8-02bf-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T19:41:14", "message_id": "fb5e0f4c-02bd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T19:31:13", "message_id": "95b39956-02bc-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T19:21:13", "message_id": "3001c926-02bb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T19:11:13", "message_id": "ca4f5a4a-02b9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T19:01:13", "message_id": "649a37e8-02b8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T18:51:13", "message_id": "fee7c524-02b6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T18:41:13", "message_id": "99400ea8-02b5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T18:31:13", "message_id": "338cf9d2-02b4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T18:21:13", "message_id": "cddd930e-02b2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T18:11:13", "message_id": "682f332e-02b1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T18:01:13", "message_id": "027e5a42-02b0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T17:51:12", "message_id": "9cd38a24-02ae-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T17:41:12", "message_id": "3721a9d2-02ad-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T17:31:12", "message_id": "d1796c92-02ab-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T17:21:12", "message_id": "6bc6e308-02aa-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T17:11:12", "message_id": "06149876-02a9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T17:01:12", "message_id": "a074b966-02a7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T16:51:12", "message_id": "3ac50252-02a6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T16:41:12", "message_id": "d5251938-02a4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T16:31:12", "message_id": "6f6d488c-02a3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T16:21:12", "message_id": "09b5d51e-02a2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T16:11:12", "message_id": "a40b760c-02a0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T16:01:12", "message_id": "3e677dce-029f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T15:51:12", "message_id": "d8b6231e-029d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T15:41:12", "message_id": "7314bb02-029c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T15:31:11", "message_id": "0d6f4ce6-029b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T15:21:11", "message_id": "a7ce839e-0299-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T15:11:11", "message_id": "421bcfa8-0298-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T15:01:11", "message_id": "dc6a54fa-0296-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T14:51:11", "message_id": "76b52564-0295-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T14:41:11", "message_id": "11074a86-0294-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T14:31:11", "message_id": "ab569292-0292-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T14:21:11", "message_id": "45a9041c-0291-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T14:11:11", "message_id": "dff7d6c6-028f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T14:01:11", "message_id": "7a525c2a-028e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T13:51:11", "message_id": "14a6cb5a-028d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T13:41:11", "message_id": "aef9680e-028b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T13:31:10", "message_id": "494a7896-028a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T13:21:10", "message_id": "e3966bfa-0288-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T13:11:10", "message_id": "7def30f8-0287-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T13:01:10", "message_id": "1847130c-0286-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T12:51:10", "message_id": "b2915ec4-0284-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T12:41:10", "message_id": "4ce6c6aa-0283-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T12:31:10", "message_id": "e7339d0c-0281-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T12:21:10", "message_id": "817fc662-0280-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T12:11:10", "message_id": "1bd275e0-027f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T12:01:10", "message_id": "b6204728-027d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T11:51:10", "message_id": "50791f18-027c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T11:41:09", "message_id": "eabeb08a-027a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T11:31:09", "message_id": "85136998-0279-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T11:21:09", "message_id": "1f640f18-0278-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T11:11:09", "message_id": "b9b5865c-0276-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T11:01:09", "message_id": "5405c854-0275-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T10:51:09", "message_id": "ee54e4c8-0273-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T10:41:09", "message_id": "88aaf488-0272-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T10:31:09", "message_id": "23008568-0271-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T10:21:09", "message_id": "bd487718-026f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T10:11:09", "message_id": "57ab0d72-026e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T10:01:09", "message_id": "f1f7ce80-026c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T09:51:08", "message_id": "8c477d7a-026b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T09:41:08", "message_id": "2695fdcc-026a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T09:31:08", "message_id": "c0edb614-0268-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T09:21:08", "message_id": "5b3d343a-0267-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T09:11:08", "message_id": "f59549fc-0265-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T09:01:08", "message_id": "8fe59fe0-0264-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T08:51:08", "message_id": "2a42df0a-0263-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T08:41:08", "message_id": "c49614e8-0261-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T08:31:08", "message_id": "5eeb9fce-0260-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T08:21:08", "message_id": "f92fed08-025e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T08:11:08", "message_id": "9384635e-025d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T08:01:08", "message_id": "2dda9a4c-025c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T07:51:07", "message_id": "c824e578-025a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T07:41:07", "message_id": "628042c2-0259-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T07:31:07", "message_id": "fccbc4c0-0257-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T07:21:07", "message_id": "9720c4f0-0256-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T07:11:07", "message_id": "31640fce-0255-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T07:01:07", "message_id": "cbc7c418-0253-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T06:51:07", "message_id": "66138f68-0252-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T06:41:07", "message_id": "00639ec0-0251-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T06:31:07", "message_id": "9ab37c5e-024f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T06:21:07", "message_id": "351444a6-024e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T06:11:07", "message_id": "cf5ccf4e-024c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T06:01:07", "message_id": "69c6d126-024b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T05:51:06", "message_id": "040c15f4-024a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T05:41:06", "message_id": "9e5a210c-0248-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T05:31:06", "message_id": "38a39d80-0247-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T05:21:06", "message_id": "d2f64678-0245-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T05:11:06", "message_id": "6d3e49f8-0244-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T05:01:06", "message_id": "0795dd6a-0243-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T04:51:06", "message_id": "a1ee4a20-0241-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T04:41:06", "message_id": "3c3b8cac-0240-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T04:31:06", "message_id": "d6902eea-023e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T04:21:06", "message_id": "70f8d768-023d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T04:11:06", "message_id": "0b2fe6e8-023c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T04:01:05", "message_id": "a5873ca2-023a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T03:51:05", "message_id": "3fda6290-0239-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T03:41:05", "message_id": "da42ac9a-0237-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T03:31:05", "message_id": "7476f2dc-0236-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T03:21:05", "message_id": "0ec8f8f0-0235-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T03:11:05", "message_id": "a91734b4-0233-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T03:01:05", "message_id": "43670064-0232-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T02:51:05", "message_id": "ddb44354-0230-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T02:41:05", "message_id": "77f67f56-022f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T02:31:05", "message_id": "1254fd04-022e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T02:21:04", "message_id": "aca39d4a-022c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T02:11:04", "message_id": "46f51114-022b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T02:01:04", "message_id": "e1510e18-0229-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T01:51:04", "message_id": "7b9a2ac4-0228-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T01:41:04", "message_id": "15fde8a0-0227-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T01:31:04", "message_id": "b04b850e-0225-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T01:21:04", "message_id": "4a847934-0224-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T01:11:04", "message_id": "e4d6feb4-0222-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T01:01:04", "message_id": "7f32ba9a-0221-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T00:51:04", "message_id": "197b8ba6-0220-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T00:41:04", "message_id": "b3cd5c7c-021e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T00:31:03", "message_id": "4e1cb0cc-021d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T00:21:03", "message_id": "e86daf02-021b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T00:11:03", "message_id": "82bc287e-021a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T00:01:03", "message_id": "1d1196f4-0219-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T23:51:03", "message_id": "b764b986-0217-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T23:41:03", "message_id": "51b31fca-0216-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T23:31:03", "message_id": "ec0ae500-0214-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T23:21:03", "message_id": "8663035a-0213-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T23:11:03", "message_id": "20a89300-0212-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T23:01:03", "message_id": "bb54ce98-0210-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T22:51:03", "message_id": "5560a9aa-020f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T22:41:08", "message_id": "f2bf8d30-020d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T22:31:03", "message_id": "8a0e264e-020c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T22:21:02", "message_id": "24560002-020b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T22:11:02", "message_id": "bebb9b0e-0209-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T22:01:02", "message_id": "58fbdbb8-0208-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T21:51:02", "message_id": "f364efa2-0206-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T21:41:02", "message_id": "8daca0de-0205-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T21:31:02", "message_id": "27f76bf8-0204-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T21:21:02", "message_id": "c26147ec-0202-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T21:11:02", "message_id": "5ca45eae-0201-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T21:01:02", "message_id": "f6e2b1fc-01ff-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T20:51:02", "message_id": "9194b15c-01fe-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T20:41:02", "message_id": "2b99002a-01fd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T20:31:02", "message_id": "c61a77f2-01fb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T20:21:01", "message_id": "6035f8b8-01fa-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T20:11:01", "message_id": "fa798536-01f8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T20:01:01", "message_id": "94d18a5e-01f7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T19:51:01", "message_id": "2f25e732-01f6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T19:41:01", "message_id": "c9779c56-01f4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T19:31:01", "message_id": "63d120bc-01f3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T19:21:01", "message_id": "fe084d74-01f1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T19:11:01", "message_id": "986a5120-01f0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T19:01:01", "message_id": "32bb3ef8-01ef-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T18:51:00", "message_id": "ccfa2c6a-01ed-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T18:41:00", "message_id": "676086ca-01ec-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T18:31:00", "message_id": "01abffae-01eb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T18:21:00", "message_id": "9bfae6f8-01e9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T18:11:00", "message_id": "364608a2-01e8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T18:01:00", "message_id": "d094efc4-01e6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T17:51:00", "message_id": "6af010aa-01e5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T17:41:00", "message_id": "05459b04-01e4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T17:31:00", "message_id": "9f90d1e4-01e2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T17:21:00", "message_id": "39e338e2-01e1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T17:11:00", "message_id": "d42ec62a-01df-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T17:00:59", "message_id": "6e809426-01de-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T16:50:59", "message_id": "08d5c296-01dd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T16:40:59", "message_id": "a3227fc6-01db-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T16:30:59", "message_id": "3d787bd6-01da-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T16:20:59", "message_id": "d7c185cc-01d8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T16:10:59", "message_id": "721d56b6-01d7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T16:00:59", "message_id": "0c734a4c-01d6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T15:50:59", "message_id": "a6c34374-01d4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T15:40:59", "message_id": "412454fa-01d3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T15:30:59", "message_id": "db7176f2-01d1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T15:20:59", "message_id": "75cad13c-01d0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T15:10:59", "message_id": "10198d48-01cf-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T15:00:58", "message_id": "aa645dbc-01cd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T14:50:58", "message_id": "44bbec7e-01cc-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T14:40:58", "message_id": "df039324-01ca-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T14:30:58", "message_id": "794bcb10-01c9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T14:20:58", "message_id": "139c8864-01c8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T14:10:58", "message_id": "adf6b986-01c6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T14:00:58", "message_id": "4848b432-01c5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T13:50:58", "message_id": "e29c6648-01c3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T13:40:58", "message_id": "7ce5f86a-01c2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T13:30:58", "message_id": "17430350-01c1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T13:20:58", "message_id": "b18ab7ca-01bf-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T13:10:57", "message_id": "4bdc98e0-01be-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T13:00:57", "message_id": "e62f5ec0-01bc-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T12:50:57", "message_id": "807d7162-01bb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T12:40:57", "message_id": "1ad29b2c-01ba-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T12:30:57", "message_id": "b52a8560-01b8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T12:20:57", "message_id": "4f80142e-01b7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T12:10:57", "message_id": "e9d7a214-01b5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T12:00:57", "message_id": "841fb20a-01b4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T11:50:57", "message_id": "1e75ed4e-01b3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T11:40:57", "message_id": "b8d1146a-01b1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T11:30:57", "message_id": "531c5518-01b0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T11:20:57", "message_id": "ed6f9ba4-01ae-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T11:10:57", "message_id": "87c88820-01ad-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T11:00:56", "message_id": "22039b66-01ac-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T10:50:57", "message_id": "bc88571e-01aa-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T10:40:56", "message_id": "56b4745a-01a9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T10:30:56", "message_id": "f111651e-01a7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T10:20:56", "message_id": "8b573ea2-01a6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T10:10:56", "message_id": "25c6ef2a-01a5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T10:00:56", "message_id": "c00343b0-01a3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T09:50:56", "message_id": "5a48569c-01a2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T09:40:56", "message_id": "f4a53c48-01a0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T09:30:56", "message_id": "8f10e068-019f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T09:20:56", "message_id": "2945a864-019e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T09:10:55", "message_id": "c39e62d6-019c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T09:00:56", "message_id": "5e07ef10-019b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T08:50:55", "message_id": "f83f0548-0199-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T08:40:55", "message_id": "929e8426-0198-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T08:30:55", "message_id": "2cd2fe66-0197-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T08:20:55", "message_id": "c731fcf2-0195-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T08:10:55", "message_id": "6172aa34-0194-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T08:00:55", "message_id": "fbc6fbc8-0192-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T07:50:55", "message_id": "962a4690-0191-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T07:40:55", "message_id": "307f7988-0190-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T07:30:55", "message_id": "caca69aa-018e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T07:20:54", "message_id": "65207834-018d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T07:10:54", "message_id": "ff7222ea-018b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T07:00:54", "message_id": "99bfe3a2-018a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T06:50:54", "message_id": "34166194-0189-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T06:40:54", "message_id": "ce691996-0187-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T06:30:54", "message_id": "68bcb48c-0186-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T06:20:54", "message_id": "0311e856-0185-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T06:10:54", "message_id": "9d575dee-0183-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T06:00:54", "message_id": "379fc816-0182-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T05:50:54", "message_id": "d201451c-0180-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T05:40:54", "message_id": "6c4e727c-017f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T05:30:53", "message_id": "06951108-017e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T05:20:53", "message_id": "a0ec37e2-017c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T05:10:53", "message_id": "3b421e80-017b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T05:00:53", "message_id": "d59ae310-0179-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T04:50:53", "message_id": "6fe014ce-0178-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T04:40:53", "message_id": "0a2a64a0-0177-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T04:30:53", "message_id": "a47f3c3a-0175-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T04:20:53", "message_id": "3ecf3ba2-0174-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T04:10:53", "message_id": "d9221a28-0172-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T04:00:53", "message_id": "737d531e-0171-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T03:50:53", "message_id": "0dcede3a-0170-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T03:40:53", "message_id": "a822c642-016e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T03:30:52", "message_id": "4277f0de-016d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T03:20:52", "message_id": "dcc407ba-016b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T03:10:52", "message_id": "7715d9bc-016a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T03:00:52", "message_id": "116838fe-0169-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T02:50:52", "message_id": "abbc3236-0167-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T02:40:52", "message_id": "4605e1a4-0166-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T02:30:52", "message_id": "e0571f5e-0164-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T02:20:52", "message_id": "7abafd88-0163-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T02:10:52", "message_id": "150cc88c-0162-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T02:00:52", "message_id": "af572d9e-0160-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T01:50:52", "message_id": "49cf6924-015f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T01:40:52", "message_id": "e41304d4-015d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T01:30:52", "message_id": "7e71bab8-015c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T01:20:52", "message_id": "18c93d0e-015b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T01:10:51", "message_id": "b30b5d22-0159-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T01:00:51", "message_id": "4d6629c6-0158-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T00:50:51", "message_id": "e793b70e-0156-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T00:40:51", "message_id": "81eac61e-0155-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T00:30:51", "message_id": "1c3b36f6-0154-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T00:20:51", "message_id": "b67e5b00-0152-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T00:10:51", "message_id": "50db9e62-0151-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T00:00:51", "message_id": "eb293c60-014f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T23:50:50", "message_id": "857b9620-014e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T23:40:50", "message_id": "1fc739e8-014d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T23:30:50", "message_id": "ba0e0ca4-014b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T23:20:50", "message_id": "54711b6c-014a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T23:10:50", "message_id": "eeba2eea-0148-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T23:00:50", "message_id": "894ad7d6-0147-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T22:50:50", "message_id": "235f4598-0146-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T22:40:50", "message_id": "bda8db16-0144-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T22:30:50", "message_id": "57fe3596-0143-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T22:20:50", "message_id": "f261c7e4-0141-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T22:10:49", "message_id": "8c9d8994-0140-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T22:00:49", "message_id": "26fc57e2-013f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T21:50:49", "message_id": "c1505a0c-013d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T21:40:49", "message_id": "5ba8fcc8-013c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T21:30:49", "message_id": "f6001bb4-013a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T21:20:49", "message_id": "90498e28-0139-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T21:10:49", "message_id": "2aa59b76-0138-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T21:00:49", "message_id": "c4fcafe0-0136-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T20:50:49", "message_id": "5f49d19c-0135-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T20:40:49", "message_id": "f9a04426-0133-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T20:30:49", "message_id": "93e566d0-0132-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T20:20:49", "message_id": "2e584c2a-0131-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T20:10:49", "message_id": "c89432e2-012f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T20:00:49", "message_id": "62e4bb5c-012e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T19:50:49", "message_id": "fd41eba4-012c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T19:40:48", "message_id": "97836910-012b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T19:30:48", "message_id": "31dba5a6-012a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T19:20:48", "message_id": "cc3d759a-0128-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T19:10:48", "message_id": "668260d6-0127-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T19:00:48", "message_id": "00cd2182-0126-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T18:50:48", "message_id": "9b1904ec-0124-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T18:40:48", "message_id": "356e2916-0123-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T18:30:48", "message_id": "cfb7ea9a-0121-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T18:20:48", "message_id": "6a0632ca-0120-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T18:10:47", "message_id": "045671a2-011f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T18:00:47", "message_id": "9e9ef5ec-011d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T17:50:47", "message_id": "38f92380-011c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T17:40:47", "message_id": "d345864c-011a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T17:30:47", "message_id": "6d945996-0119-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T17:20:47", "message_id": "07edb660-0118-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T17:10:47", "message_id": "a23b5aa8-0116-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T17:00:47", "message_id": "3c8e0a58-0115-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T16:50:47", "message_id": "d6d9390e-0113-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T16:40:47", "message_id": "7129c912-0112-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T16:30:47", "message_id": "0b8af230-0111-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T16:20:46", "message_id": "a5d16768-010f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T16:10:46", "message_id": "40293112-010e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T16:00:46", "message_id": "da7808ee-010c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T15:50:49", "message_id": "764e2048-010b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T15:40:47", "message_id": "0f79295e-010a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T15:30:46", "message_id": "a9923fdc-0108-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T15:20:46", "message_id": "43c93710-0107-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T15:10:46", "message_id": "de30a65a-0105-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T15:00:46", "message_id": "786f27f2-0104-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T14:50:46", "message_id": "12ca030a-0103-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T14:40:46", "message_id": "ad158c4c-0101-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T14:30:46", "message_id": "475fc576-0100-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T14:20:46", "message_id": "e1bdbb16-00fe-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T14:10:46", "message_id": "7c451636-00fd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T14:00:45", "message_id": "164cea1c-00fc-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T13:50:45", "message_id": "b0acc34a-00fa-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T13:40:45", "message_id": "4af63c08-00f9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T13:30:45", "message_id": "e5475442-00f7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T13:20:46", "message_id": "7ffc8734-00f6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T13:10:45", "message_id": "19dc9062-00f5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T13:00:45", "message_id": "b439a85e-00f3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T12:50:45", "message_id": "4e811e9e-00f2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T12:40:45", "message_id": "e8da9daa-00f0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T12:30:44", "message_id": "8330a22a-00ef-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T12:20:44", "message_id": "1d7ae964-00ee-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T12:10:44", "message_id": "b7cc35a6-00ec-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T12:00:44", "message_id": "521f4f00-00eb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T11:50:44", "message_id": "ec787b3c-00e9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T11:40:44", "message_id": "86c1760a-00e8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T11:30:44", "message_id": "211a802c-00e7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T11:20:44", "message_id": "bb69c748-00e5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T11:10:44", "message_id": "55c1595c-00e4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T11:00:44", "message_id": "f008f33c-00e2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T10:50:44", "message_id": "8a5ab9d6-00e1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T10:40:43", "message_id": "24aa45bc-00e0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T10:30:43", "message_id": "bf019a9a-00de-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T10:20:43", "message_id": "594d4ef2-00dd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T10:10:43", "message_id": "f3a18434-00db-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T10:00:43", "message_id": "8e02d12e-00da-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T09:50:43", "message_id": "2841ef42-00d9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T09:40:43", "message_id": "c29c8374-00d7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T09:30:43", "message_id": "5cec9e66-00d6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T09:20:43", "message_id": "f73ed4b8-00d4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T09:10:43", "message_id": "9198fa22-00d3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T09:00:43", "message_id": "2be58ad4-00d2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T08:50:42", "message_id": "c62f4ac8-00d0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T08:40:42", "message_id": "6089d5cc-00cf-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T08:30:42", "message_id": "fade0776-00cd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T08:20:42", "message_id": "952ec790-00cc-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T08:10:42", "message_id": "2f7986a2-00cb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T08:00:42", "message_id": "c9c9480c-00c9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T07:50:42", "message_id": "641a6370-00c8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T07:40:42", "message_id": "fe963070-00c6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T07:30:42", "message_id": "98c738d0-00c5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T07:20:42", "message_id": "330aae24-00c4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T07:10:42", "message_id": "cd5d8e4e-00c2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T07:00:41", "message_id": "67b31d76-00c1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T06:50:41", "message_id": "01fe7fa8-00c0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T06:40:41", "message_id": "9c52e924-00be-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T06:30:41", "message_id": "36a5b472-00bd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T06:20:41", "message_id": "d0f1d0bc-00bb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T06:10:41", "message_id": "6b48421a-00ba-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T06:00:41", "message_id": "05a38812-00b9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T05:50:41", "message_id": "9fef6622-00b7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T05:40:41", "message_id": "3a46cde8-00b6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T05:30:41", "message_id": "d49306de-00b4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T05:20:41", "message_id": "6ee454e2-00b3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T05:10:41", "message_id": "0937d12e-00b2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T05:00:40", "message_id": "a38cb76e-00b0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T04:50:40", "message_id": "3df26742-00af-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T04:40:40", "message_id": "d84a3baa-00ad-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T04:30:40", "message_id": "72976f86-00ac-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T04:20:40", "message_id": "0cf792c4-00ab-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T04:10:40", "message_id": "a751283c-00a9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T04:00:40", "message_id": "41c68fe4-00a8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T03:50:41", "message_id": "dc437b2e-00a6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T03:40:40", "message_id": "7656850a-00a5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T03:30:40", "message_id": "10dc41b6-00a4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T03:20:40", "message_id": "ab04f672-00a2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T03:10:40", "message_id": "456075ea-00a1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T03:00:40", "message_id": "dfb47b84-009f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T02:50:40", "message_id": "79f80820-009e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T02:40:40", "message_id": "1480db4e-009d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T02:30:40", "message_id": "ae9ed822-009b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T02:20:40", "message_id": "48f50362-009a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T02:10:39", "message_id": "e348c5e0-0098-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T02:00:39", "message_id": "7d9b19d8-0097-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T01:50:39", "message_id": "17d84ee6-0096-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T01:40:39", "message_id": "b2280ad8-0094-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T01:30:39", "message_id": "4c7ac2c6-0093-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T01:20:39", "message_id": "e6d73e50-0091-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T01:10:39", "message_id": "811beaa8-0090-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T01:00:39", "message_id": "1b7a224c-008f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T00:50:39", "message_id": "b5c0dc1c-008d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T00:40:38", "message_id": "500b50ba-008c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T00:30:38", "message_id": "ea6b95f4-008a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T00:20:38", "message_id": "84c0cbe4-0089-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T00:10:38", "message_id": "1f0d3ed2-0088-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T00:00:38", "message_id": "b95dfec4-0086-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T23:50:38", "message_id": "53a8fb0c-0085-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T23:40:38", "message_id": "ee09f720-0083-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T23:30:38", "message_id": "884fdfcc-0082-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T23:20:38", "message_id": "2299f5a6-0081-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T23:10:38", "message_id": "bcf6874c-007f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T23:00:38", "message_id": "577eacd8-007e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T22:50:37", "message_id": "f19115b0-007c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T22:40:37", "message_id": "8be9a66a-007b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T22:30:37", "message_id": "2629ac5e-007a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T22:20:37", "message_id": "c085ed96-0078-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T22:10:37", "message_id": "5ad5a1f4-0077-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T22:00:37", "message_id": "f526fe80-0075-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T21:50:37", "message_id": "8f82e37e-0074-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T21:40:37", "message_id": "29cc80cc-0073-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T21:30:37", "message_id": "c421ab90-0071-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T21:20:37", "message_id": "5e8276bc-0070-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T21:10:37", "message_id": "f8c67518-006e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T21:00:36", "message_id": "930fc9dc-006d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T20:50:36", "message_id": "2d5d52f4-006c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T20:40:36", "message_id": "c7b03d00-006a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T20:30:36", "message_id": "6208d4b8-0069-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T20:20:36", "message_id": "fc4dff5a-0067-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T20:10:36", "message_id": "96aafa3c-0066-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T20:00:36", "message_id": "30f669de-0065-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T19:50:36", "message_id": "cb4e555c-0063-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T19:40:36", "message_id": "659945d8-0062-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T19:30:36", "message_id": "ffeb830a-0060-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T19:20:36", "message_id": "9a37aa58-005f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T19:10:35", "message_id": "348c7b4e-005e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T19:00:35", "message_id": "cee03cf0-005c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T18:50:35", "message_id": "692ff9be-005b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T18:40:35", "message_id": "037caef6-005a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T18:30:35", "message_id": "9ddce35a-0058-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T18:20:35", "message_id": "381ce7dc-0057-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T18:10:35", "message_id": "d27a0a8c-0055-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T18:00:35", "message_id": "6ccbf2a0-0054-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T17:50:35", "message_id": "071ea840-0053-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T17:40:35", "message_id": "a17864e6-0051-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T17:30:35", "message_id": "3bcc7f52-0050-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T17:20:35", "message_id": "d619e632-004e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T17:10:34", "message_id": "706a2e4c-004d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T17:00:34", "message_id": "0ab8d73e-004c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T16:50:34", "message_id": "a50bb5e2-004a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T16:40:34", "message_id": "3f66e4ba-0049-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T16:30:34", "message_id": "d9b8df70-0047-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T16:20:34", "message_id": "740d96e4-0046-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T16:10:34", "message_id": "0e59d3ae-0045-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T16:00:34", "message_id": "a8b54b24-0043-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T15:50:34", "message_id": "4304328c-0042-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T15:40:34", "message_id": "dd512f4a-0040-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T15:30:34", "message_id": "77a6543c-003f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T15:20:34", "message_id": "11fc3c60-003e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T15:10:33", "message_id": "ac4b3f48-003c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T15:00:33", "message_id": "46960e68-003b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T14:50:33", "message_id": "e0ee7722-0039-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T14:40:33", "message_id": "7b388982-0038-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T14:30:33", "message_id": "1592e524-0037-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T14:20:33", "message_id": "afde611e-0035-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T14:10:33", "message_id": "4a407ece-0034-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T14:00:33", "message_id": "e4c1cc02-0032-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T13:50:33", "message_id": "7ed3c70c-0031-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T13:40:33", "message_id": "1931c378-0030-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T13:30:33", "message_id": "b37fe3e4-002e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T13:20:33", "message_id": "4ddb41f6-002d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T13:10:32", "message_id": "e827c20e-002b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T13:00:32", "message_id": "8275e734-002a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T12:50:32", "message_id": "1cca21ee-0029-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T12:40:32", "message_id": "b7101be8-0027-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T12:30:32", "message_id": "5169196c-0026-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T12:20:32", "message_id": "ebb3186c-0024-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T12:10:32", "message_id": "85fd20a4-0023-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T12:00:32", "message_id": "205a4e9e-0022-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T11:50:32", "message_id": "baa639f6-0020-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T11:40:32", "message_id": "550d1a3e-001f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T11:30:32", "message_id": "ef62e976-001d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T11:20:31", "message_id": "89a45814-001c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T11:10:32", "message_id": "24153c44-001b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T11:00:31", "message_id": "be54cd1c-0019-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T10:50:31", "message_id": "58a6be5e-0018-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T10:40:31", "message_id": "f30310e4-0016-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T10:30:31", "message_id": "8d707d8a-0015-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T10:20:31", "message_id": "27ba55ca-0014-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T10:10:31", "message_id": "c2212b72-0012-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T10:00:31", "message_id": "5c455f68-0011-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T09:50:31", "message_id": "f694cf10-000f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T09:40:31", "message_id": "90ddf7c4-000e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T09:30:31", "message_id": "2b40af5c-000d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T09:20:30", "message_id": "c58528d8-000b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T09:10:30", "message_id": "5fd3c874-000a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T09:00:30", "message_id": "fa2dbda0-0008-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T08:50:30", "message_id": "947c7470-0007-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T08:40:30", "message_id": "2ed565d8-0006-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T08:30:30", "message_id": "c92b2f34-0004-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T08:20:30", "message_id": "6376e706-0003-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T08:10:30", "message_id": "fdd67d5e-0001-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T08:00:30", "message_id": "981cab1a-0000-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T07:50:30", "message_id": "326bc126-ffff-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T07:40:30", "message_id": "ccbc94be-fffd-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T07:30:30", "message_id": "670b75fa-fffc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T07:20:29", "message_id": "016540a6-fffb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T07:10:29", "message_id": "9baca8e0-fff9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T07:00:29", "message_id": "35f7dc28-fff8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T06:50:29", "message_id": "d05ad5ba-fff6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T06:40:29", "message_id": "6aa2b644-fff5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T06:30:29", "message_id": "04f02878-fff4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T06:20:29", "message_id": "9f43fbcc-fff2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T06:10:29", "message_id": "399483a6-fff1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T06:00:29", "message_id": "d3ecc140-ffef-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T05:50:29", "message_id": "6e456942-ffee-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T05:40:29", "message_id": "089e550a-ffed-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T05:30:28", "message_id": "a2e71306-ffeb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T05:20:28", "message_id": "3d2e6f6a-ffea-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T05:10:28", "message_id": "d783bc34-ffe8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T05:00:28", "message_id": "71d8bd0e-ffe7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T04:50:28", "message_id": "0c1c869a-ffe6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T04:40:28", "message_id": "a67df50e-ffe4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T04:30:28", "message_id": "40c1dab0-ffe3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T04:20:28", "message_id": "db1be094-ffe1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T04:10:28", "message_id": "756cbe4a-ffe0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T04:00:28", "message_id": "0fb5375e-ffdf-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T03:50:28", "message_id": "aa0c4c54-ffdd-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T03:40:27", "message_id": "4459b618-ffdc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T03:30:27", "message_id": "deab0228-ffda-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T03:20:27", "message_id": "78fa7cb6-ffd9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T03:10:27", "message_id": "134ef4ba-ffd8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T03:00:27", "message_id": "ada164f0-ffd6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T02:50:27", "message_id": "47ec9b94-ffd5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T02:40:27", "message_id": "e23b2c58-ffd3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T02:30:27", "message_id": "7c95be5a-ffd2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T02:20:27", "message_id": "17000204-ffd1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T02:10:27", "message_id": "b129dc26-ffcf-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T02:00:26", "message_id": "4b8567d8-ffce-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T01:50:26", "message_id": "e5cfc786-ffcc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T01:40:26", "message_id": "80216db4-ffcb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T01:30:26", "message_id": "1a728cba-ffca-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T01:20:26", "message_id": "b4ca1a8c-ffc8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T01:10:26", "message_id": "4f202a7e-ffc7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T01:00:26", "message_id": "e96da2b6-ffc5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T00:50:26", "message_id": "83c320f4-ffc4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T00:40:26", "message_id": "1e176004-ffc3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T00:30:26", "message_id": "b86570a8-ffc1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T00:20:26", "message_id": "5310b25e-ffc0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T00:10:25", "message_id": "ed059e94-ffbe-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T00:00:26", "message_id": "8781730a-ffbd-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T23:50:25", "message_id": "21b1d638-ffbc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T23:40:25", "message_id": "bc07b3da-ffba-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T23:30:25", "message_id": "56607734-ffb9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T23:20:25", "message_id": "f0cc1dca-ffb7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T23:10:25", "message_id": "8b1d1ae8-ffb6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T23:00:25", "message_id": "25954eda-ffb5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T22:50:25", "message_id": "bf8fdeb2-ffb3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T22:40:25", "message_id": "59edbe5e-ffb2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T22:30:25", "message_id": "f43ddf68-ffb0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T22:20:24", "message_id": "8e7e3624-ffaf-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T22:10:24", "message_id": "28e396b6-ffae-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T22:00:24", "message_id": "c329cfda-ffac-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T21:50:24", "message_id": "5d6c41b0-ffab-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T21:40:24", "message_id": "f7c637cc-ffa9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T21:30:24", "message_id": "921ea3ce-ffa8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T21:20:24", "message_id": "2c66b2a2-ffa7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T21:10:24", "message_id": "c6aad8d6-ffa5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T21:00:24", "message_id": "61053a18-ffa4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T20:50:24", "message_id": "fb55695a-ffa2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T20:40:23", "message_id": "95a15e58-ffa1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T20:30:23", "message_id": "2ff75748-ffa0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T20:20:23", "message_id": "ca49c594-ff9e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T20:10:23", "message_id": "648eed52-ff9d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T20:00:23", "message_id": "fee83234-ff9b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T19:50:23", "message_id": "9931d39c-ff9a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T19:40:23", "message_id": "338b56b8-ff99-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T19:30:23", "message_id": "cddc9454-ff97-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T19:20:23", "message_id": "6832578e-ff96-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T19:10:23", "message_id": "02813c76-ff95-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T19:00:23", "message_id": "9cca4022-ff93-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T18:50:22", "message_id": "3723fd86-ff92-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T18:40:22", "message_id": "d17609f8-ff90-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T18:30:22", "message_id": "6bb67464-ff8f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T18:20:22", "message_id": "06061706-ff8e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T18:10:22", "message_id": "a05b4b3e-ff8c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T18:00:22", "message_id": "3aaf6eba-ff8b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T17:50:22", "message_id": "d4ff7b1a-ff89-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T17:40:22", "message_id": "6f571954-ff88-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T17:30:22", "message_id": "09a679b6-ff87-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T17:20:22", "message_id": "a3f2a154-ff85-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T17:10:22", "message_id": "3e4b4aaa-ff84-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T17:00:21", "message_id": "d890422a-ff82-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T16:50:21", "message_id": "72d8e1ea-ff81-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T16:40:21", "message_id": "0d2f1856-ff80-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T16:30:21", "message_id": "a78bf4d4-ff7e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T16:20:21", "message_id": "41cf3c74-ff7d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T16:10:21", "message_id": "dc299cbc-ff7b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T16:00:21", "message_id": "767b10f4-ff7a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T15:50:21", "message_id": "10cf298a-ff79-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T15:40:21", "message_id": "ab1a78e8-ff77-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T15:30:21", "message_id": "4566cc8c-ff76-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T15:20:20", "message_id": "dfba9b58-ff74-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T15:10:20", "message_id": "7a07d51a-ff73-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T15:00:20", "message_id": "1457f1a6-ff72-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T14:50:20", "message_id": "aeab12da-ff70-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T14:40:20", "message_id": "48f9c63a-ff6f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T14:30:20", "message_id": "e35ff6ba-ff6d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T14:20:20", "message_id": "7dafbac2-ff6c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T14:10:20", "message_id": "17fecee4-ff6b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T14:00:20", "message_id": "b24f385a-ff69-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T13:50:20", "message_id": "4c9ca692-ff68-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T13:40:20", "message_id": "e704a18c-ff66-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T13:30:20", "message_id": "814a0d60-ff65-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T13:20:19", "message_id": "1b9bfa74-ff64-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T13:10:19", "message_id": "b5f2c3fc-ff62-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T13:00:19", "message_id": "504dfa40-ff61-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T12:50:19", "message_id": "eaa3b28a-ff5f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T12:40:19", "message_id": "84ee6940-ff5e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T12:30:19", "message_id": "1f449eee-ff5d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T12:20:19", "message_id": "b999ef3c-ff5b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T12:10:19", "message_id": "53df783e-ff5a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T12:00:19", "message_id": "ee2da5de-ff58-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T11:50:19", "message_id": "888627e8-ff57-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T11:40:19", "message_id": "22daec5e-ff56-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T11:30:19", "message_id": "bd2b2302-ff54-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T11:20:18", "message_id": "577b0a14-ff53-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T11:10:19", "message_id": "f1e89bb8-ff51-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T11:00:18", "message_id": "8c2f491c-ff50-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T10:50:18", "message_id": "2682d1e8-ff4f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T10:40:18", "message_id": "c0de9dfa-ff4d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T10:30:18", "message_id": "5b274f4e-ff4c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T10:20:18", "message_id": "f57a4e90-ff4a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T10:10:18", "message_id": "8fd83c42-ff49-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T10:00:18", "message_id": "2a33e5ea-ff48-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T09:50:18", "message_id": "c4728f14-ff46-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T09:40:18", "message_id": "5eccbbea-ff45-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T09:30:18", "message_id": "f90c1da6-ff43-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T09:20:18", "message_id": "93653d3a-ff42-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T09:10:17", "message_id": "2db63742-ff41-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T09:00:17", "message_id": "c7fa6ee2-ff3f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T08:50:17", "message_id": "624d6f64-ff3e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T08:40:17", "message_id": "fca51622-ff3c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T08:30:17", "message_id": "96f2e36e-ff3b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T08:20:17", "message_id": "31360e58-ff3a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T08:10:17", "message_id": "cb86ee84-ff38-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T08:00:17", "message_id": "65d6157a-ff37-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T07:50:17", "message_id": "002703fc-ff36-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T07:40:16", "message_id": "9a74455c-ff34-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T07:30:16", "message_id": "34d01fce-ff33-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T07:20:16", "message_id": "cf1769a4-ff31-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T07:10:16", "message_id": "6966c164-ff30-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T07:00:16", "message_id": "03c0f84e-ff2f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T06:50:16", "message_id": "9e133918-ff2d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T06:40:16", "message_id": "38633fba-ff2c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T06:30:16", "message_id": "d2aa1f3c-ff2a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T06:20:16", "message_id": "6d0c78ce-ff29-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T06:10:16", "message_id": "0769890e-ff28-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T06:00:16", "message_id": "a1a9a5d2-ff26-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T05:50:16", "message_id": "3c05d260-ff25-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T05:40:15", "message_id": "d647eb6c-ff23-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T05:30:16", "message_id": "70c11b5c-ff22-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T05:20:15", "message_id": "0af50b22-ff21-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T05:10:15", "message_id": "a539faf0-ff1f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T05:00:15", "message_id": "3fa0d3fe-ff1e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T04:50:15", "message_id": "d9e45c94-ff1c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T04:40:15", "message_id": "743d6792-ff1b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T04:30:15", "message_id": "0e9bd82a-ff1a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T04:20:15", "message_id": "a8dcd29c-ff18-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T04:10:15", "message_id": "4338e508-ff17-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T04:00:15", "message_id": "dd861cf4-ff15-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T03:50:15", "message_id": "77ef31a6-ff14-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T03:40:14", "message_id": "122ffe6e-ff13-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T03:30:14", "message_id": "ac776efa-ff11-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T03:20:14", "message_id": "46ce241e-ff10-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T03:10:14", "message_id": "e132bd5a-ff0e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T03:00:14", "message_id": "7b708ffc-ff0d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T02:50:14", "message_id": "15de4860-ff0c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T02:40:14", "message_id": "b0287a50-ff0a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T02:30:14", "message_id": "4a7a7d4e-ff09-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T02:20:14", "message_id": "e4c2aca2-ff07-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T02:10:14", "message_id": "7f1363de-ff06-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T02:00:14", "message_id": "1960bcc2-ff05-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T01:50:14", "message_id": "b3c0fc2a-ff03-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T01:40:13", "message_id": "4e058b7c-ff02-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T01:30:13", "message_id": "e85de1a8-ff00-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T01:20:13", "message_id": "82afb4fe-feff-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T01:10:13", "message_id": "1d0895a4-fefe-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T01:00:13", "message_id": "b74b8736-fefc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T00:50:13", "message_id": "51a811e8-fefb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T00:40:13", "message_id": "ebfd5c96-fef9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T00:30:13", "message_id": "863f5392-fef8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T00:20:13", "message_id": "20913ae8-fef7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T00:10:13", "message_id": "bae41770-fef5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T00:00:12", "message_id": "552c02ae-fef4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T23:50:12", "message_id": "ef8f1022-fef2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T23:40:12", "message_id": "89df7fba-fef1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T23:30:12", "message_id": "24357e18-fef0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T23:20:12", "message_id": "be970258-feee-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T23:10:12", "message_id": "58ceff44-feed-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T23:00:12", "message_id": "f36caac6-feeb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T22:50:12", "message_id": "8d78b3d2-feea-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T22:40:12", "message_id": "27cdb498-fee9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T22:30:12", "message_id": "c220071e-fee7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T22:20:12", "message_id": "5c68bb88-fee6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T22:10:12", "message_id": "f6d06b32-fee4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T22:00:12", "message_id": "9139cba2-fee3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T21:50:11", "message_id": "2b69506e-fee2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T21:40:12", "message_id": "c5e0d3f8-fee0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T21:30:11", "message_id": "6017a8f4-fedf-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T21:20:11", "message_id": "fa6a8cca-fedd-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T21:10:11", "message_id": "94b33568-fedc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T21:00:11", "message_id": "2efa07b6-fedb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T20:50:11", "message_id": "c956b810-fed9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T20:40:11", "message_id": "63b556a2-fed8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T20:30:11", "message_id": "fe012058-fed6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T20:20:11", "message_id": "987efa26-fed5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T20:10:11", "message_id": "329e0d60-fed4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T20:00:11", "message_id": "cd07269a-fed2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T19:50:10", "message_id": "674f4220-fed1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T19:40:10", "message_id": "01a6a8b0-fed0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T19:30:10", "message_id": "9bf78e7c-fece-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T19:20:10", "message_id": "364461be-fecd-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T19:10:10", "message_id": "d0946cfc-fecb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T19:00:10", "message_id": "6ad440b4-feca-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T18:50:10", "message_id": "0550c4b6-fec9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T18:40:10", "message_id": "9f8808c0-fec7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T18:30:10", "message_id": "39d1fa78-fec6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T18:20:10", "message_id": "d4281c44-fec4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T18:10:09", "message_id": "6e749158-fec3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T18:00:09", "message_id": "08b9302c-fec2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T17:50:09", "message_id": "a3116fc4-fec0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T17:40:09", "message_id": "3d692f32-febf-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T17:30:09", "message_id": "d7b4b77a-febd-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T17:20:09", "message_id": "720c4b6e-febc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T17:10:09", "message_id": "0c524ce8-febb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T17:00:09", "message_id": "a6a4a59a-feb9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T16:50:09", "message_id": "40f83618-feb8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T16:40:09", "message_id": "db4124d4-feb6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T16:30:08", "message_id": "75987318-feb5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T16:20:08", "message_id": "0fe528fa-feb4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T16:10:08", "message_id": "aa425fa0-feb2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T16:00:08", "message_id": "4494cd60-feb1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T15:50:08", "message_id": "deddb03c-feaf-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T15:40:08", "message_id": "793bbbee-feae-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T15:30:08", "message_id": "13810f62-fead-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T15:20:08", "message_id": "add680e4-feab-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T15:10:08", "message_id": "48244caa-feaa-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T15:00:08", "message_id": "e2756b10-fea8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T14:50:08", "message_id": "7ccb1716-fea7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T14:40:08", "message_id": "17298812-fea6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T14:30:08", "message_id": "b18314ac-fea4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T14:20:07", "message_id": "4bd1a372-fea3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T14:10:07", "message_id": "e61e8bc2-fea1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T14:00:07", "message_id": "808c4e1c-fea0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T13:50:07", "message_id": "1ad00024-fe9f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T13:40:07", "message_id": "b5128e88-fe9d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T13:30:07", "message_id": "4f6593d8-fe9c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T13:20:07", "message_id": "e9b5a6f0-fe9a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T13:10:07", "message_id": "84043a84-fe99-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T13:00:07", "message_id": "1e5fb290-fe98-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T12:50:07", "message_id": "b8b46266-fe96-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T12:40:07", "message_id": "531917c2-fe95-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T12:30:07", "message_id": "ed585fb6-fe93-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T12:20:06", "message_id": "87a3ae42-fe92-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T12:10:06", "message_id": "22017a98-fe91-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T12:00:06", "message_id": "bc5298cc-fe8f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T11:50:06", "message_id": "56a112b6-fe8e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T11:40:06", "message_id": "f0ff18c8-fe8c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T11:30:07", "message_id": "8bd09bb2-fe8b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T11:20:06", "message_id": "25975d64-fe8a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T11:10:06", "message_id": "bfe3578a-fe88-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T11:00:06", "message_id": "5a3c5108-fe87-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T10:50:06", "message_id": "f4906322-fe85-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T10:40:06", "message_id": "8ee1f5e6-fe84-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T10:30:05", "message_id": "292fb748-fe83-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T10:20:05", "message_id": "c385bed4-fe81-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T10:10:05", "message_id": "5dcc27e6-fe80-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T10:00:05", "message_id": "f823648c-fe7e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T09:50:05", "message_id": "926faa02-fe7d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T09:40:05", "message_id": "2cc6385c-fe7c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T09:30:05", "message_id": "c71b3652-fe7a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T09:20:05", "message_id": "6164b276-fe79-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T09:10:05", "message_id": "fbbd6e5a-fe77-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T09:00:05", "message_id": "960be5f6-fe76-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T08:50:05", "message_id": "305d1690-fe75-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T08:40:04", "message_id": "caafd61c-fe73-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T08:30:04", "message_id": "64fe763a-fe72-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T08:20:04", "message_id": "ff5209c4-fe70-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T08:10:04", "message_id": "99a70116-fe6f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T08:00:04", "message_id": "33f90af4-fe6e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T07:50:04", "message_id": "ce49b39e-fe6c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T07:40:04", "message_id": "68aac948-fe6b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T07:30:04", "message_id": "02faf0ec-fe6a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T07:20:04", "message_id": "9d4f1102-fe68-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T07:10:04", "message_id": "379ea1c0-fe67-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T07:00:04", "message_id": "d1eeab8c-fe65-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T06:50:04", "message_id": "6c3e621a-fe64-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T06:40:04", "message_id": "069b101c-fe63-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T06:30:03", "message_id": "a0edd818-fe61-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T06:20:03", "message_id": "3b3850ee-fe60-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T06:10:03", "message_id": "d583f88a-fe5e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T06:00:03", "message_id": "6fd56222-fe5d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T05:50:03", "message_id": "0a27b0e8-fe5c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T05:40:03", "message_id": "a47ece1c-fe5a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T05:30:03", "message_id": "3ec673d2-fe59-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T05:20:03", "message_id": "d91a59dc-fe57-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T05:10:03", "message_id": "7371d372-fe56-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T05:00:03", "message_id": "0dbd660a-fe55-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T04:50:02", "message_id": "a80fbb2e-fe53-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T04:40:02", "message_id": "42662b10-fe52-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T04:30:02", "message_id": "dcbda2da-fe50-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T04:20:02", "message_id": "770624d6-fe4f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T04:10:02", "message_id": "114d05ac-fe4e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T04:00:02", "message_id": "aba8d72c-fe4c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T03:50:02", "message_id": "45f79c0c-fe4b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T03:40:02", "message_id": "e04caf4c-fe49-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T03:30:02", "message_id": "7a97115c-fe48-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T03:20:02", "message_id": "14e49d1c-fe47-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T03:10:02", "message_id": "af412e54-fe45-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T03:00:01", "message_id": "498c512a-fe44-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T02:50:01", "message_id": "e3db9562-fe42-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T02:40:01", "message_id": "7e2a0510-fe41-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T02:30:01", "message_id": "1888c436-fe40-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T02:20:01", "message_id": "b2dbf1e0-fe3e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T02:10:01", "message_id": "4d26c844-fe3d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T02:00:01", "message_id": "e77ddc68-fe3b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T01:50:01", "message_id": "81d0f19e-fe3a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T01:40:01", "message_id": "1c2ed596-fe39-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T01:30:01", "message_id": "b67e3738-fe37-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T01:20:01", "message_id": "50d9ee0a-fe36-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T01:10:01", "message_id": "eb207288-fe34-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T01:00:01", "message_id": "8579e80c-fe33-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T00:50:00", "message_id": "1fc0eb56-fe32-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T00:40:00", "message_id": "ba1997ae-fe30-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T00:30:00", "message_id": "54650656-fe2f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T00:20:00", "message_id": "eeb45ee8-fe2d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T00:10:00", "message_id": "89081bbc-fe2c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T00:00:00", "message_id": "235b17de-fe2b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T23:50:00", "message_id": "bdadca9a-fe29-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T23:40:00", "message_id": "580258c4-fe28-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T23:30:00", "message_id": "f250fdb0-fe26-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T23:20:00", "message_id": "8cae5de6-fe25-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T23:10:00", "message_id": "273a81d4-fe24-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T23:00:00", "message_id": "c18d4200-fe22-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T22:49:59", "message_id": "5b96382c-fe21-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T22:39:59", "message_id": "f5e2339c-fe1f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T22:29:59", "message_id": "903c4e66-fe1e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T22:19:59", "message_id": "2a90a784-fe1d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T22:09:59", "message_id": "c4dd855c-fe1b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T21:59:59", "message_id": "5f2dcd44-fe1a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T21:49:59", "message_id": "f97f082e-fe18-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T21:39:59", "message_id": "93cb8198-fe17-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T21:29:59", "message_id": "2e156748-fe16-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T21:19:58", "message_id": "c86cd1b6-fe14-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T21:09:58", "message_id": "62bdd2a8-fe13-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T20:59:58", "message_id": "fd1224be-fe11-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T20:49:58", "message_id": "9758a824-fe10-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T20:39:58", "message_id": "31a9f0b0-fe0f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T20:29:58", "message_id": "cbf95a68-fe0d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T20:19:58", "message_id": "6653e166-fe0c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T20:09:58", "message_id": "009dbd84-fe0b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T19:59:58", "message_id": "9af3b156-fe09-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T19:49:58", "message_id": "35466bd8-fe08-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T19:39:58", "message_id": "cfa32cb8-fe06-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T19:29:58", "message_id": "69efcf4e-fe05-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T19:19:57", "message_id": "04410b96-fe04-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T19:09:57", "message_id": "9e971d0e-fe02-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T18:59:57", "message_id": "38e61b3c-fe01-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T18:49:57", "message_id": "d3350204-fdff-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T18:39:57", "message_id": "6d8deaa2-fdfe-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T18:29:57", "message_id": "07e0d012-fdfd-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T18:19:57", "message_id": "a2362dee-fdfb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T18:09:57", "message_id": "3c95d148-fdfa-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T17:59:57", "message_id": "d6db33c6-fdf8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T17:49:57", "message_id": "71312f4a-fdf7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T17:39:57", "message_id": "0b8231c2-fdf6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T17:29:57", "message_id": "a5d81e0a-fdf4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T17:19:56", "message_id": "4027a978-fdf3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T17:09:56", "message_id": "da7bd19a-fdf1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T16:59:56", "message_id": "74ccd8c2-fdf0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T16:49:56", "message_id": "0f1da886-fdef-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T16:39:56", "message_id": "a9791296-fded-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T16:29:56", "message_id": "43f38c04-fdec-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T16:19:56", "message_id": "de24fa94-fdea-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T16:09:56", "message_id": "788187bc-fde9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T15:59:56", "message_id": "12d16e1a-fde8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T15:49:56", "message_id": "ad29467e-fde6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T15:39:56", "message_id": "477d49de-fde5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T15:29:56", "message_id": "e1ce8a40-fde3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T15:19:56", "message_id": "7c4fed2c-fde2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T15:09:56", "message_id": "166969da-fde1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T14:59:55", "message_id": "b0b90d1c-fddf-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T14:49:55", "message_id": "4b16b3d4-fdde-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T14:39:55", "message_id": "e5610c2a-fddc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T14:29:55", "message_id": "7fb58d3e-fddb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T14:19:55", "message_id": "1a066392-fdda-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T14:09:55", "message_id": "b45cada4-fdd8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T13:59:55", "message_id": "4ea8893e-fdd7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T13:49:55", "message_id": "e8fdb51a-fdd5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T13:39:55", "message_id": "8349f7ca-fdd4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T13:29:55", "message_id": "1d97fea0-fdd3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T13:19:55", "message_id": "b7e99bf0-fdd1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T13:09:54", "message_id": "523e6138-fdd0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T12:59:54", "message_id": "ec91ab84-fdce-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T12:49:54", "message_id": "86e2698c-fdcd-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T12:39:54", "message_id": "213139f2-fdcc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T12:29:54", "message_id": "bb81baba-fdca-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T12:19:54", "message_id": "55d58102-fdc9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T12:09:54", "message_id": "f02009b4-fdc7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T11:59:54", "message_id": "8a75e5bc-fdc6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T11:49:54", "message_id": "24cb57d4-fdc5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T11:39:54", "message_id": "bf1fa832-fdc3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T11:29:54", "message_id": "596f4278-fdc2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T11:19:53", "message_id": "f3c57308-fdc0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T11:09:53", "message_id": "8e1688a4-fdbf-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T10:59:53", "message_id": "286a5252-fdbe-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T10:49:54", "message_id": "c2e5d754-fdbc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T10:39:53", "message_id": "5d0c382a-fdbb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T10:29:53", "message_id": "f768aebe-fdb9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T10:19:53", "message_id": "91b680f6-fdb8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T10:09:53", "message_id": "2c17795e-fdb7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T09:59:53", "message_id": "c669df08-fdb5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T09:49:53", "message_id": "60be3ad8-fdb4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T09:39:53", "message_id": "fb0f070e-fdb2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T09:29:53", "message_id": "95640874-fdb1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T09:19:53", "message_id": "2fb27a3e-fdb0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T09:09:52", "message_id": "c9ffcda0-fdae-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T08:59:52", "message_id": "645680d0-fdad-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T08:49:52", "message_id": "feb760a6-fdab-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T08:39:52", "message_id": "98fc3f30-fdaa-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T08:29:52", "message_id": "334c647c-fda9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T08:19:52", "message_id": "cd9bb264-fda7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T08:09:52", "message_id": "680817c2-fda6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T07:59:52", "message_id": "0243603c-fda5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T07:49:52", "message_id": "9c916258-fda3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T07:39:52", "message_id": "36e988dc-fda2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T07:29:52", "message_id": "d1382436-fda0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T07:19:52", "message_id": "6b8c176a-fd9f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T07:09:52", "message_id": "060489e6-fd9e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T06:59:51", "message_id": "a028b85a-fd9c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T06:49:51", "message_id": "3a7f9290-fd9b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T06:39:51", "message_id": "d4c6eec2-fd99-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T06:29:51", "message_id": "6f1ba438-fd98-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T06:19:51", "message_id": "0966cd94-fd97-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T06:09:51", "message_id": "a3bc5546-fd95-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T05:59:51", "message_id": "3e0fd386-fd94-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T05:49:51", "message_id": "d8613de6-fd92-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T05:39:51", "message_id": "72b2ce70-fd91-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T05:29:51", "message_id": "0d0f9ac2-fd90-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T05:19:50", "message_id": "a75db822-fd8e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T05:09:50", "message_id": "41a876f8-fd8d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T04:59:50", "message_id": "dc091538-fd8b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T04:49:50", "message_id": "76666e2a-fd8a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T04:39:50", "message_id": "10c512e8-fd89-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T04:29:50", "message_id": "ab18aeb0-fd87-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T04:19:50", "message_id": "455171ee-fd86-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T04:09:50", "message_id": "dfbd19c4-fd84-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T03:59:50", "message_id": "79d47c20-fd83-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T03:49:50", "message_id": "1444d59a-fd82-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T03:39:50", "message_id": "ae9d8bac-fd80-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T03:29:50", "message_id": "48f958fe-fd7f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T03:19:50", "message_id": "e3586b9e-fd7d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T03:09:50", "message_id": "7da4adae-fd7c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T02:59:49", "message_id": "17db5c1c-fd7b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T02:49:49", "message_id": "b21cc902-fd79-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T02:39:49", "message_id": "4cad9ec6-fd78-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T02:29:49", "message_id": "e6ef08be-fd76-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T02:19:49", "message_id": "814a6400-fd75-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T02:09:49", "message_id": "1b95b228-fd74-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T01:59:49", "message_id": "b5d4853c-fd72-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T01:49:49", "message_id": "5028da2c-fd71-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T01:39:49", "message_id": "ea866d48-fd6f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T01:29:49", "message_id": "85037cc8-fd6e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T01:19:49", "message_id": "1f6493f8-fd6d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T01:09:49", "message_id": "b9a15a3e-fd6b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T00:59:48", "message_id": "53da4f40-fd6a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T00:49:48", "message_id": "ee1b5470-fd68-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T00:39:48", "message_id": "8882743c-fd67-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T00:29:48", "message_id": "22db447a-fd66-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T00:19:48", "message_id": "bd36a732-fd64-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T00:09:48", "message_id": "57a76c9a-fd63-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-04T23:59:48", "message_id": "f1fe13d6-fd61-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-04T23:49:48", "message_id": "8c389234-fd60-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-04T23:39:05", "message_id": "0cfce80e-fd5f-11e2-b8cf-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-04T23:29:05", "message_id": "a767382e-fd5d-11e2-b8cf-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}], "http://localhost:8777/v2/meters/storage.objects.containers?q.field=resource_id&q.value=0d0854c42a7b49b0a6348b2746d60e7f": [{"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-12T04:01:18", "message_id": "d76c4112-0303-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-12T03:51:18", "message_id": "71bae77a-0302-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-12T03:41:18", "message_id": "0c09140c-0301-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-12T03:31:18", "message_id": "a66c3c10-02ff-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-12T03:21:18", "message_id": "40b7cade-02fe-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-12T03:11:18", "message_id": "db0de20a-02fc-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-12T03:01:17", "message_id": "75536742-02fb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-12T02:51:17", "message_id": "0fafc9d6-02fa-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-12T02:41:17", "message_id": "a9ec609c-02f8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-12T02:31:17", "message_id": "444821be-02f7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-12T02:21:17", "message_id": "de93813e-02f5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-12T02:11:17", "message_id": "78e65894-02f4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-12T02:01:17", "message_id": "133f5028-02f3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-12T01:51:17", "message_id": "ad94de42-02f1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-12T01:41:17", "message_id": "47e138c6-02f0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-12T01:31:17", "message_id": "e233dfd4-02ee-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-12T01:21:17", "message_id": "7c7f0e44-02ed-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-12T01:11:16", "message_id": "16d61034-02ec-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-12T01:01:16", "message_id": "b1133f66-02ea-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-12T00:51:16", "message_id": "4b7af708-02e9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-12T00:41:16", "message_id": "e5bf45f0-02e7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-12T00:31:16", "message_id": "800f1c68-02e6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-12T00:21:16", "message_id": "1a8dc94e-02e5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-12T00:11:16", "message_id": "b4af1840-02e3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-12T00:01:16", "message_id": "4f052116-02e2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T23:51:16", "message_id": "e9562afa-02e0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T23:41:16", "message_id": "83afb960-02df-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T23:31:16", "message_id": "1e0597d4-02de-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T23:21:15", "message_id": "b84c140a-02dc-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T23:11:15", "message_id": "52ad19b0-02db-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T23:01:16", "message_id": "ed35ea04-02d9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T22:51:15", "message_id": "874dfc46-02d8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T22:41:15", "message_id": "2199917c-02d7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T22:31:15", "message_id": "bbecc430-02d5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T22:21:15", "message_id": "5637f084-02d4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T22:11:15", "message_id": "f087d778-02d2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T22:01:15", "message_id": "8ade778e-02d1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T21:51:15", "message_id": "25374e48-02d0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T21:41:15", "message_id": "bf8856ba-02ce-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T21:31:14", "message_id": "59d449d8-02cd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T21:21:14", "message_id": "f42ab33e-02cb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T21:11:14", "message_id": "8e7bcb3c-02ca-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T21:01:14", "message_id": "28cad7ca-02c9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T20:51:14", "message_id": "c320aa54-02c7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T20:41:14", "message_id": "5d6b638a-02c6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T20:31:14", "message_id": "f7c4ac9a-02c4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T20:21:14", "message_id": "9215bc96-02c3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T20:11:14", "message_id": "2c72be1c-02c2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T20:01:14", "message_id": "c6bcdd74-02c0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T19:51:14", "message_id": "6111ffb4-02bf-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T19:41:14", "message_id": "fb5ff910-02bd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T19:31:14", "message_id": "95b52c58-02bc-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T19:21:13", "message_id": "30043152-02bb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T19:11:13", "message_id": "ca5106e2-02b9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T19:01:13", "message_id": "649c290e-02b8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T18:51:13", "message_id": "feea0bea-02b6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T18:41:13", "message_id": "9942b3ec-02b5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T18:31:13", "message_id": "338edf5e-02b4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T18:21:13", "message_id": "cddfe76c-02b2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T18:11:13", "message_id": "6830bc80-02b1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T18:01:13", "message_id": "0280b788-02b0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T17:51:13", "message_id": "9cd5a9d0-02ae-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T17:41:12", "message_id": "3723936e-02ad-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T17:31:12", "message_id": "d17b325c-02ab-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T17:21:12", "message_id": "6bc90ad4-02aa-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T17:11:12", "message_id": "06170890-02a9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T17:01:12", "message_id": "a0771a8a-02a7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T16:51:12", "message_id": "3ac73252-02a6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T16:41:12", "message_id": "d5266b6c-02a4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T16:31:12", "message_id": "6f6f5d3e-02a3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T16:21:12", "message_id": "09b77248-02a2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T16:11:12", "message_id": "a40dad8c-02a0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T16:01:12", "message_id": "3e691d6e-029f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T15:51:12", "message_id": "d8b8095e-029d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T15:41:12", "message_id": "73167974-029c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T15:31:11", "message_id": "0d70de58-029b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T15:21:11", "message_id": "a7d01696-0299-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T15:11:11", "message_id": "421e071e-0298-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T15:01:11", "message_id": "dc6c3b1c-0296-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T14:51:11", "message_id": "76b6f632-0295-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T14:41:11", "message_id": "1108d748-0294-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T14:31:11", "message_id": "ab58875a-0292-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T14:21:11", "message_id": "45ab218e-0291-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T14:11:11", "message_id": "dff928d2-028f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T14:01:11", "message_id": "7a53e3ec-028e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T13:51:11", "message_id": "14a86c44-028d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T13:41:11", "message_id": "aefaff0c-028b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T13:31:10", "message_id": "494ca33c-028a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T13:21:10", "message_id": "e397b078-0288-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T13:11:10", "message_id": "7df0b90a-0287-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T13:01:10", "message_id": "18490130-0286-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T12:51:10", "message_id": "b293365e-0284-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T12:41:10", "message_id": "4ce90190-0283-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T12:31:10", "message_id": "e735f5a2-0281-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T12:21:10", "message_id": "818115da-0280-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T12:11:10", "message_id": "1bd48880-027f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T12:01:10", "message_id": "b621f6ae-027d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T11:51:10", "message_id": "507a9456-027c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T11:41:09", "message_id": "eac05b88-027a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T11:31:09", "message_id": "8515280a-0279-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T11:21:09", "message_id": "1f659950-0278-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T11:11:09", "message_id": "b9b7bc9c-0276-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T11:01:09", "message_id": "54081b7c-0275-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T10:51:09", "message_id": "ee566654-0273-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T10:41:09", "message_id": "88acb444-0272-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T10:31:09", "message_id": "230395e6-0271-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T10:21:09", "message_id": "bd4a7fea-026f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T10:11:09", "message_id": "57ad5c26-026e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T10:01:09", "message_id": "f1f945f8-026c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T09:51:08", "message_id": "8c49f384-026b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T09:41:08", "message_id": "269804aa-026a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T09:31:08", "message_id": "c0ef76ca-0268-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T09:21:08", "message_id": "5b3fbafc-0267-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T09:11:08", "message_id": "f5979f18-0265-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T09:01:08", "message_id": "8fe7f0a6-0264-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T08:51:08", "message_id": "2a44ad3a-0263-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T08:41:08", "message_id": "c497e84a-0261-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T08:31:08", "message_id": "5eedf800-0260-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T08:21:08", "message_id": "f9324d14-025e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T08:11:08", "message_id": "93860434-025d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T08:01:08", "message_id": "2ddd30b8-025c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T07:51:07", "message_id": "c8267546-025a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T07:41:07", "message_id": "6282e48c-0259-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T07:31:07", "message_id": "fccf4b86-0257-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T07:21:07", "message_id": "97250434-0256-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T07:11:07", "message_id": "31661030-0255-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T07:01:07", "message_id": "cbca89be-0253-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T06:51:07", "message_id": "66177db2-0252-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T06:41:07", "message_id": "0065d0aa-0251-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T06:31:07", "message_id": "9ab6217a-024f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T06:21:07", "message_id": "35161e98-024e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T06:11:07", "message_id": "cf5f74b0-024c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T06:01:07", "message_id": "69c8a1cc-024b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T05:51:07", "message_id": "040d9bae-024a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T05:41:06", "message_id": "9e5c5850-0248-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T05:31:06", "message_id": "38a5cc4a-0247-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T05:21:06", "message_id": "d2f7fe8c-0245-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T05:11:06", "message_id": "6d406aa8-0244-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T05:01:06", "message_id": "07986aa8-0243-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T04:51:06", "message_id": "a1f0197c-0241-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T04:41:06", "message_id": "3c3d5b86-0240-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T04:31:06", "message_id": "d691bed6-023e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T04:21:06", "message_id": "70fb3f8a-023d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T04:11:06", "message_id": "0b31d462-023c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T04:01:05", "message_id": "a5892e22-023a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T03:51:05", "message_id": "3fdc32be-0239-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T03:41:05", "message_id": "da456a66-0237-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T03:31:05", "message_id": "7478772e-0236-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T03:21:05", "message_id": "0ecae066-0235-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T03:11:05", "message_id": "a919a6cc-0233-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T03:01:05", "message_id": "4368974e-0232-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T02:51:05", "message_id": "ddb6fd38-0230-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T02:41:05", "message_id": "77f7b6e6-022f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T02:31:05", "message_id": "1256954c-022e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T02:21:04", "message_id": "aca6360e-022c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T02:11:04", "message_id": "46f6e278-022b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T02:01:04", "message_id": "e15398b8-0229-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T01:51:04", "message_id": "7b9b7802-0228-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T01:41:04", "message_id": "16001724-0227-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T01:31:04", "message_id": "b04e2926-0225-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T01:21:04", "message_id": "4a869c6e-0224-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T01:11:04", "message_id": "e4d874ce-0222-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T01:01:04", "message_id": "7f34b052-0221-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T00:51:04", "message_id": "197d8186-0220-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T00:41:04", "message_id": "b3cefe2e-021e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T00:31:03", "message_id": "4e1e6188-021d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T00:21:03", "message_id": "e86f2814-021b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T00:11:03", "message_id": "82bdaf64-021a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-11T00:01:03", "message_id": "1d1481d4-0219-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T23:51:03", "message_id": "b766776c-0217-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T23:41:03", "message_id": "51b57220-0216-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T23:31:03", "message_id": "ec0c96c0-0214-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T23:21:03", "message_id": "86646f4c-0213-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T23:11:03", "message_id": "20aa42b8-0212-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T23:01:03", "message_id": "bb56c464-0210-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T22:51:03", "message_id": "5562cc80-020f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T22:41:08", "message_id": "f2c278b0-020d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T22:31:03", "message_id": "8a0fee16-020c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T22:21:02", "message_id": "2457d1f2-020b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T22:11:02", "message_id": "bebd9d0a-0209-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T22:01:02", "message_id": "58fdd3e6-0208-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T21:51:02", "message_id": "f366fbf8-0206-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T21:41:02", "message_id": "8dae92c2-0205-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T21:31:02", "message_id": "27f939f6-0204-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T21:21:02", "message_id": "c26cc360-0202-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T21:11:02", "message_id": "5ca5f6a6-0201-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T21:01:02", "message_id": "f6e48ac2-01ff-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T20:51:02", "message_id": "9197e76e-01fe-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T20:41:02", "message_id": "2b9ad814-01fd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T20:31:02", "message_id": "c61cbc6a-01fb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T20:21:01", "message_id": "60383344-01fa-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T20:11:01", "message_id": "fa7fee1c-01f8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T20:01:01", "message_id": "94d31d4c-01f7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T19:51:01", "message_id": "2f27c124-01f6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T19:41:01", "message_id": "c97aa0cc-01f4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T19:31:01", "message_id": "63d2a81a-01f3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T19:21:01", "message_id": "fe0a2b12-01f1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T19:11:01", "message_id": "986c218a-01f0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T19:01:01", "message_id": "32bceb2c-01ef-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T18:51:00", "message_id": "ccfc1818-01ed-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T18:41:00", "message_id": "67628b64-01ec-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T18:31:00", "message_id": "01ae6a32-01eb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T18:21:00", "message_id": "9bfcb47e-01e9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T18:11:00", "message_id": "3647acb6-01e8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T18:01:00", "message_id": "d098129e-01e6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T17:51:00", "message_id": "6af2c3fe-01e5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T17:41:00", "message_id": "05474620-01e4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T17:31:00", "message_id": "9f92a2d0-01e2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T17:21:00", "message_id": "39e5bfd6-01e1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T17:11:00", "message_id": "d4304cde-01df-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T17:00:59", "message_id": "6e823dd0-01de-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T16:50:59", "message_id": "08d74d50-01dd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T16:40:59", "message_id": "a32474c0-01db-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T16:30:59", "message_id": "3d7a1c5c-01da-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T16:20:59", "message_id": "d7c335e8-01d8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T16:10:59", "message_id": "721e9878-01d7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T16:00:59", "message_id": "0c759662-01d6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T15:50:59", "message_id": "a6c550ba-01d4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T15:40:59", "message_id": "41264b84-01d3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T15:30:59", "message_id": "db73d5e6-01d1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T15:20:59", "message_id": "75cca0ca-01d0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T15:10:59", "message_id": "101b6cbc-01cf-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T15:00:58", "message_id": "aa65cd78-01cd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T14:50:58", "message_id": "44be2192-01cc-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T14:40:58", "message_id": "df053d6e-01ca-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T14:30:58", "message_id": "794d39c8-01c9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T14:20:58", "message_id": "139eb8a0-01c8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T14:10:58", "message_id": "adf89a3a-01c6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T14:00:58", "message_id": "484a49be-01c5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T13:50:58", "message_id": "e29e57be-01c3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T13:40:58", "message_id": "7ce7ccb2-01c2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T13:30:58", "message_id": "174634d0-01c1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T13:20:58", "message_id": "b18c982e-01bf-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T13:10:57", "message_id": "4bde5efa-01be-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T13:00:57", "message_id": "e6311878-01bc-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T12:50:57", "message_id": "807fe94c-01bb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T12:40:57", "message_id": "1ad49c6a-01ba-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T12:30:57", "message_id": "b52c912a-01b8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T12:20:57", "message_id": "4f82b882-01b7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T12:10:57", "message_id": "e9d9c4d6-01b5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T12:00:57", "message_id": "84211b0e-01b4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T11:50:57", "message_id": "1e7862ea-01b3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T11:40:57", "message_id": "b8d29bfa-01b1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T11:30:57", "message_id": "531f03b2-01b0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T11:20:57", "message_id": "ed72d378-01ae-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T11:10:57", "message_id": "87ca4e4e-01ad-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T11:00:56", "message_id": "2205e29a-01ac-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T10:50:57", "message_id": "bc8a53ca-01aa-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T10:40:56", "message_id": "56b671ce-01a9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T10:30:56", "message_id": "f1149144-01a7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T10:20:56", "message_id": "8b590b4c-01a6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T10:10:56", "message_id": "25c8cf0c-01a5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T10:00:56", "message_id": "c0055f7e-01a3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T09:50:56", "message_id": "5a4a1a22-01a2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T09:40:56", "message_id": "f4a6ef5c-01a0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T09:30:56", "message_id": "8f12aa88-019f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T09:20:56", "message_id": "294786fc-019e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T09:10:55", "message_id": "c39fe6ec-019c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T09:00:56", "message_id": "5e09e5ea-019b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T08:50:55", "message_id": "f8417b34-0199-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T08:40:55", "message_id": "92a07dd0-0198-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T08:30:55", "message_id": "2cd4838a-0197-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T08:20:55", "message_id": "c733f8ae-0195-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T08:10:55", "message_id": "6174c33c-0194-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T08:00:55", "message_id": "fbc98da2-0192-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T07:50:55", "message_id": "962c3900-0191-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T07:40:55", "message_id": "3081268e-0190-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T07:30:55", "message_id": "cacbf7a2-018e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T07:20:54", "message_id": "6521d7f6-018d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T07:10:54", "message_id": "ff74815c-018b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T07:00:54", "message_id": "99c22496-018a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T06:50:54", "message_id": "34180b84-0189-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T06:40:54", "message_id": "ce6acaf2-0187-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T06:30:54", "message_id": "68bdffc2-0186-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T06:20:54", "message_id": "03135380-0185-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T06:10:54", "message_id": "9d5937e0-0183-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T06:00:54", "message_id": "37a15d3e-0182-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T05:50:54", "message_id": "d203fa82-0180-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T05:40:54", "message_id": "6c5064e2-017f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T05:30:53", "message_id": "0696c228-017e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T05:20:53", "message_id": "a0ee1ada-017c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T05:10:53", "message_id": "3b454862-017b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T05:00:53", "message_id": "d59c9854-0179-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T04:50:53", "message_id": "6fe26850-0178-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T04:40:53", "message_id": "0a2bfc52-0177-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T04:30:53", "message_id": "a48179c8-0175-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T04:20:53", "message_id": "3ed14d02-0174-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T04:10:53", "message_id": "d923ef88-0172-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T04:00:53", "message_id": "737f15a0-0171-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T03:50:53", "message_id": "0dd14b16-0170-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T03:40:53", "message_id": "a82489f0-016e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T03:30:52", "message_id": "4279a2d0-016d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T03:20:52", "message_id": "dcc56510-016b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T03:10:52", "message_id": "77179036-016a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T03:00:52", "message_id": "1169b828-0169-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T02:50:52", "message_id": "abbe4508-0167-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T02:40:52", "message_id": "46078162-0166-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T02:30:52", "message_id": "e058a2fc-0164-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T02:20:52", "message_id": "7abccb72-0163-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T02:10:52", "message_id": "150eaea4-0162-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T02:00:52", "message_id": "af58dedc-0160-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T01:50:52", "message_id": "49d1a2de-015f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T01:40:52", "message_id": "e415a176-015d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T01:30:52", "message_id": "7e780d3c-015c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T01:20:52", "message_id": "18cb5e7c-015b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T01:10:51", "message_id": "b30cd0bc-0159-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T01:00:51", "message_id": "4d6873a2-0158-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T00:50:51", "message_id": "e79676e2-0156-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T00:40:51", "message_id": "81eccd38-0155-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T00:30:51", "message_id": "1c3db12e-0154-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T00:20:51", "message_id": "b68036dc-0152-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T00:10:51", "message_id": "50dd2bc4-0151-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-10T00:00:51", "message_id": "eb2b8a2e-014f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T23:50:50", "message_id": "857ea2c0-014e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T23:40:50", "message_id": "1fc8f378-014d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T23:30:50", "message_id": "ba0fc13e-014b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T23:20:50", "message_id": "5472b3dc-014a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T23:10:50", "message_id": "eebbf13a-0148-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T23:00:50", "message_id": "894d1e88-0147-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T22:50:50", "message_id": "23616f6c-0146-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T22:40:50", "message_id": "bdab0bb6-0144-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T22:30:50", "message_id": "57ffb7f4-0143-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T22:20:50", "message_id": "f263f82a-0141-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T22:10:50", "message_id": "8c9f72c2-0140-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T22:00:50", "message_id": "26fe8152-013f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T21:50:49", "message_id": "c1520cb2-013d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T21:40:49", "message_id": "5baaee70-013c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T21:30:49", "message_id": "f601e50c-013a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T21:20:49", "message_id": "904ba1e0-0139-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T21:10:49", "message_id": "2aa72568-0138-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T21:00:49", "message_id": "c4fe728a-0136-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T20:50:49", "message_id": "5f4c7870-0135-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T20:40:49", "message_id": "f9a22174-0133-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T20:30:49", "message_id": "93e75c92-0132-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T20:20:49", "message_id": "2e5b1c3e-0131-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T20:10:49", "message_id": "c8959358-012f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T20:00:49", "message_id": "62e6c60e-012e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T19:50:49", "message_id": "fd43b3ee-012c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T19:40:48", "message_id": "9785612a-012b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T19:30:48", "message_id": "31dd49e2-012a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T19:20:48", "message_id": "cc3f65d0-0128-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T19:10:48", "message_id": "668452ba-0127-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T19:00:48", "message_id": "00d0b784-0126-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T18:50:48", "message_id": "9b1b4180-0124-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T18:40:48", "message_id": "356ff8ae-0123-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T18:30:48", "message_id": "cfb97cf2-0121-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T18:20:48", "message_id": "6a0b0868-0120-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T18:10:47", "message_id": "04586962-011f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T18:00:47", "message_id": "9ea06238-011d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T17:50:47", "message_id": "38fa9b3e-011c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T17:40:47", "message_id": "d3474d1a-011a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T17:30:47", "message_id": "6d95ee28-0119-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T17:20:47", "message_id": "07efa240-0118-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T17:10:47", "message_id": "a23ced82-0116-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T17:00:47", "message_id": "3c90d80a-0115-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T16:50:47", "message_id": "d6dbf978-0113-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T16:40:47", "message_id": "712b90d0-0112-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T16:30:47", "message_id": "0b8c9644-0111-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T16:20:46", "message_id": "a5d301cc-010f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T16:10:46", "message_id": "402b6266-010e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T16:00:46", "message_id": "da7a6882-010c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T15:50:49", "message_id": "76515dda-010b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T15:40:47", "message_id": "0f7ae82a-010a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T15:30:46", "message_id": "a99565f4-0108-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T15:20:46", "message_id": "43cacef4-0107-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T15:10:46", "message_id": "de329208-0105-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T15:00:46", "message_id": "78711f26-0104-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T14:50:46", "message_id": "12ccd74c-0103-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T14:40:46", "message_id": "ad18756a-0101-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T14:30:46", "message_id": "4761828a-0100-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T14:20:46", "message_id": "e1bf6524-00fe-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T14:10:46", "message_id": "7c46bb62-00fd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T14:00:45", "message_id": "164e9448-00fc-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T13:50:45", "message_id": "b0af13d4-00fa-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T13:40:45", "message_id": "4af8d242-00f9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T13:30:45", "message_id": "e5497a56-00f7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T13:20:46", "message_id": "7ffe92e0-00f6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T13:10:45", "message_id": "19de83fe-00f5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T13:00:45", "message_id": "b43be628-00f3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T12:50:45", "message_id": "4e82c8ac-00f2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T12:40:45", "message_id": "e8dc6af4-00f0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T12:30:44", "message_id": "83330fce-00ef-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T12:20:44", "message_id": "1d7cb460-00ee-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T12:10:44", "message_id": "b7cde9a0-00ec-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T12:00:44", "message_id": "52210bec-00eb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T11:50:44", "message_id": "ec7a2d2e-00e9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T11:40:44", "message_id": "86c2f4f8-00e8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T11:30:44", "message_id": "211c470e-00e7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T11:20:44", "message_id": "bb6b78c2-00e5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T11:10:44", "message_id": "55c3066c-00e4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T11:00:44", "message_id": "f00b290e-00e2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T10:50:44", "message_id": "8a5cd360-00e1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T10:40:43", "message_id": "24ac94de-00e0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T10:30:43", "message_id": "bf032306-00de-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T10:20:43", "message_id": "594fd58c-00dd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T10:10:43", "message_id": "f3a38f86-00db-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T10:00:43", "message_id": "8e057f3c-00da-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T09:50:43", "message_id": "284373c6-00d9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T09:40:43", "message_id": "c29e51b8-00d7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T09:30:43", "message_id": "5cee7466-00d6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T09:20:43", "message_id": "f7416a20-00d4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T09:10:43", "message_id": "919abdb2-00d3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T09:00:43", "message_id": "2be6fdf6-00d2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T08:50:42", "message_id": "c630e482-00d0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T08:40:42", "message_id": "608c284a-00cf-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T08:30:42", "message_id": "fadf99a6-00cd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T08:20:42", "message_id": "953071a8-00cc-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T08:10:42", "message_id": "2f7baa04-00cb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T08:00:42", "message_id": "c9cb2492-00c9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T07:50:42", "message_id": "641c702a-00c8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T07:40:42", "message_id": "fe98cba0-00c6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T07:30:42", "message_id": "98c9ee4a-00c5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T07:20:42", "message_id": "330c0a9e-00c4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T07:10:42", "message_id": "cd5f7a88-00c2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T07:00:41", "message_id": "67b4dc9c-00c1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T06:50:41", "message_id": "01ffee7e-00c0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T06:40:41", "message_id": "9c55160e-00be-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T06:30:41", "message_id": "36a7fe9e-00bd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T06:20:41", "message_id": "d0f3a784-00bb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T06:10:41", "message_id": "6b4a0ab4-00ba-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T06:00:41", "message_id": "05a500fc-00b9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T05:50:41", "message_id": "9ff0ffd2-00b7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T05:40:41", "message_id": "3a499cbc-00b6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T05:30:41", "message_id": "d4954de0-00b4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T05:20:41", "message_id": "6ee63d3e-00b3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T05:10:41", "message_id": "0939ff6c-00b2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T05:00:40", "message_id": "a38e8d8c-00b0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T04:50:40", "message_id": "3df487d4-00af-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T04:40:40", "message_id": "d84b8d8e-00ad-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T04:30:40", "message_id": "729942ca-00ac-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T04:20:40", "message_id": "0cfaa892-00ab-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T04:10:40", "message_id": "a75417d6-00a9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T04:00:40", "message_id": "41c965de-00a8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T03:50:41", "message_id": "dc45445e-00a6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T03:40:40", "message_id": "7658502e-00a5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T03:30:40", "message_id": "10ddd620-00a4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T03:20:40", "message_id": "ab06d924-00a2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T03:10:40", "message_id": "45624b2c-00a1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T03:00:40", "message_id": "dfb61d7c-009f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T02:50:40", "message_id": "79fa405e-009e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T02:40:40", "message_id": "148365f8-009d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T02:30:40", "message_id": "aea0ed10-009b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T02:20:40", "message_id": "48f662d4-009a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T02:10:39", "message_id": "e34a7ac0-0098-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T02:00:39", "message_id": "7d9d403c-0097-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T01:50:39", "message_id": "17da2f72-0096-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T01:40:39", "message_id": "b22aa50e-0094-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T01:30:39", "message_id": "4c7cea10-0093-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T01:20:39", "message_id": "e6d994f2-0091-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T01:10:39", "message_id": "811d6f0e-0090-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T01:00:39", "message_id": "1b7bf2d4-008f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T00:50:39", "message_id": "b5c2c98c-008d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T00:40:38", "message_id": "500d807e-008c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T00:30:38", "message_id": "ea6e375a-008a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T00:20:38", "message_id": "84c247b2-0089-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T00:10:38", "message_id": "1f0f7ff8-0088-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-09T00:00:38", "message_id": "b9603ed2-0086-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T23:50:38", "message_id": "53aad1ca-0085-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T23:40:38", "message_id": "ee0b929c-0083-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T23:30:38", "message_id": "8851cbfc-0082-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T23:20:38", "message_id": "229b74bc-0081-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T23:10:38", "message_id": "bcf86b0c-007f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T23:00:38", "message_id": "57805da8-007e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T22:50:38", "message_id": "f192ecdc-007c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T22:40:37", "message_id": "8bec2d40-007b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T22:30:37", "message_id": "262b1b16-007a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T22:20:37", "message_id": "c087dae8-0078-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T22:10:37", "message_id": "5ad85bba-0077-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T22:00:37", "message_id": "f5285654-0075-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T21:50:37", "message_id": "8f861f8a-0074-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T21:40:37", "message_id": "29ce23c8-0073-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T21:30:37", "message_id": "c424249c-0071-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T21:20:37", "message_id": "5e849c3a-0070-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T21:10:37", "message_id": "f8c9e23e-006e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T21:00:37", "message_id": "93126e80-006d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T20:50:36", "message_id": "2d5f8fc4-006c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T20:40:36", "message_id": "c7b1dcf0-006a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T20:30:36", "message_id": "620acdae-0069-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T20:20:36", "message_id": "fc4f747a-0067-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T20:10:36", "message_id": "96acd5e6-0066-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T20:00:36", "message_id": "30f85b54-0065-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T19:50:36", "message_id": "cb5024e0-0063-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T19:40:36", "message_id": "659b0440-0062-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T19:30:36", "message_id": "ffee1278-0060-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T19:20:36", "message_id": "9a39f29a-005f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T19:10:35", "message_id": "348ea8c4-005e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T19:00:35", "message_id": "cee27d08-005c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T18:50:35", "message_id": "6932c7de-005b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T18:40:35", "message_id": "037e6ebc-005a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T18:30:35", "message_id": "9ddebce8-0058-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T18:20:35", "message_id": "381e5c2a-0057-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T18:10:35", "message_id": "d27c91f8-0055-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T18:00:35", "message_id": "6cce3308-0054-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T17:50:35", "message_id": "07205f32-0053-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T17:40:35", "message_id": "a17a3596-0051-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T17:30:35", "message_id": "3bce47ec-0050-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T17:20:35", "message_id": "d61cfcfa-004e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T17:10:34", "message_id": "706cd674-004d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T17:00:34", "message_id": "0ababee6-004c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T16:50:34", "message_id": "a50ed2ea-004a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T16:40:34", "message_id": "3f6845bc-0049-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T16:30:34", "message_id": "d9bb8946-0047-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T16:20:34", "message_id": "740fffb0-0046-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T16:10:34", "message_id": "0e5c156a-0045-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T16:00:34", "message_id": "a8b7a162-0043-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T15:50:34", "message_id": "4305ce6c-0042-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T15:40:34", "message_id": "dd52a94c-0040-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T15:30:34", "message_id": "77a822ee-003f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T15:20:34", "message_id": "11fdd1a6-003e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T15:10:34", "message_id": "ac4db20a-003c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T15:00:33", "message_id": "4697e058-003b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T14:50:33", "message_id": "e0f09f8e-0039-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T14:40:33", "message_id": "7b3a3cd2-0038-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T14:30:33", "message_id": "1594ab2a-0037-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T14:20:33", "message_id": "afe06112-0035-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T14:10:33", "message_id": "4a4274e0-0034-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T14:00:33", "message_id": "e4c38b50-0032-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T13:50:33", "message_id": "7ed59cf8-0031-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T13:40:33", "message_id": "1933d8b6-0030-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T13:30:33", "message_id": "b3816ad4-002e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T13:20:33", "message_id": "4dddac02-002d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T13:10:32", "message_id": "e829a68c-002b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T13:00:32", "message_id": "82777df6-002a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T12:50:32", "message_id": "1ccbae4c-0029-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T12:40:32", "message_id": "b711bd2c-0027-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T12:30:32", "message_id": "516b5808-0026-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T12:20:32", "message_id": "ebb4f33a-0024-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T12:10:32", "message_id": "85ff48de-0023-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T12:00:32", "message_id": "205bc544-0022-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T11:50:32", "message_id": "baa7e74c-0020-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T11:40:32", "message_id": "550f93fe-001f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T11:30:32", "message_id": "ef64b83c-001d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T11:20:31", "message_id": "89a7c76a-001c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T11:10:32", "message_id": "2418acf8-001b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T11:00:31", "message_id": "be56b42e-0019-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T10:50:31", "message_id": "58a9033a-0018-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T10:40:31", "message_id": "f304e3c4-0016-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T10:30:31", "message_id": "8d72a31c-0015-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T10:20:31", "message_id": "27bd5644-0014-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T10:10:31", "message_id": "c22319c8-0012-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T10:00:31", "message_id": "5c46d334-0011-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T09:50:31", "message_id": "f696b0fa-000f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T09:40:31", "message_id": "90dfba96-000e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T09:30:31", "message_id": "2b431e90-000d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T09:20:30", "message_id": "c58660ae-000b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T09:10:30", "message_id": "5fd54212-000a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T09:00:30", "message_id": "fa301c62-0008-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T08:50:30", "message_id": "947e1366-0007-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T08:40:30", "message_id": "2ed6bf50-0006-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T08:30:30", "message_id": "c92c9090-0004-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T08:20:30", "message_id": "637981a0-0003-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T08:10:30", "message_id": "fdd8c03c-0001-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T08:00:30", "message_id": "981e355c-0000-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T07:50:30", "message_id": "326dbd50-ffff-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T07:40:30", "message_id": "ccbdf7dc-fffd-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T07:30:30", "message_id": "670d285a-fffc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T07:20:29", "message_id": "0167c20e-fffb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T07:10:29", "message_id": "9bae9cea-fff9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T07:00:29", "message_id": "35f9cb5a-fff8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T06:50:29", "message_id": "d05d0268-fff6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T06:40:29", "message_id": "6aa426c8-fff5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T06:30:29", "message_id": "04f1cf34-fff4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T06:20:29", "message_id": "9f45c722-fff2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T06:10:29", "message_id": "3995d422-fff1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T06:00:29", "message_id": "d3ee58a2-ffef-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T05:50:29", "message_id": "6e47d0b0-ffee-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T05:40:29", "message_id": "08a021a0-ffed-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T05:30:29", "message_id": "a2e89ea6-ffeb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T05:20:28", "message_id": "3d30319c-ffea-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T05:10:28", "message_id": "d785b976-ffe8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T05:00:28", "message_id": "71da697e-ffe7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T04:50:28", "message_id": "0c1e018c-ffe6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T04:40:28", "message_id": "a680529a-ffe4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T04:30:28", "message_id": "40c40be6-ffe3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T04:20:28", "message_id": "db1d8dc2-ffe1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T04:10:28", "message_id": "756f4160-ffe0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T04:00:28", "message_id": "0fb75476-ffdf-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T03:50:28", "message_id": "aa0dde3e-ffdd-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T03:40:27", "message_id": "445b133c-ffdc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T03:30:27", "message_id": "deac8fa8-ffda-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T03:20:27", "message_id": "78fc905a-ffd9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T03:10:27", "message_id": "1351d054-ffd8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T03:00:27", "message_id": "ada36638-ffd6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T02:50:27", "message_id": "47ee8c42-ffd5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T02:40:27", "message_id": "e23d19b4-ffd3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T02:30:27", "message_id": "7c9771a0-ffd2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T02:20:27", "message_id": "17021760-ffd1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T02:10:27", "message_id": "b12c461e-ffcf-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T02:00:27", "message_id": "4b870584-ffce-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T01:50:26", "message_id": "e5d16de8-ffcc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T01:40:26", "message_id": "8022e068-ffcb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T01:30:26", "message_id": "1a752740-ffca-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T01:20:26", "message_id": "b4cc2cfa-ffc8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T01:10:26", "message_id": "4f22232e-ffc7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T01:00:26", "message_id": "e96f8680-ffc5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T00:50:26", "message_id": "83c5872c-ffc4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T00:40:26", "message_id": "1e18fb9e-ffc3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T00:30:26", "message_id": "b867b782-ffc1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T00:20:26", "message_id": "531355d6-ffc0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T00:10:26", "message_id": "ed076814-ffbe-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-08T00:00:26", "message_id": "87834428-ffbd-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T23:50:25", "message_id": "21b3b016-ffbc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T23:40:25", "message_id": "bc0944b6-ffba-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T23:30:25", "message_id": "5662b5bc-ffb9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T23:20:25", "message_id": "f0cf1430-ffb7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T23:10:25", "message_id": "8b1fc068-ffb6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T23:00:25", "message_id": "2597ea32-ffb5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T22:50:25", "message_id": "bf925048-ffb3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T22:40:25", "message_id": "59f033fa-ffb2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T22:30:25", "message_id": "f4405cca-ffb0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T22:20:24", "message_id": "8e8001e8-ffaf-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T22:10:25", "message_id": "28e51fd6-ffae-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T22:00:24", "message_id": "c32b3a1e-ffac-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T21:50:24", "message_id": "5d6ddd7c-ffab-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T21:40:24", "message_id": "f7c80e3a-ffa9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T21:30:24", "message_id": "9220ca1e-ffa8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T21:20:24", "message_id": "2c6884ba-ffa7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T21:10:24", "message_id": "c6ac3c26-ffa5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T21:00:24", "message_id": "6106c14e-ffa4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T20:50:24", "message_id": "fb580f20-ffa2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T20:40:23", "message_id": "95a3ac8a-ffa1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T20:30:23", "message_id": "2ff97fc8-ffa0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T20:20:23", "message_id": "ca4b7bb4-ff9e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T20:10:23", "message_id": "6490b01a-ff9d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T20:00:23", "message_id": "fee99a48-ff9b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T19:50:23", "message_id": "993324a4-ff9a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T19:40:23", "message_id": "338d19ee-ff99-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T19:30:23", "message_id": "cdde2f76-ff97-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T19:20:23", "message_id": "68342532-ff96-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T19:10:23", "message_id": "0282bb6e-ff95-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T19:00:23", "message_id": "9ccd0834-ff93-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T18:50:23", "message_id": "37257666-ff92-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T18:40:22", "message_id": "d1788462-ff90-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T18:30:22", "message_id": "6bb7e2cc-ff8f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T18:20:22", "message_id": "06081e84-ff8e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T18:10:22", "message_id": "a05d5082-ff8c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T18:00:22", "message_id": "3ab1912c-ff8b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T17:50:22", "message_id": "d5015d54-ff89-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T17:40:22", "message_id": "6f599b7a-ff88-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T17:30:22", "message_id": "09a89e62-ff87-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T17:20:22", "message_id": "a3f4e77a-ff85-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T17:10:22", "message_id": "3e4d0444-ff84-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T17:00:21", "message_id": "d89207ae-ff82-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T16:50:21", "message_id": "72da71f4-ff81-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T16:40:21", "message_id": "0d3108fa-ff80-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T16:30:21", "message_id": "a78db724-ff7e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T16:20:21", "message_id": "41d1e10e-ff7d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T16:10:21", "message_id": "dc2b5084-ff7b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T16:00:21", "message_id": "767cde34-ff7a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T15:50:21", "message_id": "10d099d2-ff79-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T15:40:21", "message_id": "ab1c8912-ff77-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T15:30:21", "message_id": "4568a41c-ff76-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T15:20:20", "message_id": "dfbddb88-ff74-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T15:10:20", "message_id": "7a0a18b6-ff73-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T15:00:20", "message_id": "145a27d2-ff72-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T14:50:20", "message_id": "aeac89f8-ff70-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T14:40:20", "message_id": "48fb6008-ff6f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T14:30:20", "message_id": "e362063a-ff6d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T14:20:20", "message_id": "7db114ee-ff6c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T14:10:20", "message_id": "1800bd76-ff6b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T14:00:20", "message_id": "b2510d56-ff69-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T13:50:20", "message_id": "4c9e7cce-ff68-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T13:40:20", "message_id": "e706237c-ff66-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T13:30:20", "message_id": "814c6ce0-ff65-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T13:20:19", "message_id": "1b9dae82-ff64-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T13:10:19", "message_id": "b5f4eb0a-ff62-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T13:00:19", "message_id": "504f90da-ff61-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T12:50:19", "message_id": "eaa620f6-ff5f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T12:40:19", "message_id": "84efc286-ff5e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T12:30:19", "message_id": "1f463dbc-ff5d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T12:20:19", "message_id": "b99bab4c-ff5b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T12:10:19", "message_id": "53e143ee-ff5a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T12:00:19", "message_id": "ee2f1f36-ff58-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T11:50:19", "message_id": "8887d476-ff57-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T11:40:19", "message_id": "22dd486e-ff56-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T11:30:19", "message_id": "bd2d4902-ff54-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T11:20:18", "message_id": "577c8952-ff53-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T11:10:19", "message_id": "f1ea41b6-ff51-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T11:00:18", "message_id": "8c33cb72-ff50-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T10:50:18", "message_id": "2684e4d8-ff4f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T10:40:18", "message_id": "c0e09ec0-ff4d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T10:30:18", "message_id": "5b299ab0-ff4c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T10:20:18", "message_id": "f57bec28-ff4a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T10:10:18", "message_id": "8fd9fcda-ff49-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T10:00:18", "message_id": "2a354a20-ff48-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T09:50:18", "message_id": "c474ef5c-ff46-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T09:40:18", "message_id": "5ece732c-ff45-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T09:30:18", "message_id": "f90da040-ff43-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T09:20:18", "message_id": "93672c58-ff42-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T09:10:17", "message_id": "2db845d2-ff41-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T09:00:17", "message_id": "c7fbee52-ff3f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T08:50:17", "message_id": "625048ec-ff3e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T08:40:17", "message_id": "fca68908-ff3c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T08:30:17", "message_id": "96f4a898-ff3b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T08:20:17", "message_id": "3137c72a-ff3a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T08:10:17", "message_id": "cb8875f6-ff38-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T08:00:17", "message_id": "65d7a7dc-ff37-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T07:50:17", "message_id": "00291de0-ff36-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T07:40:16", "message_id": "9a7629c6-ff34-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T07:30:16", "message_id": "34d27e22-ff33-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T07:20:16", "message_id": "cf192d2a-ff31-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T07:10:16", "message_id": "69683e86-ff30-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T07:00:16", "message_id": "03c2d98e-ff2f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T06:50:16", "message_id": "9e152f20-ff2d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T06:40:16", "message_id": "38653c70-ff2c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T06:30:16", "message_id": "d2ac15bc-ff2a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T06:20:16", "message_id": "6d0e37c2-ff29-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T06:10:16", "message_id": "076b8826-ff28-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T06:00:16", "message_id": "a1ab3492-ff26-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T05:50:16", "message_id": "3c080f1c-ff25-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T05:40:15", "message_id": "d64967f8-ff23-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T05:30:16", "message_id": "70c314ac-ff22-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T05:20:15", "message_id": "0af6979e-ff21-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T05:10:15", "message_id": "a53c8068-ff1f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T05:00:15", "message_id": "3fa35a3e-ff1e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T04:50:15", "message_id": "d9e63cb2-ff1c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T04:40:15", "message_id": "743f2f82-ff1b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T04:30:15", "message_id": "0e9e38fe-ff1a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T04:20:15", "message_id": "a8de3c9a-ff18-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T04:10:15", "message_id": "433abc02-ff17-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T04:00:15", "message_id": "dd89d326-ff15-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T03:50:15", "message_id": "77f29d96-ff14-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T03:40:14", "message_id": "1232074a-ff13-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T03:30:14", "message_id": "ac795d6e-ff11-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T03:20:14", "message_id": "46d00522-ff10-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T03:10:14", "message_id": "e13525e0-ff0e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T03:00:14", "message_id": "7b739d1e-ff0d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T02:50:14", "message_id": "15dfd1c6-ff0c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T02:40:14", "message_id": "b02a5ac8-ff0a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T02:30:14", "message_id": "4a7dde26-ff09-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T02:20:14", "message_id": "e4c486b2-ff07-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T02:10:14", "message_id": "7f14bdec-ff06-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T02:00:14", "message_id": "19629506-ff05-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T01:50:14", "message_id": "b3c321a8-ff03-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T01:40:13", "message_id": "4e07359e-ff02-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T01:30:13", "message_id": "e8605410-ff00-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T01:20:13", "message_id": "82b24908-feff-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T01:10:13", "message_id": "1d0a3b84-fefe-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T01:00:13", "message_id": "b74dcd66-fefc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T00:50:13", "message_id": "51aa418e-fefb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T00:40:13", "message_id": "ec002f52-fef9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T00:30:13", "message_id": "86412708-fef8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T00:20:13", "message_id": "2092f5fe-fef7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T00:10:13", "message_id": "bae5cb38-fef5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-07T00:00:12", "message_id": "552de29a-fef4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T23:50:12", "message_id": "ef9131cc-fef2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T23:40:12", "message_id": "89e17996-fef1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T23:30:12", "message_id": "243761ec-fef0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T23:20:12", "message_id": "be99f990-feee-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T23:10:12", "message_id": "58d0af38-feed-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T23:00:12", "message_id": "f36ec0a4-feeb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T22:50:12", "message_id": "8d7a8ffe-feea-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T22:40:12", "message_id": "27cf078a-fee9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T22:30:12", "message_id": "c2219336-fee7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T22:20:12", "message_id": "5c6b687e-fee6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T22:10:12", "message_id": "f6d36b7a-fee4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T22:00:12", "message_id": "913c7bfe-fee3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T21:50:11", "message_id": "2b6b06de-fee2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T21:40:12", "message_id": "c5e4ae74-fee0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T21:30:11", "message_id": "6019bc7a-fedf-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T21:20:11", "message_id": "fa6ca546-fedd-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T21:10:11", "message_id": "94b59876-fedc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T21:00:11", "message_id": "2efc0462-fedb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T20:50:11", "message_id": "c95871b4-fed9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T20:40:11", "message_id": "63b7d31e-fed8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T20:30:11", "message_id": "fe030634-fed6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T20:20:11", "message_id": "9881290e-fed5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T20:10:11", "message_id": "329ff76a-fed4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T20:00:11", "message_id": "cd08bbae-fed2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T19:50:10", "message_id": "67511672-fed1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T19:40:10", "message_id": "01a83536-fed0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T19:30:10", "message_id": "9bf8f94c-fece-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T19:20:10", "message_id": "364672f6-fecd-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T19:10:10", "message_id": "d0960ddc-fecb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T19:00:10", "message_id": "6ad689fa-feca-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T18:50:10", "message_id": "0552e958-fec9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T18:40:10", "message_id": "9f8adf32-fec7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T18:30:10", "message_id": "39d3973e-fec6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T18:20:10", "message_id": "d429d99e-fec4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T18:10:09", "message_id": "6e769264-fec3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T18:00:09", "message_id": "08bb06fe-fec2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T17:50:09", "message_id": "a3130c3a-fec0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T17:40:09", "message_id": "3d6b805c-febf-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T17:30:09", "message_id": "d7b697a2-febd-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T17:20:09", "message_id": "720e2006-febc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T17:10:09", "message_id": "0c53cc6c-febb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T17:00:09", "message_id": "a6a6f34a-feb9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T16:50:09", "message_id": "40fa4c0a-feb8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T16:40:09", "message_id": "db4311fe-feb6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T16:30:09", "message_id": "759a4990-feb5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T16:20:08", "message_id": "0fe75cb0-feb4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T16:10:08", "message_id": "aa4436cc-feb2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T16:00:08", "message_id": "4496460e-feb1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T15:50:08", "message_id": "dedfc94e-feaf-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T15:40:08", "message_id": "793d5e36-feae-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T15:30:08", "message_id": "1383740a-fead-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T15:20:08", "message_id": "add8091e-feab-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T15:10:08", "message_id": "48260cd4-feaa-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T15:00:08", "message_id": "e276e6a2-fea8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T14:50:08", "message_id": "7ccd1818-fea7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T14:40:08", "message_id": "172b54c6-fea6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T14:30:08", "message_id": "b184c0f4-fea4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T14:20:07", "message_id": "4bd38f5c-fea3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T14:10:07", "message_id": "e6208576-fea1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T14:00:07", "message_id": "808eddda-fea0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T13:50:07", "message_id": "1ad183b8-fe9f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T13:40:07", "message_id": "b51597ae-fe9d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T13:30:07", "message_id": "4f670952-fe9c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T13:20:07", "message_id": "e9b78b46-fe9a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T13:10:07", "message_id": "8405ec6c-fe99-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T13:00:07", "message_id": "1e616928-fe98-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T12:50:07", "message_id": "b8b6a5f8-fe96-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T12:40:07", "message_id": "531b7742-fe95-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T12:30:07", "message_id": "ed5a316a-fe93-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T12:20:06", "message_id": "87a54036-fe92-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T12:10:06", "message_id": "2202cc5e-fe91-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T12:00:06", "message_id": "bc544e60-fe8f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T11:50:06", "message_id": "56a2a180-fe8e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T11:40:06", "message_id": "f101f89a-fe8c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T11:30:07", "message_id": "8bdf8898-fe8b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T11:20:06", "message_id": "2598fdf4-fe8a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T11:10:06", "message_id": "bfe4f2a2-fe88-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T11:00:06", "message_id": "5a3e9666-fe87-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T10:50:06", "message_id": "f491dd6a-fe85-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T10:40:06", "message_id": "8ee3d73a-fe84-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T10:30:05", "message_id": "293134a6-fe83-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T10:20:05", "message_id": "c3873926-fe81-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T10:10:05", "message_id": "5dcdcd1c-fe80-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T10:00:05", "message_id": "f824eb54-fe7e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T09:50:05", "message_id": "92716dba-fe7d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T09:40:05", "message_id": "2cc94402-fe7c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T09:30:05", "message_id": "c71e1778-fe7a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T09:20:05", "message_id": "6167187c-fe79-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T09:10:05", "message_id": "fbbfcdf8-fe77-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T09:00:05", "message_id": "960f4ea8-fe76-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T08:50:05", "message_id": "305f49e2-fe75-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T08:40:04", "message_id": "cab1d8d6-fe73-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T08:30:04", "message_id": "65005bb2-fe72-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T08:20:04", "message_id": "ff53a2fc-fe70-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T08:10:04", "message_id": "99a8a9bc-fe6f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T08:00:04", "message_id": "33fad028-fe6e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T07:50:04", "message_id": "ce4b864c-fe6c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T07:40:04", "message_id": "68ad4786-fe6b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T07:30:04", "message_id": "02fc91ea-fe6a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T07:20:04", "message_id": "9d50dbf4-fe68-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T07:10:04", "message_id": "37a04db8-fe67-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T07:00:04", "message_id": "d1f0b9c2-fe65-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T06:50:04", "message_id": "6c3fd23a-fe64-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T06:40:04", "message_id": "069db0ce-fe63-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T06:30:03", "message_id": "a0ef74ac-fe61-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T06:20:03", "message_id": "3b3a590c-fe60-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T06:10:03", "message_id": "d5865846-fe5e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T06:00:03", "message_id": "6fd6de0e-fe5d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T05:50:03", "message_id": "0a2965be-fe5c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T05:40:03", "message_id": "a480f9da-fe5a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T05:30:03", "message_id": "3ec85f30-fe59-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T05:20:03", "message_id": "d91c98fa-fe57-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T05:10:03", "message_id": "7373b3ea-fe56-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T05:00:03", "message_id": "0dc05c52-fe55-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T04:50:02", "message_id": "a8117f5e-fe53-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T04:40:02", "message_id": "426aee02-fe52-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T04:30:02", "message_id": "dcbf5aa8-fe50-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T04:20:02", "message_id": "770804f4-fe4f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T04:10:02", "message_id": "114eaec0-fe4e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T04:00:02", "message_id": "abaac974-fe4c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T03:50:02", "message_id": "45f9f97a-fe4b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T03:40:02", "message_id": "e04f27cc-fe49-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T03:30:02", "message_id": "7a991e2a-fe48-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T03:20:02", "message_id": "14e61ffc-fe47-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T03:10:02", "message_id": "af42a8b0-fe45-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T03:00:01", "message_id": "498e441c-fe44-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T02:50:01", "message_id": "e3dd125c-fe42-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T02:40:01", "message_id": "7e2c900a-fe41-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T02:30:01", "message_id": "188ac1a0-fe40-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T02:20:01", "message_id": "b2df66fe-fe3e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T02:10:01", "message_id": "4d2840fc-fe3d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T02:00:01", "message_id": "e77f8644-fe3b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T01:50:01", "message_id": "81d35b82-fe3a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T01:40:01", "message_id": "1c309ac0-fe39-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T01:30:01", "message_id": "b6809d52-fe37-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T01:20:01", "message_id": "50dbaaa6-fe36-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T01:10:01", "message_id": "eb2303b8-fe34-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T01:00:01", "message_id": "857b3a68-fe33-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T00:50:00", "message_id": "1fc38578-fe32-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T00:40:00", "message_id": "ba1b4068-fe30-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T00:30:00", "message_id": "5466dc24-fe2f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T00:20:00", "message_id": "eeb664f4-fe2d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T00:10:00", "message_id": "890ac934-fe2c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-06T00:00:00", "message_id": "235c84e8-fe2b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T23:50:00", "message_id": "bdaf770a-fe29-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T23:40:00", "message_id": "58044b98-fe28-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T23:30:00", "message_id": "f25428c8-fe26-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T23:20:00", "message_id": "8cb17f1c-fe25-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T23:10:00", "message_id": "273c87c2-fe24-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T23:00:00", "message_id": "c18fcbec-fe22-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T22:49:59", "message_id": "5b990c3c-fe21-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T22:39:59", "message_id": "f5e4bed2-fe1f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T22:29:59", "message_id": "903decc6-fe1e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T22:19:59", "message_id": "2a92b42a-fe1d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T22:09:59", "message_id": "c4e04e54-fe1b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T21:59:59", "message_id": "5f3043ee-fe1a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T21:49:59", "message_id": "f9808226-fe18-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T21:39:59", "message_id": "93cdc142-fe17-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T21:29:59", "message_id": "2e16ceda-fe16-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T21:19:59", "message_id": "c86ee5d2-fe14-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T21:09:58", "message_id": "62c02832-fe13-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T20:59:58", "message_id": "fd142c00-fe11-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T20:49:58", "message_id": "975a4ba2-fe10-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T20:39:58", "message_id": "31ab7d2c-fe0f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T20:29:58", "message_id": "cbfa9ffe-fe0d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T20:19:58", "message_id": "6655b3e2-fe0c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T20:09:58", "message_id": "00a0b0e8-fe0b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T19:59:58", "message_id": "9af5e2a0-fe09-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T19:49:58", "message_id": "3547c3c0-fe08-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T19:39:58", "message_id": "cfa4c4e2-fe06-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T19:29:58", "message_id": "69f1bf66-fe05-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T19:19:57", "message_id": "0442a3ac-fe04-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T19:09:57", "message_id": "9e99e3fe-fe02-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T18:59:57", "message_id": "38e79bd8-fe01-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T18:49:57", "message_id": "d336b798-fdff-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T18:39:57", "message_id": "6d8f9ed8-fdfe-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T18:29:57", "message_id": "07e27ee4-fdfd-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T18:19:57", "message_id": "a2378388-fdfb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T18:09:57", "message_id": "3c97c5b6-fdfa-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T17:59:57", "message_id": "d6dcd24e-fdf8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T17:49:57", "message_id": "7132ac1c-fdf7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T17:39:57", "message_id": "0b854ee8-fdf6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T17:29:57", "message_id": "a5d9c502-fdf4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T17:19:56", "message_id": "402941a2-fdf3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T17:09:56", "message_id": "da7d30bc-fdf1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T16:59:56", "message_id": "74cf0840-fdf0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T16:49:56", "message_id": "0f1fe254-fdef-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T16:39:56", "message_id": "a97b9caa-fded-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T16:29:56", "message_id": "43f57b68-fdec-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T16:19:56", "message_id": "de263c92-fdea-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T16:09:56", "message_id": "7883ad76-fde9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T15:59:56", "message_id": "12d2ac94-fde8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T15:49:56", "message_id": "ad2aaf5a-fde6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T15:39:56", "message_id": "477eb864-fde5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T15:29:56", "message_id": "e1d004f6-fde3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T15:19:56", "message_id": "7c51b2a6-fde2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T15:09:56", "message_id": "166b1c4e-fde1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T14:59:55", "message_id": "b0ba9970-fddf-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T14:49:55", "message_id": "4b18e67c-fdde-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T14:39:55", "message_id": "e56295fe-fddc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T14:29:55", "message_id": "7fb71e9c-fddb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T14:19:55", "message_id": "1a08004e-fdda-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T14:09:55", "message_id": "b45e8962-fdd8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T13:59:55", "message_id": "4eaa3de2-fdd7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T13:49:55", "message_id": "e8ff064a-fdd5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T13:39:55", "message_id": "834b5f34-fdd4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T13:29:55", "message_id": "1d999f3a-fdd3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T13:19:55", "message_id": "b7eb1796-fdd1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T13:09:54", "message_id": "52409dd6-fdd0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T12:59:54", "message_id": "ec939034-fdce-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T12:49:54", "message_id": "86e5868a-fdcd-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T12:39:54", "message_id": "2132c18c-fdcc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T12:29:54", "message_id": "bb831de2-fdca-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T12:19:54", "message_id": "55d73038-fdc9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T12:09:54", "message_id": "f021c81c-fdc7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T11:59:54", "message_id": "8a77e3b2-fdc6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T11:49:54", "message_id": "24cd0214-fdc5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T11:39:54", "message_id": "bf21fd76-fdc3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T11:29:54", "message_id": "5971b846-fdc2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T11:19:54", "message_id": "f3c7abf0-fdc0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T11:09:53", "message_id": "8e187e0c-fdbf-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T10:59:53", "message_id": "286be8ec-fdbe-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T10:49:54", "message_id": "c2e7a5de-fdbc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T10:39:53", "message_id": "5d0e32b0-fdbb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T10:29:53", "message_id": "f76aa084-fdb9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T10:19:53", "message_id": "91b83c8e-fdb8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T10:09:53", "message_id": "2c18e3ac-fdb7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T09:59:53", "message_id": "c66bb260-fdb5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T09:49:53", "message_id": "60bf8f32-fdb4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T09:39:53", "message_id": "fb10feba-fdb2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T09:29:53", "message_id": "95656034-fdb1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T09:19:53", "message_id": "2fb477bc-fdb0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T09:09:52", "message_id": "ca011566-fdae-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T08:59:52", "message_id": "645a8432-fdad-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T08:49:52", "message_id": "feb8cf40-fdab-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T08:39:52", "message_id": "98fdb0c2-fdaa-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T08:29:52", "message_id": "334ee378-fda9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T08:19:52", "message_id": "cd9d9cc8-fda7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T08:09:52", "message_id": "68095b78-fda6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T07:59:52", "message_id": "024565e4-fda5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T07:49:52", "message_id": "9c940a94-fda3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T07:39:52", "message_id": "36ebf0cc-fda2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T07:29:52", "message_id": "d139e7a8-fda0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T07:19:52", "message_id": "6b8e30a4-fd9f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T07:09:52", "message_id": "0605f4f2-fd9e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T06:59:51", "message_id": "a02a7f6e-fd9c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T06:49:51", "message_id": "3a8105ee-fd9b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T06:39:51", "message_id": "d4c87d50-fd99-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T06:29:51", "message_id": "6f1d040e-fd98-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T06:19:51", "message_id": "0968937c-fd97-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T06:09:51", "message_id": "a3bdfb62-fd95-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T05:59:51", "message_id": "3e1146bc-fd94-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T05:49:51", "message_id": "d863958c-fd92-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T05:39:51", "message_id": "72b4386e-fd91-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T05:29:51", "message_id": "0d11fb3c-fd90-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T05:19:50", "message_id": "a7607490-fd8e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T05:09:50", "message_id": "41aaec4e-fd8d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T04:59:50", "message_id": "dc0a7194-fd8b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T04:49:50", "message_id": "7667e96c-fd8a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T04:39:50", "message_id": "10c8418e-fd89-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T04:29:50", "message_id": "ab1a8de8-fd87-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T04:19:50", "message_id": "4552b73e-fd86-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T04:09:50", "message_id": "dfbf9a0a-fd84-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T03:59:50", "message_id": "79d5f35c-fd83-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T03:49:50", "message_id": "1446af28-fd82-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T03:39:50", "message_id": "ae9fc66a-fd80-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T03:29:50", "message_id": "48fbf42e-fd7f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T03:19:50", "message_id": "e35a3744-fd7d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T03:09:50", "message_id": "7da5dfda-fd7c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T02:59:49", "message_id": "17dc976c-fd7b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T02:49:49", "message_id": "b21ea42a-fd79-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T02:39:49", "message_id": "4cb13950-fd78-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T02:29:49", "message_id": "e6f1dcb0-fd76-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T02:19:49", "message_id": "814c7880-fd75-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T02:09:49", "message_id": "1b96fe9e-fd74-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T01:59:49", "message_id": "b5d62e0a-fd72-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T01:49:49", "message_id": "502e8fbc-fd71-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T01:39:49", "message_id": "ea8827f0-fd6f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T01:29:49", "message_id": "85067c0c-fd6e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T01:19:49", "message_id": "1f66ed4c-fd6d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T01:09:49", "message_id": "b9a46224-fd6b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T00:59:48", "message_id": "53dbe1ca-fd6a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T00:49:48", "message_id": "ee1cee0c-fd68-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T00:39:48", "message_id": "8884048c-fd67-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T00:29:48", "message_id": "22dcdd4e-fd66-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T00:19:48", "message_id": "bd385b0e-fd64-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-05T00:09:48", "message_id": "57a93ff2-fd63-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-04T23:59:48", "message_id": "f1ffc258-fd61-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-04T23:49:48", "message_id": "8c3a6f78-fd60-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-04T23:39:05", "message_id": "0cff56ac-fd5f-11e2-b8cf-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f", "timestamp": "2013-08-04T23:29:05", "message_id": "a76b5b98-fd5d-11e2-b8cf-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "resource_metadata": {}, "counter_type": "gauge"}]} \ No newline at end of file diff --git a/tests/data/map_fixture_5.json b/tests/data/map_fixture_5.json new file mode 100644 index 0000000..dbcb164 --- /dev/null +++ b/tests/data/map_fixture_5.json @@ -0,0 +1 @@ +{"http://localhost:8777/v2/meters/disk.ephemeral.size?q.field=resource_id&q.value=1bd5a017-2777-4601-8c48-fd7569a4e485": [{"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-12T04:00:31.142000", "message_id": "bb38ea86-0303-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-12 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-12T03:00:51.411000", "message_id": "658c0f62-02fb-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-12 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-12T02:00:27.668000", "message_id": "f59e7738-02f2-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-12 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-12T02:00:27.668000", "message_id": "f59e7738-02f2-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-12 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-12T01:00:47.078000", "message_id": "9f76c69c-02ea-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-12 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-12T00:00:24.744000", "message_id": "3055f1dc-02e2-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-11T23:00:42.301000", "message_id": "d911153a-02d9-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-11T22:00:21.033000", "message_id": "6a9db246-02d1-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-11T22:00:21.033000", "message_id": "6a9db246-02d1-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-11T22:00:21.033000", "message_id": "6a9db246-02d1-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-11T22:00:21.033000", "message_id": "6a9db246-02d1-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-11T22:00:21.033000", "message_id": "6a9db246-02d1-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-11T21:00:30.028000", "message_id": "0e32729c-02c9-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-11T20:00:18.104000", "message_id": "a54e3e30-02c0-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-11T20:00:18.104000", "message_id": "a54e3e30-02c0-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-11T20:00:18.104000", "message_id": "a54e3e30-02c0-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-11T19:00:11.774000", "message_id": "3fc56fb4-02b8-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-11T18:00:03.013000", "message_id": "d8c73926-02af-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-11T17:00:49.713000", "message_id": "92e0b3e0-02a7-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-11T16:00:45.695000", "message_id": "2ecf87e4-029f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-11T16:00:45.695000", "message_id": "2ecf87e4-029f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-11T15:00:36.707000", "message_id": "c78f8ea6-0296-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-11T14:00:27.950000", "message_id": "6096b114-028e-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-11T13:00:20.228000", "message_id": "fa3ec36e-0285-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-11T13:00:20.228000", "message_id": "fa3ec36e-0285-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-11T13:00:20.228000", "message_id": "fa3ec36e-0285-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-11T12:00:11.526000", "message_id": "934d8d64-027d-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-11T11:00:02.878000", "message_id": "2c5ee132-0275-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-11T10:00:29.361000", "message_id": "da5604c2-026c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-11T09:00:26.318000", "message_id": "76c375dc-0264-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-11T08:00:23.237000", "message_id": "1329c362-025c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-11T07:00:19.843000", "message_id": "af636b1a-0253-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-11T06:00:16.440000", "message_id": "4b984cca-024b-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-11T06:00:16.440000", "message_id": "4b984cca-024b-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-11T05:00:05.254000", "message_id": "e327e4d2-0242-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-11T04:00:09.203000", "message_id": "83ba5f8c-023a-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-11T04:00:09.203000", "message_id": "83ba5f8c-023a-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-11T03:00:02.149000", "message_id": "1dc6602a-0232-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-11T02:00:02.883000", "message_id": "bc6bd920-0229-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-11T01:00:00.622000", "message_id": "5950416c-0221-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-11T01:00:00.622000", "message_id": "5950416c-0221-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-11T00:00:59.479000", "message_id": "1aa185e6-0219-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-10T23:00:57.053000", "message_id": "b76b65bc-0210-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-10T22:00:51.234000", "message_id": "522c5e3e-0208-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-10T21:00:44.019000", "message_id": "ec251d0e-01ff-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-10T20:00:38.870000", "message_id": "8768b162-01f7-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-10T19:00:35.321000", "message_id": "2371027a-01ef-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-10T18:00:31.889000", "message_id": "bf99b4ca-01e6-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-10T17:00:28.401000", "message_id": "5bd39134-01de-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-10T16:00:25.452000", "message_id": "f8446ec0-01d5-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-10T15:00:22.242000", "message_id": "948d0d04-01cd-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-10T14:00:19.164000", "message_id": "30f00862-01c5-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-10T14:00:19.164000", "message_id": "30f00862-01c5-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-10T13:00:15.701000", "message_id": "cd15ac28-01bc-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-10T12:00:04.292000", "message_id": "648bda18-01b4-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-10T11:00:00.305000", "message_id": "006c7f18-01ac-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-10T10:00:57.836000", "message_id": "c0e6eea8-01a3-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-10T10:00:57.836000", "message_id": "c0e6eea8-01a3-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-10T09:00:54.289000", "message_id": "5d0b11be-019b-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-10T08:00:51.340000", "message_id": "f97f2782-0192-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-10T08:00:51.340000", "message_id": "f97f2782-0192-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-10T07:00:47.642000", "message_id": "959425d6-018a-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-10T07:00:47.642000", "message_id": "959425d6-018a-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-10T07:00:47.642000", "message_id": "959425d6-018a-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-10T07:00:47.642000", "message_id": "959425d6-018a-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-10T07:00:47.642000", "message_id": "959425d6-018a-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-10T06:00:44.511000", "message_id": "31eb5aac-0182-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-10T05:00:41.357000", "message_id": "ce4bc49e-0179-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-10T04:00:38.509000", "message_id": "6ace7f72-0171-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-10T03:00:35.082000", "message_id": "0707ee5e-0169-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-10T02:00:32.213000", "message_id": "a391363a-0160-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-10T01:00:28.534000", "message_id": "3f91b496-0158-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-10T01:00:28.534000", "message_id": "3f91b496-0158-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-10T00:00:24.254000", "message_id": "db431afa-014f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T23:00:20.550000", "message_id": "774c2af8-0147-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T22:00:17.007000", "message_id": "135fa180-013f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T22:00:17.007000", "message_id": "135fa180-013f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T22:00:17.007000", "message_id": "135fa180-013f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T22:00:17.007000", "message_id": "135fa180-013f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T22:00:17.007000", "message_id": "135fa180-013f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T21:00:13.474000", "message_id": "af8571ec-0136-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T20:00:10.420000", "message_id": "4bf8d310-012e-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T19:00:07.041000", "message_id": "e81fcf86-0125-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T18:00:05.394000", "message_id": "856325b2-011d-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T17:00:01.542000", "message_id": "214d86d8-0115-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T17:00:01.542000", "message_id": "214d86d8-0115-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T17:00:01.542000", "message_id": "214d86d8-0115-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T17:00:01.542000", "message_id": "214d86d8-0115-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T17:00:01.542000", "message_id": "214d86d8-0115-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T16:00:59.768000", "message_id": "e24b7b1e-010c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T16:00:59.768000", "message_id": "e24b7b1e-010c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T16:00:59.768000", "message_id": "e24b7b1e-010c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T16:00:59.768000", "message_id": "e24b7b1e-010c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T16:00:59.768000", "message_id": "e24b7b1e-010c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T15:00:53.175000", "message_id": "7ca305be-0104-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T15:00:53.175000", "message_id": "7ca305be-0104-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T14:00:42.332000", "message_id": "14525832-00fc-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T13:00:31.990000", "message_id": "ac6a9e30-00f3-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T13:00:31.990000", "message_id": "ac6a9e30-00f3-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T13:00:31.990000", "message_id": "ac6a9e30-00f3-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T12:00:21.678000", "message_id": "4479e496-00eb-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T12:00:21.678000", "message_id": "4479e496-00eb-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T11:00:11.764000", "message_id": "dcd4469a-00e2-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T11:00:11.764000", "message_id": "dcd4469a-00e2-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T11:00:11.764000", "message_id": "dcd4469a-00e2-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T11:00:11.764000", "message_id": "dcd4469a-00e2-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T10:00:02.034000", "message_id": "7558c0d4-00da-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T10:00:02.034000", "message_id": "7558c0d4-00da-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T09:00:53.763000", "message_id": "3258e97e-00d2-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T08:00:44.814000", "message_id": "cb324284-00c9-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T07:00:35.666000", "message_id": "6405b97c-00c1-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T06:00:27.504000", "message_id": "fd5e2860-00b8-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T05:00:17.871000", "message_id": "95ed745e-00b0-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T05:00:17.871000", "message_id": "95ed745e-00b0-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T04:00:02.390000", "message_id": "2ada50ae-00a8-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T03:00:53.023000", "message_id": "e7465872-009f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T02:00:37.365000", "message_id": "7c2b82fe-0097-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T02:00:37.365000", "message_id": "7c2b82fe-0097-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T02:00:37.365000", "message_id": "7c2b82fe-0097-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T01:00:26.946000", "message_id": "142dd326-008f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T00:00:17.110000", "message_id": "ac971b12-0086-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T00:00:17.110000", "message_id": "ac971b12-0086-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T23:00:07.618000", "message_id": "451e7938-007e-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T22:01:01.409000", "message_id": "037e31e2-0076-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T21:00:52.353000", "message_id": "9c422cde-006d-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T20:00:43.582000", "message_id": "354aa7c0-0065-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T20:00:43.582000", "message_id": "354aa7c0-0065-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T19:00:36.837000", "message_id": "cf7cc566-005c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T19:00:36.837000", "message_id": "cf7cc566-005c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T18:00:29.442000", "message_id": "69507236-0054-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T18:00:29.442000", "message_id": "69507236-0054-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T17:00:22.425000", "message_id": "03572cf2-004c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T16:00:14.038000", "message_id": "9c95ed80-0043-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T16:00:14.038000", "message_id": "9c95ed80-0043-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T15:00:07.814000", "message_id": "37240d9a-003b-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T15:00:07.814000", "message_id": "37240d9a-003b-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T14:01:00.762000", "message_id": "f4e7e90e-0032-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T13:00:51.729000", "message_id": "8de6417c-002a-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T13:00:51.729000", "message_id": "8de6417c-002a-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T13:00:51.729000", "message_id": "8de6417c-002a-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T12:00:42.662000", "message_id": "269008d0-0022-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T11:00:35.831000", "message_id": "c0bd3a44-0019-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T11:00:35.831000", "message_id": "c0bd3a44-0019-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T10:00:28.533000", "message_id": "5aa12818-0011-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T09:00:25.664000", "message_id": "f71fc734-0008-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T09:00:25.664000", "message_id": "f71fc734-0008-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T09:00:25.664000", "message_id": "f71fc734-0008-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T08:00:23.300000", "message_id": "93f600cc-0000-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T07:00:21.349000", "message_id": "310d8794-fff8-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T07:00:21.349000", "message_id": "310d8794-fff8-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T07:00:21.349000", "message_id": "310d8794-fff8-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T06:00:19.415000", "message_id": "ce20bee2-ffef-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T05:00:17.584000", "message_id": "6b4b9790-ffe7-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T04:00:15.987000", "message_id": "088dbed8-ffdf-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T04:00:15.987000", "message_id": "088dbed8-ffdf-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T03:00:13.949000", "message_id": "a58a7e6e-ffd6-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T02:00:12.162000", "message_id": "42bfe772-ffce-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T02:00:12.162000", "message_id": "42bfe772-ffce-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T01:00:10.255000", "message_id": "dfde5b6e-ffc5-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T01:00:10.255000", "message_id": "dfde5b6e-ffc5-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T01:00:10.255000", "message_id": "dfde5b6e-ffc5-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T01:00:10.255000", "message_id": "dfde5b6e-ffc5-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T01:00:10.255000", "message_id": "dfde5b6e-ffc5-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T00:00:08.704000", "message_id": "7d2d9460-ffbd-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-07T23:00:03.945000", "message_id": "1880b57c-ffb5-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-07T22:00:01.424000", "message_id": "b5500dde-ffac-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-07T22:00:01.424000", "message_id": "b5500dde-ffac-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-07T22:00:01.424000", "message_id": "b5500dde-ffac-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-07T21:00:58.438000", "message_id": "758988ae-ffa4-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-07T20:00:55.839000", "message_id": "123aeaf2-ff9c-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-07T19:00:51.172000", "message_id": "ada61f42-ff93-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-07T18:00:49.666000", "message_id": "4af785fa-ff8b-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-07T17:00:47.566000", "message_id": "e7ebccf8-ff82-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-07T16:00:45.332000", "message_id": "84d45ec6-ff7a-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-07T15:00:43.085000", "message_id": "21b58e9e-ff72-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-07T14:00:40.859000", "message_id": "bea8616c-ff69-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-07T13:00:38.070000", "message_id": "5b2c130c-ff61-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-07T12:00:35.603000", "message_id": "f7f7052e-ff58-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-07T12:00:35.603000", "message_id": "f7f7052e-ff58-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-07T12:00:35.603000", "message_id": "f7f7052e-ff58-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-07T12:00:35.603000", "message_id": "f7f7052e-ff58-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-07T11:00:33.146000", "message_id": "94bd8ef4-ff50-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-07T10:00:28.936000", "message_id": "3076f5b4-ff48-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-07T09:00:26.206000", "message_id": "cd189de0-ff3f-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-07T08:00:23.782000", "message_id": "69e111e2-ff37-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-07T07:00:21.621000", "message_id": "06d7a9ce-ff2f-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-07T07:00:21.621000", "message_id": "06d7a9ce-ff2f-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-07T07:00:21.621000", "message_id": "06d7a9ce-ff2f-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-07T07:00:21.621000", "message_id": "06d7a9ce-ff2f-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-07T06:00:16.410000", "message_id": "a1e8697a-ff26-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-07T06:00:16.410000", "message_id": "a1e8697a-ff26-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-07T05:00:13.119000", "message_id": "3e3f1c64-ff1e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-07T04:00:10.514000", "message_id": "dadfc7b6-ff15-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-07T03:00:06.832000", "message_id": "76e62474-ff0d-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-07T03:00:06.832000", "message_id": "76e62474-ff0d-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-07T03:00:06.832000", "message_id": "76e62474-ff0d-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-07T03:00:06.832000", "message_id": "76e62474-ff0d-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-07T03:00:06.832000", "message_id": "76e62474-ff0d-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-07T02:00:03.957000", "message_id": "136e0964-ff05-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-07T01:00:01.959000", "message_id": "b079cc24-fefc-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-07T00:00:01.237000", "message_id": "4e4116aa-fef4-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T23:00:36.449000", "message_id": "0183ac5e-feec-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T22:00:00.309000", "message_id": "8a3812e6-fee3-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T21:00:12.926000", "message_id": "2ffbc1fe-fedb-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T20:00:01.640000", "message_id": "c77f04f4-fed2-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T20:00:01.640000", "message_id": "c77f04f4-fed2-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T20:00:01.640000", "message_id": "c77f04f4-fed2-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T20:00:01.640000", "message_id": "c77f04f4-fed2-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T19:00:52.317000", "message_id": "83dbb0ce-feca-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T19:00:52.317000", "message_id": "83dbb0ce-feca-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T19:00:52.317000", "message_id": "83dbb0ce-feca-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T19:00:52.317000", "message_id": "83dbb0ce-feca-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T18:00:45.959000", "message_id": "1e57f97c-fec2-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T18:00:45.959000", "message_id": "1e57f97c-fec2-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T18:00:45.959000", "message_id": "1e57f97c-fec2-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T18:00:45.959000", "message_id": "1e57f97c-fec2-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T18:00:45.959000", "message_id": "1e57f97c-fec2-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T17:00:34.412000", "message_id": "b5b61884-feb9-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T17:00:34.412000", "message_id": "b5b61884-feb9-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T17:00:34.412000", "message_id": "b5b61884-feb9-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T17:00:34.412000", "message_id": "b5b61884-feb9-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T17:00:34.412000", "message_id": "b5b61884-feb9-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T16:00:25.287000", "message_id": "4e833f46-feb1-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T15:00:16.270000", "message_id": "e75b7a70-fea8-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T14:00:07.305000", "message_id": "80376cc6-fea0-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T13:01:00.163000", "message_id": "3df1033e-fe98-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T12:00:50.921000", "message_id": "d6adef78-fe8f-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T12:00:50.921000", "message_id": "d6adef78-fe8f-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T12:00:50.921000", "message_id": "d6adef78-fe8f-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T12:00:50.921000", "message_id": "d6adef78-fe8f-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T11:00:42.225000", "message_id": "6fb89e24-fe87-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T11:00:42.225000", "message_id": "6fb89e24-fe87-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T11:00:42.225000", "message_id": "6fb89e24-fe87-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T11:00:42.225000", "message_id": "6fb89e24-fe87-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T11:00:42.225000", "message_id": "6fb89e24-fe87-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T10:00:33.218000", "message_id": "0896f1e4-fe7f-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T09:00:25.699000", "message_id": "a25295ee-fe76-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T08:00:15.445000", "message_id": "3a7bccd6-fe6e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T08:00:15.445000", "message_id": "3a7bccd6-fe6e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T08:00:15.445000", "message_id": "3a7bccd6-fe6e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T08:00:15.445000", "message_id": "3a7bccd6-fe6e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T08:00:15.445000", "message_id": "3a7bccd6-fe6e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T07:00:06.766000", "message_id": "d385c2e6-fe65-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T07:00:06.766000", "message_id": "d385c2e6-fe65-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T07:00:06.766000", "message_id": "d385c2e6-fe65-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T07:00:06.766000", "message_id": "d385c2e6-fe65-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T07:00:06.766000", "message_id": "d385c2e6-fe65-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T06:00:59.227000", "message_id": "91004e76-fe5d-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T05:00:49.892000", "message_id": "29b86d8c-fe55-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T05:00:49.892000", "message_id": "29b86d8c-fe55-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T05:00:49.892000", "message_id": "29b86d8c-fe55-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T05:00:49.892000", "message_id": "29b86d8c-fe55-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T05:00:49.892000", "message_id": "29b86d8c-fe55-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T04:00:41.513000", "message_id": "c2f9c2c4-fe4c-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T04:00:41.513000", "message_id": "c2f9c2c4-fe4c-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T03:00:32.570000", "message_id": "5bddfae0-fe44-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T03:00:32.570000", "message_id": "5bddfae0-fe44-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T03:00:32.570000", "message_id": "5bddfae0-fe44-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T03:00:32.570000", "message_id": "5bddfae0-fe44-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T02:00:23.174000", "message_id": "f47d3648-fe3b-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T01:00:14.150000", "message_id": "8d62b378-fe33-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T00:00:05.657000", "message_id": "26858ff2-fe2b-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T23:00:58.933000", "message_id": "e474989a-fe22-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T23:00:58.933000", "message_id": "e474989a-fe22-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T22:00:49.272000", "message_id": "7cf35d12-fe1a-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T22:00:49.272000", "message_id": "7cf35d12-fe1a-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T22:00:49.272000", "message_id": "7cf35d12-fe1a-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T21:00:40.410000", "message_id": "15e5bfdc-fe12-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T21:00:40.410000", "message_id": "15e5bfdc-fe12-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T20:00:32.368000", "message_id": "af4fec82-fe09-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T19:00:24.263000", "message_id": "493bcb80-fe01-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T19:00:24.263000", "message_id": "493bcb80-fe01-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T18:00:16.147000", "message_id": "e21ce2fc-fdf8-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T17:00:08.240000", "message_id": "7ba581ee-fdf0-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T16:00:00.155000", "message_id": "150f6286-fde8-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T15:00:53.699000", "message_id": "d3377432-fddf-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T15:00:53.699000", "message_id": "d3377432-fddf-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T15:00:53.699000", "message_id": "d3377432-fddf-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T15:00:53.699000", "message_id": "d3377432-fddf-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T14:00:45.845000", "message_id": "6cc6f2fc-fdd7-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T13:00:37.656000", "message_id": "06235bba-fdcf-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T12:00:29.453000", "message_id": "9f73d0d2-fdc6-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T12:00:29.453000", "message_id": "9f73d0d2-fdc6-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T12:00:29.453000", "message_id": "9f73d0d2-fdc6-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T11:00:21.461000", "message_id": "38f1c948-fdbe-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T10:00:13.202000", "message_id": "d23d1066-fdb5-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T10:00:13.202000", "message_id": "d23d1066-fdb5-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T09:00:05.282000", "message_id": "6bbfba94-fdad-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T08:00:58.662000", "message_id": "29cfbf24-fda5-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T07:00:50.531000", "message_id": "c3344620-fd9c-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T07:00:50.531000", "message_id": "c3344620-fd9c-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T07:00:50.531000", "message_id": "c3344620-fd9c-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T07:00:50.531000", "message_id": "c3344620-fd9c-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T06:00:42.367000", "message_id": "5c96be14-fd94-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T05:17:47.079000", "message_id": "5d91619e-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.create.end", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "message": "Success", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.650633", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "image_name": "cirros-0.3.1-x86_64-uec", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T05:17:46.797000", "message_id": "5d6206a6-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.update", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "old_state": "building", "old_task_state": "spawning", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05T05:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 05:17:36", "launched_at": "2013-08-05T05:17:46.650633", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "None", "audit_period_ending": "2013-08-05T05:17:46.793501", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T05:17:46.797000", "message_id": "5d6206a6-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.update", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "old_state": "building", "old_task_state": "spawning", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05T05:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 05:17:36", "launched_at": "2013-08-05T05:17:46.650633", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "None", "audit_period_ending": "2013-08-05T05:17:46.793501", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T05:17:46.797000", "message_id": "5d6206a6-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.update", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "old_state": "building", "old_task_state": "spawning", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05T05:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 05:17:36", "launched_at": "2013-08-05T05:17:46.650633", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "None", "audit_period_ending": "2013-08-05T05:17:46.793501", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T05:17:41.748000", "message_id": "5a5f28bc-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "spawning", "event_type": "compute.instance.update", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "building", "old_state": "None", "old_task_state": "None", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05T05:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 05:17:36", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "spawning", "audit_period_ending": "2013-08-05T05:17:41.735190", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T05:17:39.517000", "message_id": "590cccee-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "spawning", "event_type": "compute.instance.update", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "building", "old_state": "building", "old_task_state": "block_device_mapping", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05T05:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 05:17:36", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "spawning", "audit_period_ending": "2013-08-05T05:17:39.404681", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T05:17:38.701000", "message_id": "58a4df6c-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "block_device_mapping", "event_type": "compute.instance.update", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "building", "old_state": "building", "old_task_state": "networking", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05T05:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 05:17:36", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "block_device_mapping", "audit_period_ending": "2013-08-05T05:17:38.639403", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T05:17:38.151000", "message_id": "585ec8d8-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "networking", "event_type": "compute.instance.update", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "building", "old_state": "building", "old_task_state": "None", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05T05:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 05:17:36", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "networking", "audit_period_ending": "2013-08-05T05:17:38.142735", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T05:17:37.895000", "message_id": "581b8d66-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.update", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "building", "old_state": "None", "old_task_state": "None", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05T05:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 05:17:36", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "None", "audit_period_ending": "2013-08-05T05:17:37.890921", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T05:17:37.618000", "message_id": "57f9550c-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "scheduling", "event_type": "compute.instance.create.start", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "message": "", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "building", "launched_at": "", "node": "None", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "image_name": "cirros-0.3.1-x86_64-uec", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T05:17:37.467000", "message_id": "57d6430a-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.update", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "building", "old_state": "building", "old_task_state": "scheduling", "node": "None", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05T05:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 05:17:36", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "None", "audit_period_ending": "2013-08-05T05:17:37.459100", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.ephemeral.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T05:17:36.885000", "message_id": "577664e4-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "scheduling", "event_type": "compute.instance.update", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "building", "old_state": "None", "old_task_state": "None", "node": "None", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "api.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05T05:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 05:17:36", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "scheduling", "audit_period_ending": "2013-08-05T05:17:36.882975", "os_type": "None"}, "counter_type": "gauge"}], "http://localhost:8777/v2/meters/instance?q.field=resource_id&q.value=1bd5a017-2777-4601-8c48-fd7569a4e485": [{"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-12T04:00:31.142000", "message_id": "bb509cb2-0303-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-12 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-12T03:00:51.411000", "message_id": "659cb9de-02fb-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-12 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-12T02:00:27.668000", "message_id": "f5a73a8a-02f2-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-12 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-12T02:00:27.668000", "message_id": "f5a73a8a-02f2-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-12 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-12T02:00:27.668000", "message_id": "f5a73a8a-02f2-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-12 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-12T02:00:27.668000", "message_id": "f5a73a8a-02f2-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-12 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-12T02:00:27.668000", "message_id": "f5a73a8a-02f2-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-12 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-12T01:00:47.078000", "message_id": "9f88697e-02ea-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-12 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-12T00:00:24.744000", "message_id": "3062b5ac-02e2-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-12T00:00:24.744000", "message_id": "3062b5ac-02e2-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-11T23:00:42.301000", "message_id": "d924195a-02d9-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-11T23:00:42.301000", "message_id": "d924195a-02d9-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-11T22:00:21.033000", "message_id": "6aaa047e-02d1-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-11T21:00:30.028000", "message_id": "0e3421d2-02c9-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-11T20:00:18.104000", "message_id": "a559ab3a-02c0-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-11T19:00:11.774000", "message_id": "3fccd45c-02b8-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-11T19:00:11.774000", "message_id": "3fccd45c-02b8-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-11T19:00:11.774000", "message_id": "3fccd45c-02b8-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-11T19:00:11.774000", "message_id": "3fccd45c-02b8-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-11T19:00:11.774000", "message_id": "3fccd45c-02b8-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-11T18:00:03.013000", "message_id": "d8d3ad6e-02af-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-11T18:00:03.013000", "message_id": "d8d3ad6e-02af-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-11T18:00:03.013000", "message_id": "d8d3ad6e-02af-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-11T18:00:03.013000", "message_id": "d8d3ad6e-02af-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-11T18:00:03.013000", "message_id": "d8d3ad6e-02af-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-11T17:00:49.713000", "message_id": "92ef4dec-02a7-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-11T16:00:45.695000", "message_id": "2edfc136-029f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-11T15:00:36.707000", "message_id": "c79b8d8c-0296-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-11T14:00:27.950000", "message_id": "60a63062-028e-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-11T14:00:27.950000", "message_id": "60a63062-028e-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-11T13:00:20.228000", "message_id": "fa537822-0285-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-11T12:00:11.526000", "message_id": "9361f3ee-027d-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-11T11:00:02.878000", "message_id": "2c689560-0275-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-11T10:00:29.361000", "message_id": "da6176fe-026c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-11T10:00:29.361000", "message_id": "da6176fe-026c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-11T10:00:29.361000", "message_id": "da6176fe-026c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-11T10:00:29.361000", "message_id": "da6176fe-026c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-11T10:00:29.361000", "message_id": "da6176fe-026c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-11T09:00:26.318000", "message_id": "76cfa5a0-0264-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-11T08:00:23.237000", "message_id": "13415860-025c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-11T07:00:19.843000", "message_id": "af76f00e-0253-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-11T06:00:16.440000", "message_id": "4ba5aa28-024b-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-11T05:00:05.254000", "message_id": "e335750c-0242-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-11T04:00:09.203000", "message_id": "83c6d46a-023a-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-11T03:00:02.149000", "message_id": "1dd531c2-0232-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-11T02:00:02.883000", "message_id": "bc741f2c-0229-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-11T02:00:02.883000", "message_id": "bc741f2c-0229-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-11T02:00:02.883000", "message_id": "bc741f2c-0229-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-11T02:00:02.883000", "message_id": "bc741f2c-0229-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-11T02:00:02.883000", "message_id": "bc741f2c-0229-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-11T01:00:00.622000", "message_id": "5960b9fc-0221-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-11T00:00:59.479000", "message_id": "1aac921a-0219-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-11T00:00:59.479000", "message_id": "1aac921a-0219-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-10T23:00:57.053000", "message_id": "b7750bf8-0210-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-10T22:00:51.234000", "message_id": "5233fa7c-0208-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-10T21:00:44.019000", "message_id": "ec269436-01ff-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-10T20:00:38.870000", "message_id": "8769dc54-01f7-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-10T19:00:35.321000", "message_id": "238259b2-01ef-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-10T18:00:31.889000", "message_id": "bfa4f470-01e6-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-10T17:00:28.401000", "message_id": "5bd4b834-01de-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-10T16:00:25.452000", "message_id": "f8508f16-01d5-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-10T15:00:22.242000", "message_id": "9498b834-01cd-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-10T15:00:22.242000", "message_id": "9498b834-01cd-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-10T15:00:22.242000", "message_id": "9498b834-01cd-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-10T15:00:22.242000", "message_id": "9498b834-01cd-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-10T15:00:22.242000", "message_id": "9498b834-01cd-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-10T14:00:19.164000", "message_id": "3101fe3c-01c5-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-10T13:00:15.701000", "message_id": "cd232006-01bc-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-10T12:00:04.292000", "message_id": "649a5372-01b4-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-10T12:00:04.292000", "message_id": "649a5372-01b4-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-10T12:00:04.292000", "message_id": "649a5372-01b4-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-10T11:00:00.305000", "message_id": "006d9150-01ac-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-10T10:00:57.836000", "message_id": "c0f4c708-01a3-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-10T10:00:57.836000", "message_id": "c0f4c708-01a3-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-10T09:00:54.289000", "message_id": "5d1a5bec-019b-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-10T08:00:51.340000", "message_id": "f98be706-0192-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-10T08:00:51.340000", "message_id": "f98be706-0192-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-10T08:00:51.340000", "message_id": "f98be706-0192-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-10T07:00:47.642000", "message_id": "95a11f8e-018a-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-10T06:00:44.511000", "message_id": "3201c99a-0182-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-10T05:00:41.357000", "message_id": "ce5e3700-0179-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-10T04:00:38.509000", "message_id": "6add9be2-0171-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-10T03:00:35.082000", "message_id": "07129a34-0169-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-10T02:00:32.213000", "message_id": "a3a876d8-0160-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-10T01:00:28.534000", "message_id": "3fa18d26-0158-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-10T01:00:28.534000", "message_id": "3fa18d26-0158-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-10T00:00:24.254000", "message_id": "db4bc11e-014f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-10T00:00:24.254000", "message_id": "db4bc11e-014f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-10T00:00:24.254000", "message_id": "db4bc11e-014f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-10T00:00:24.254000", "message_id": "db4bc11e-014f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-10T00:00:24.254000", "message_id": "db4bc11e-014f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T23:00:20.550000", "message_id": "7755b3e8-0147-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T23:00:20.550000", "message_id": "7755b3e8-0147-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T23:00:20.550000", "message_id": "7755b3e8-0147-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T23:00:20.550000", "message_id": "7755b3e8-0147-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T23:00:20.550000", "message_id": "7755b3e8-0147-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T22:00:17.007000", "message_id": "136dd886-013f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T22:00:17.007000", "message_id": "136dd886-013f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T21:00:13.474000", "message_id": "af9350dc-0136-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T20:00:10.420000", "message_id": "4c0dc158-012e-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T19:00:07.041000", "message_id": "e82abe1e-0125-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T18:00:05.394000", "message_id": "857c1db0-011d-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T17:00:01.542000", "message_id": "215fbace-0115-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T16:00:59.768000", "message_id": "e2621d7e-010c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T16:00:59.768000", "message_id": "e2621d7e-010c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T15:00:53.175000", "message_id": "7cb5e8c8-0104-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T14:00:42.332000", "message_id": "145eeb42-00fc-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T14:00:42.332000", "message_id": "145eeb42-00fc-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T14:00:42.332000", "message_id": "145eeb42-00fc-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T13:00:31.990000", "message_id": "ac7c574c-00f3-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T12:00:21.678000", "message_id": "4488a648-00eb-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T11:00:11.764000", "message_id": "dce54e90-00e2-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T10:00:02.034000", "message_id": "75604b92-00da-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T09:00:53.763000", "message_id": "325a0fde-00d2-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T08:00:44.814000", "message_id": "cb3baf7c-00c9-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T08:00:44.814000", "message_id": "cb3baf7c-00c9-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T08:00:44.814000", "message_id": "cb3baf7c-00c9-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T08:00:44.814000", "message_id": "cb3baf7c-00c9-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T08:00:44.814000", "message_id": "cb3baf7c-00c9-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T07:00:35.666000", "message_id": "64137cb0-00c1-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T06:00:27.504000", "message_id": "fd7ccdba-00b8-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T06:00:27.504000", "message_id": "fd7ccdba-00b8-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T06:00:27.504000", "message_id": "fd7ccdba-00b8-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T05:00:17.871000", "message_id": "95f6decc-00b0-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T04:00:02.390000", "message_id": "2af25334-00a8-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T04:00:02.390000", "message_id": "2af25334-00a8-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T04:00:02.390000", "message_id": "2af25334-00a8-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T04:00:02.390000", "message_id": "2af25334-00a8-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T03:00:53.023000", "message_id": "e7619358-009f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T02:00:37.365000", "message_id": "7c449a28-0097-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T01:00:26.946000", "message_id": "14356f78-008f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T00:00:17.110000", "message_id": "acabd28c-0086-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T23:00:07.618000", "message_id": "4527ec5c-007e-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T23:00:07.618000", "message_id": "4527ec5c-007e-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T23:00:07.618000", "message_id": "4527ec5c-007e-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T23:00:07.618000", "message_id": "4527ec5c-007e-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T23:00:07.618000", "message_id": "4527ec5c-007e-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T22:01:01.409000", "message_id": "037fd786-0076-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T21:00:52.353000", "message_id": "9c4d0cf8-006d-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T20:00:43.582000", "message_id": "355a43f6-0065-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T20:00:43.582000", "message_id": "355a43f6-0065-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T20:00:43.582000", "message_id": "355a43f6-0065-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T20:00:43.582000", "message_id": "355a43f6-0065-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T20:00:43.582000", "message_id": "355a43f6-0065-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T19:00:36.837000", "message_id": "cf8d8f18-005c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T18:00:29.442000", "message_id": "695ddb60-0054-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T17:00:22.425000", "message_id": "0367baa4-004c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T16:00:14.038000", "message_id": "9caad920-0043-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T15:00:07.814000", "message_id": "373bc0ac-003b-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T14:01:00.762000", "message_id": "f4e94e0c-0032-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T13:00:51.729000", "message_id": "8df10742-002a-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T12:00:42.662000", "message_id": "269d711e-0022-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T11:00:35.831000", "message_id": "c0c88520-0019-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T10:00:28.533000", "message_id": "5aacb21e-0011-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T10:00:28.533000", "message_id": "5aacb21e-0011-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T10:00:28.533000", "message_id": "5aacb21e-0011-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T10:00:28.533000", "message_id": "5aacb21e-0011-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T10:00:28.533000", "message_id": "5aacb21e-0011-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T09:00:25.664000", "message_id": "f727d5be-0008-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T08:00:23.300000", "message_id": "93fef84e-0000-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T08:00:23.300000", "message_id": "93fef84e-0000-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T08:00:23.300000", "message_id": "93fef84e-0000-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T08:00:23.300000", "message_id": "93fef84e-0000-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T08:00:23.300000", "message_id": "93fef84e-0000-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T07:00:21.349000", "message_id": "311ef614-fff8-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T06:00:19.415000", "message_id": "ce356932-ffef-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T05:00:17.584000", "message_id": "6b59e8a4-ffe7-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T04:00:15.987000", "message_id": "089c3972-ffdf-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T03:00:13.949000", "message_id": "a596e35c-ffd6-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T02:00:12.162000", "message_id": "42d5925c-ffce-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T01:00:10.255000", "message_id": "dfece40e-ffc5-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T00:00:08.704000", "message_id": "7d3bae7e-ffbd-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-07T23:00:03.945000", "message_id": "188afec4-ffb5-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-07T22:00:01.424000", "message_id": "b56523cc-ffac-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-07T21:00:58.438000", "message_id": "759cb9ec-ffa4-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-07T21:00:58.438000", "message_id": "759cb9ec-ffa4-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-07T21:00:58.438000", "message_id": "759cb9ec-ffa4-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-07T20:00:55.839000", "message_id": "12410f18-ff9c-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-07T19:00:51.172000", "message_id": "adb083ba-ff93-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-07T18:00:49.666000", "message_id": "4b0309f2-ff8b-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-07T17:00:47.566000", "message_id": "e7f52424-ff82-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-07T17:00:47.566000", "message_id": "e7f52424-ff82-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-07T17:00:47.566000", "message_id": "e7f52424-ff82-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-07T17:00:47.566000", "message_id": "e7f52424-ff82-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-07T16:00:45.332000", "message_id": "84e22506-ff7a-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-07T15:00:43.085000", "message_id": "21c1d17c-ff72-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-07T14:00:40.859000", "message_id": "beb519fc-ff69-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-07T13:00:38.070000", "message_id": "5b38b94a-ff61-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-07T12:00:35.603000", "message_id": "f8071252-ff58-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-07T11:00:33.146000", "message_id": "94c9f6da-ff50-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-07T10:00:28.936000", "message_id": "308396fc-ff48-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-07T09:00:26.206000", "message_id": "cd240c34-ff3f-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-07T08:00:23.782000", "message_id": "69e9ecd6-ff37-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-07T07:00:21.621000", "message_id": "06e74186-ff2f-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-07T06:00:16.410000", "message_id": "a1fffe6e-ff26-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-07T06:00:16.410000", "message_id": "a1fffe6e-ff26-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-07T05:00:13.119000", "message_id": "3e4f2f14-ff1e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-07T04:00:10.514000", "message_id": "daeae452-ff15-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-07T03:00:06.832000", "message_id": "76f0fa34-ff0d-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-07T02:00:03.957000", "message_id": "137f77f8-ff05-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-07T02:00:03.957000", "message_id": "137f77f8-ff05-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-07T02:00:03.957000", "message_id": "137f77f8-ff05-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-07T02:00:03.957000", "message_id": "137f77f8-ff05-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-07T02:00:03.957000", "message_id": "137f77f8-ff05-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-07T01:00:01.959000", "message_id": "b0829f84-fefc-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-07T01:00:01.959000", "message_id": "b0829f84-fefc-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-07T01:00:01.959000", "message_id": "b0829f84-fefc-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-07T01:00:01.959000", "message_id": "b0829f84-fefc-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-07T01:00:01.959000", "message_id": "b0829f84-fefc-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-07T00:00:01.237000", "message_id": "4e47d62a-fef4-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T23:00:36.449000", "message_id": "018bd668-feec-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T23:00:36.449000", "message_id": "018bd668-feec-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T23:00:36.449000", "message_id": "018bd668-feec-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T23:00:36.449000", "message_id": "018bd668-feec-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T23:00:36.449000", "message_id": "018bd668-feec-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T22:00:00.309000", "message_id": "8a436ae2-fee3-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T22:00:00.309000", "message_id": "8a436ae2-fee3-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T22:00:00.309000", "message_id": "8a436ae2-fee3-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T21:00:12.926000", "message_id": "3008e686-fedb-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T20:00:01.640000", "message_id": "c794e9b8-fed2-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T19:00:52.317000", "message_id": "83e5a868-feca-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T18:00:45.959000", "message_id": "1e64f7d0-fec2-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T17:00:34.412000", "message_id": "b5cca554-feb9-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T16:00:25.287000", "message_id": "4e845f34-feb1-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T15:00:16.270000", "message_id": "e766fbac-fea8-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T14:00:07.305000", "message_id": "8042b6b2-fea0-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T14:00:07.305000", "message_id": "8042b6b2-fea0-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T14:00:07.305000", "message_id": "8042b6b2-fea0-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T14:00:07.305000", "message_id": "8042b6b2-fea0-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T14:00:07.305000", "message_id": "8042b6b2-fea0-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T13:01:00.163000", "message_id": "3dfb9358-fe98-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T13:01:00.163000", "message_id": "3dfb9358-fe98-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T13:01:00.163000", "message_id": "3dfb9358-fe98-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T13:01:00.163000", "message_id": "3dfb9358-fe98-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T13:01:00.163000", "message_id": "3dfb9358-fe98-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T12:00:50.921000", "message_id": "d6bab17c-fe8f-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T11:00:42.225000", "message_id": "6fcf11ae-fe87-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T10:00:33.218000", "message_id": "08a25372-fe7f-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T09:00:25.699000", "message_id": "a25a982a-fe76-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T09:00:25.699000", "message_id": "a25a982a-fe76-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T09:00:25.699000", "message_id": "a25a982a-fe76-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T09:00:25.699000", "message_id": "a25a982a-fe76-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T09:00:25.699000", "message_id": "a25a982a-fe76-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T08:00:15.445000", "message_id": "3a8d8c8c-fe6e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T07:00:06.766000", "message_id": "d3912f6e-fe65-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T06:00:59.227000", "message_id": "910c01e4-fe5d-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T05:00:49.892000", "message_id": "29c816c4-fe55-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T04:00:41.513000", "message_id": "c30313e2-fe4c-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T03:00:32.570000", "message_id": "5bf19474-fe44-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T02:00:23.174000", "message_id": "f488d84a-fe3b-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T01:00:14.150000", "message_id": "8d6b0f78-fe33-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T00:00:05.657000", "message_id": "268fce54-fe2b-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T23:00:58.933000", "message_id": "e47c3a8c-fe22-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T22:00:49.272000", "message_id": "7d047566-fe1a-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T21:00:40.410000", "message_id": "15edb2b4-fe12-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T21:00:40.410000", "message_id": "15edb2b4-fe12-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T21:00:40.410000", "message_id": "15edb2b4-fe12-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T21:00:40.410000", "message_id": "15edb2b4-fe12-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T20:00:32.368000", "message_id": "af581920-fe09-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T19:00:24.263000", "message_id": "49429bd6-fe01-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T19:00:24.263000", "message_id": "49429bd6-fe01-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T18:00:16.147000", "message_id": "e226ef2c-fdf8-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T17:00:08.240000", "message_id": "7bb5a948-fdf0-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T17:00:08.240000", "message_id": "7bb5a948-fdf0-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T16:00:00.155000", "message_id": "1517c336-fde8-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T15:00:53.699000", "message_id": "d341cd2e-fddf-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T14:00:45.845000", "message_id": "6cd1c1d2-fdd7-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T13:00:37.656000", "message_id": "062a6cac-fdcf-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T12:00:29.453000", "message_id": "9f8045c4-fdc6-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T11:00:21.461000", "message_id": "38fca4a8-fdbe-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T10:00:13.202000", "message_id": "d2489a3a-fdb5-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T09:00:05.282000", "message_id": "6bc8fdfc-fdad-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T08:00:58.662000", "message_id": "29de1d9e-fda5-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T07:00:50.531000", "message_id": "c33c1602-fd9c-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T06:00:42.367000", "message_id": "5c9cdb32-fd94-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T06:00:42.367000", "message_id": "5c9cdb32-fd94-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T06:00:42.367000", "message_id": "5c9cdb32-fd94-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T05:17:47.079000", "message_id": "5d971c06-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.create.end", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "message": "Success", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.650633", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "image_name": "cirros-0.3.1-x86_64-uec", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T05:17:47.079000", "message_id": "5d971c06-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.create.end", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "message": "Success", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.650633", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "image_name": "cirros-0.3.1-x86_64-uec", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T05:17:47.079000", "message_id": "5d971c06-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.create.end", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "message": "Success", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.650633", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "image_name": "cirros-0.3.1-x86_64-uec", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T05:17:46.797000", "message_id": "5d694f60-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.update", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "old_state": "building", "old_task_state": "spawning", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05T05:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 05:17:36", "launched_at": "2013-08-05T05:17:46.650633", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "None", "audit_period_ending": "2013-08-05T05:17:46.793501", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T05:17:46.797000", "message_id": "5d694f60-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.update", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "old_state": "building", "old_task_state": "spawning", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05T05:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 05:17:36", "launched_at": "2013-08-05T05:17:46.650633", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "None", "audit_period_ending": "2013-08-05T05:17:46.793501", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T05:17:46.797000", "message_id": "5d694f60-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.update", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "old_state": "building", "old_task_state": "spawning", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05T05:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 05:17:36", "launched_at": "2013-08-05T05:17:46.650633", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "None", "audit_period_ending": "2013-08-05T05:17:46.793501", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T05:17:41.748000", "message_id": "5a655b6a-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "spawning", "event_type": "compute.instance.update", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "building", "old_state": "None", "old_task_state": "None", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05T05:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 05:17:36", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "spawning", "audit_period_ending": "2013-08-05T05:17:41.735190", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T05:17:39.517000", "message_id": "590f6dfa-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "spawning", "event_type": "compute.instance.update", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "building", "old_state": "building", "old_task_state": "block_device_mapping", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05T05:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 05:17:36", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "spawning", "audit_period_ending": "2013-08-05T05:17:39.404681", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T05:17:38.701000", "message_id": "58b10008-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "block_device_mapping", "event_type": "compute.instance.update", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "building", "old_state": "building", "old_task_state": "networking", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05T05:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 05:17:36", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "block_device_mapping", "audit_period_ending": "2013-08-05T05:17:38.639403", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T05:17:38.701000", "message_id": "58b10008-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "block_device_mapping", "event_type": "compute.instance.update", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "building", "old_state": "building", "old_task_state": "networking", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05T05:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 05:17:36", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "block_device_mapping", "audit_period_ending": "2013-08-05T05:17:38.639403", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T05:17:38.701000", "message_id": "58b10008-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "block_device_mapping", "event_type": "compute.instance.update", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "building", "old_state": "building", "old_task_state": "networking", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05T05:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 05:17:36", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "block_device_mapping", "audit_period_ending": "2013-08-05T05:17:38.639403", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T05:17:38.701000", "message_id": "58b10008-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "block_device_mapping", "event_type": "compute.instance.update", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "building", "old_state": "building", "old_task_state": "networking", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05T05:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 05:17:36", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "block_device_mapping", "audit_period_ending": "2013-08-05T05:17:38.639403", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T05:17:38.151000", "message_id": "587f0472-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "networking", "event_type": "compute.instance.update", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "building", "old_state": "building", "old_task_state": "None", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05T05:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 05:17:36", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "networking", "audit_period_ending": "2013-08-05T05:17:38.142735", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T05:17:37.895000", "message_id": "5828a38e-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.update", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "building", "old_state": "None", "old_task_state": "None", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05T05:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 05:17:36", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "None", "audit_period_ending": "2013-08-05T05:17:37.890921", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T05:17:37.618000", "message_id": "580a5640-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "scheduling", "event_type": "compute.instance.create.start", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "message": "", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "building", "launched_at": "", "node": "None", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "image_name": "cirros-0.3.1-x86_64-uec", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T05:17:37.467000", "message_id": "57d7b1ea-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.update", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "building", "old_state": "building", "old_task_state": "scheduling", "node": "None", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05T05:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 05:17:36", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "None", "audit_period_ending": "2013-08-05T05:17:37.459100", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T05:17:36.885000", "message_id": "57787630-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "scheduling", "event_type": "compute.instance.update", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "building", "old_state": "None", "old_task_state": "None", "node": "None", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "api.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05T05:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 05:17:36", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "scheduling", "audit_period_ending": "2013-08-05T05:17:36.882975", "os_type": "None"}, "counter_type": "gauge"}], "http://localhost:8777/v2/meters/instance:m1.nano?q.field=resource_id&q.value=1bd5a017-2777-4601-8c48-fd7569a4e485": [{"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-12T04:00:31.142000", "message_id": "bb5763bc-0303-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-12 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-12T03:00:51.411000", "message_id": "65a4b6d4-02fb-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-12 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-12T02:00:27.668000", "message_id": "f5b3f3f6-02f2-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-12 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-12T01:00:47.078000", "message_id": "9f96dde2-02ea-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-12 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-12T01:00:47.078000", "message_id": "9f96dde2-02ea-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-12 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-12T01:00:47.078000", "message_id": "9f96dde2-02ea-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-12 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-12T01:00:47.078000", "message_id": "9f96dde2-02ea-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-12 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-12T01:00:47.078000", "message_id": "9f96dde2-02ea-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-12 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-12T00:00:24.744000", "message_id": "307130a0-02e2-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-11T23:00:42.301000", "message_id": "d9312492-02d9-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-11T22:00:21.033000", "message_id": "6ab497ae-02d1-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-11T21:00:30.028000", "message_id": "0e3531da-02c9-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-11T20:00:18.104000", "message_id": "a5641e6c-02c0-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-11T20:00:18.104000", "message_id": "a5641e6c-02c0-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-11T20:00:18.104000", "message_id": "a5641e6c-02c0-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-11T20:00:18.104000", "message_id": "a5641e6c-02c0-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-11T19:00:11.774000", "message_id": "3fda09b0-02b8-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-11T18:00:03.013000", "message_id": "d8e2105c-02af-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-11T17:00:49.713000", "message_id": "92f6c9aa-02a7-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-11T16:00:45.695000", "message_id": "2ee803aa-029f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-11T16:00:45.695000", "message_id": "2ee803aa-029f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-11T16:00:45.695000", "message_id": "2ee803aa-029f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-11T15:00:36.707000", "message_id": "c7a58ce2-0296-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-11T14:00:27.950000", "message_id": "60b66824-028e-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-11T14:00:27.950000", "message_id": "60b66824-028e-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-11T13:00:20.228000", "message_id": "fa5da69e-0285-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-11T13:00:20.228000", "message_id": "fa5da69e-0285-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-11T13:00:20.228000", "message_id": "fa5da69e-0285-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-11T13:00:20.228000", "message_id": "fa5da69e-0285-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-11T12:00:11.526000", "message_id": "936fc956-027d-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-11T11:00:02.878000", "message_id": "2c752208-0275-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-11T10:00:29.361000", "message_id": "da7151fa-026c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-11T09:00:26.318000", "message_id": "76da087e-0264-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-11T08:00:23.237000", "message_id": "13424eaa-025c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-11T07:00:19.843000", "message_id": "af77f71a-0253-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-11T06:00:16.440000", "message_id": "4ba69c26-024b-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-11T05:00:05.254000", "message_id": "e33f4582-0242-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-11T05:00:05.254000", "message_id": "e33f4582-0242-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-11T04:00:09.203000", "message_id": "83d077d6-023a-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-11T04:00:09.203000", "message_id": "83d077d6-023a-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-11T04:00:09.203000", "message_id": "83d077d6-023a-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-11T04:00:09.203000", "message_id": "83d077d6-023a-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-11T04:00:09.203000", "message_id": "83d077d6-023a-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-11T03:00:02.149000", "message_id": "1df07194-0232-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-11T03:00:02.149000", "message_id": "1df07194-0232-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-11T02:00:02.883000", "message_id": "bc7e5ee2-0229-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-11T01:00:00.622000", "message_id": "597019b0-0221-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-11T00:00:59.479000", "message_id": "1ab360d6-0219-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-10T23:00:57.053000", "message_id": "b785c948-0210-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-10T22:00:51.234000", "message_id": "523f95ee-0208-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-10T21:00:44.019000", "message_id": "ec27ec32-01ff-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-10T20:00:38.870000", "message_id": "876afa8a-01f7-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-10T19:00:35.321000", "message_id": "23918bd0-01ef-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-10T18:00:31.889000", "message_id": "bfafbc48-01e6-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-10T17:00:28.401000", "message_id": "5bd5e7b8-01de-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-10T16:00:25.452000", "message_id": "f8610fee-01d5-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-10T15:00:22.242000", "message_id": "94a8ce54-01cd-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-10T14:00:19.164000", "message_id": "311289a0-01c5-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-10T14:00:19.164000", "message_id": "311289a0-01c5-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-10T14:00:19.164000", "message_id": "311289a0-01c5-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-10T14:00:19.164000", "message_id": "311289a0-01c5-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-10T13:00:15.701000", "message_id": "cd30de9e-01bc-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-10T12:00:04.292000", "message_id": "64a29d84-01b4-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-10T12:00:04.292000", "message_id": "64a29d84-01b4-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-10T11:00:00.305000", "message_id": "00712a9a-01ac-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-10T11:00:00.305000", "message_id": "00712a9a-01ac-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-10T11:00:00.305000", "message_id": "00712a9a-01ac-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-10T10:00:57.836000", "message_id": "c108c500-01a3-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-10T09:00:54.289000", "message_id": "5d2e6074-019b-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-10T09:00:54.289000", "message_id": "5d2e6074-019b-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-10T08:00:51.340000", "message_id": "f99b9610-0192-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-10T08:00:51.340000", "message_id": "f99b9610-0192-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-10T08:00:51.340000", "message_id": "f99b9610-0192-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-10T08:00:51.340000", "message_id": "f99b9610-0192-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-10T07:00:47.642000", "message_id": "95ac7aaa-018a-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-10T06:00:44.511000", "message_id": "3202da88-0182-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-10T05:00:41.357000", "message_id": "ce6edb28-0179-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-10T04:00:38.509000", "message_id": "6aea9928-0171-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-10T03:00:35.082000", "message_id": "0720280c-0169-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-10T03:00:35.082000", "message_id": "0720280c-0169-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-10T03:00:35.082000", "message_id": "0720280c-0169-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-10T02:00:32.213000", "message_id": "a3b70176-0160-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-10T01:00:28.534000", "message_id": "3fb300b0-0158-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-10T01:00:28.534000", "message_id": "3fb300b0-0158-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-10T00:00:24.254000", "message_id": "db563428-014f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T23:00:20.550000", "message_id": "776768cc-0147-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T23:00:20.550000", "message_id": "776768cc-0147-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T23:00:20.550000", "message_id": "776768cc-0147-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T22:00:17.007000", "message_id": "137a6272-013f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T21:00:13.474000", "message_id": "afa0f8c2-0136-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T20:00:10.420000", "message_id": "4c15b020-012e-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T19:00:07.041000", "message_id": "e83306e6-0125-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T18:00:05.394000", "message_id": "8585de04-011d-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T17:00:01.542000", "message_id": "216cffcc-0115-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T16:00:59.768000", "message_id": "e26f1d8a-010c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T16:00:59.768000", "message_id": "e26f1d8a-010c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T16:00:59.768000", "message_id": "e26f1d8a-010c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T15:00:53.175000", "message_id": "7cb75ea6-0104-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T14:00:42.332000", "message_id": "1474a18a-00fc-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T14:00:42.332000", "message_id": "1474a18a-00fc-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T14:00:42.332000", "message_id": "1474a18a-00fc-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T13:00:31.990000", "message_id": "ac870d9a-00f3-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T13:00:31.990000", "message_id": "ac870d9a-00f3-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T13:00:31.990000", "message_id": "ac870d9a-00f3-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T13:00:31.990000", "message_id": "ac870d9a-00f3-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T12:00:21.678000", "message_id": "449877f8-00eb-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T11:00:11.764000", "message_id": "dce65542-00e2-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T10:00:02.034000", "message_id": "7565cb30-00da-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T09:00:53.763000", "message_id": "325b3e7c-00d2-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T08:00:44.814000", "message_id": "cb464806-00c9-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T08:00:44.814000", "message_id": "cb464806-00c9-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T07:00:35.666000", "message_id": "642163fc-00c1-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T06:00:27.504000", "message_id": "fd88d09c-00b8-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T05:00:17.871000", "message_id": "96043388-00b0-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T04:00:02.390000", "message_id": "2b003512-00a8-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T03:00:53.023000", "message_id": "e76c9f46-009f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T02:00:37.365000", "message_id": "7c4ecebc-0097-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T01:00:26.946000", "message_id": "143fc464-008f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T00:00:17.110000", "message_id": "acba6234-0086-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T23:00:07.618000", "message_id": "4534a4c4-007e-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T22:01:01.409000", "message_id": "0381a3f4-0076-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T21:00:52.353000", "message_id": "9c54db86-006d-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T21:00:52.353000", "message_id": "9c54db86-006d-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T21:00:52.353000", "message_id": "9c54db86-006d-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T21:00:52.353000", "message_id": "9c54db86-006d-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T21:00:52.353000", "message_id": "9c54db86-006d-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T20:00:43.582000", "message_id": "356e4f18-0065-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T20:00:43.582000", "message_id": "356e4f18-0065-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T20:00:43.582000", "message_id": "356e4f18-0065-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T20:00:43.582000", "message_id": "356e4f18-0065-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T19:00:36.837000", "message_id": "cf9766e6-005c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T19:00:36.837000", "message_id": "cf9766e6-005c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T19:00:36.837000", "message_id": "cf9766e6-005c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T19:00:36.837000", "message_id": "cf9766e6-005c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T19:00:36.837000", "message_id": "cf9766e6-005c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T18:00:29.442000", "message_id": "696d68b4-0054-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T18:00:29.442000", "message_id": "696d68b4-0054-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T17:00:22.425000", "message_id": "03737ef2-004c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T16:00:14.038000", "message_id": "9cb94c94-0043-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T15:00:07.814000", "message_id": "3746dfc8-003b-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T15:00:07.814000", "message_id": "3746dfc8-003b-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T14:01:00.762000", "message_id": "f4eae3a2-0032-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T13:00:51.729000", "message_id": "8df247ba-002a-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T12:00:42.662000", "message_id": "26a94232-0022-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T11:00:35.831000", "message_id": "c0d22454-0019-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T10:00:28.533000", "message_id": "5abc1416-0011-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T09:00:25.664000", "message_id": "f733eb24-0008-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T08:00:23.300000", "message_id": "940dfc36-0000-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T07:00:21.349000", "message_id": "312a50ea-fff8-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T06:00:19.415000", "message_id": "ce430a7e-ffef-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T05:00:17.584000", "message_id": "6b5ebda2-ffe7-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T04:00:15.987000", "message_id": "08a9cdc6-ffdf-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T03:00:13.949000", "message_id": "a5a08da8-ffd6-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T02:00:12.162000", "message_id": "42d6b11e-ffce-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T01:00:10.255000", "message_id": "dff80960-ffc5-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T00:00:08.704000", "message_id": "7d3f8f8a-ffbd-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-07T23:00:03.945000", "message_id": "189b4ce8-ffb5-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-07T22:00:01.424000", "message_id": "b5678acc-ffac-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-07T21:00:58.438000", "message_id": "75a494f0-ffa4-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-07T20:00:55.839000", "message_id": "12429e14-ff9c-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-07T19:00:51.172000", "message_id": "adb93474-ff93-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-07T19:00:51.172000", "message_id": "adb93474-ff93-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-07T18:00:49.666000", "message_id": "4b12f01a-ff8b-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-07T17:00:47.566000", "message_id": "e7ff2abe-ff82-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-07T16:00:45.332000", "message_id": "84eee5ca-ff7a-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-07T15:00:43.085000", "message_id": "21c76a7e-ff72-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-07T14:00:40.859000", "message_id": "bec7bb3e-ff69-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-07T13:00:38.070000", "message_id": "5b3ff91c-ff61-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-07T13:00:38.070000", "message_id": "5b3ff91c-ff61-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-07T13:00:38.070000", "message_id": "5b3ff91c-ff61-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-07T13:00:38.070000", "message_id": "5b3ff91c-ff61-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-07T13:00:38.070000", "message_id": "5b3ff91c-ff61-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-07T12:00:35.603000", "message_id": "f80822aa-ff58-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-07T11:00:33.146000", "message_id": "94d511c8-ff50-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-07T10:00:28.936000", "message_id": "3093d0b2-ff48-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-07T09:00:26.206000", "message_id": "cd2d0532-ff3f-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-07T08:00:23.782000", "message_id": "69fb21fe-ff37-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-07T07:00:21.621000", "message_id": "06f395c6-ff2f-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-07T06:00:16.410000", "message_id": "a20c876a-ff26-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-07T05:00:13.119000", "message_id": "3e5b7c74-ff1e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-07T04:00:10.514000", "message_id": "daf97f62-ff15-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-07T03:00:06.832000", "message_id": "76fbf0b0-ff0d-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-07T02:00:03.957000", "message_id": "13943b66-ff05-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-07T01:00:01.959000", "message_id": "b08e7c50-fefc-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-07T00:00:01.237000", "message_id": "4e522cec-fef4-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T23:00:36.449000", "message_id": "01971c62-feec-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T22:00:00.309000", "message_id": "8a553b32-fee3-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T21:00:12.926000", "message_id": "30153df0-fedb-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T20:00:01.640000", "message_id": "c7a1e5d2-fed2-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T19:00:52.317000", "message_id": "83ef2a8c-feca-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T18:00:45.959000", "message_id": "1e6d736a-fec2-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T18:00:45.959000", "message_id": "1e6d736a-fec2-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T18:00:45.959000", "message_id": "1e6d736a-fec2-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T18:00:45.959000", "message_id": "1e6d736a-fec2-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T18:00:45.959000", "message_id": "1e6d736a-fec2-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T17:00:34.412000", "message_id": "b5db072a-feb9-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T16:00:25.287000", "message_id": "4e85748c-feb1-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T15:00:16.270000", "message_id": "e7735dde-fea8-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T14:00:07.305000", "message_id": "804e72c2-fea0-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T13:01:00.163000", "message_id": "3e06aad6-fe98-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T13:01:00.163000", "message_id": "3e06aad6-fe98-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T12:00:50.921000", "message_id": "d6c5acd0-fe8f-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T12:00:50.921000", "message_id": "d6c5acd0-fe8f-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T11:00:42.225000", "message_id": "6fd57102-fe87-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T11:00:42.225000", "message_id": "6fd57102-fe87-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T11:00:42.225000", "message_id": "6fd57102-fe87-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T10:00:33.218000", "message_id": "08ac2c94-fe7f-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T10:00:33.218000", "message_id": "08ac2c94-fe7f-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T10:00:33.218000", "message_id": "08ac2c94-fe7f-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T10:00:33.218000", "message_id": "08ac2c94-fe7f-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T09:00:25.699000", "message_id": "a2661682-fe76-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T08:00:15.445000", "message_id": "3a9e489c-fe6e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T07:00:06.766000", "message_id": "d3a11c12-fe65-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T06:00:59.227000", "message_id": "911a6658-fe5d-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T05:00:49.892000", "message_id": "29d7ed38-fe55-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T04:00:41.513000", "message_id": "c3043312-fe4c-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T03:00:32.570000", "message_id": "5bf6b350-fe44-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T02:00:23.174000", "message_id": "f48a32ee-fe3b-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T01:00:14.150000", "message_id": "8d7010ea-fe33-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T00:00:05.657000", "message_id": "269d2180-fe2b-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T23:00:58.933000", "message_id": "e48e8b1a-fe22-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T23:00:58.933000", "message_id": "e48e8b1a-fe22-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T22:00:49.272000", "message_id": "7d18801a-fe1a-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T21:00:40.410000", "message_id": "15f60e96-fe12-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T20:00:32.368000", "message_id": "af5e8bca-fe09-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T19:00:24.263000", "message_id": "494ed180-fe01-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T18:00:16.147000", "message_id": "e2318c20-fdf8-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T17:00:08.240000", "message_id": "7bbc09b4-fdf0-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T16:00:00.155000", "message_id": "151e5016-fde8-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T15:00:53.699000", "message_id": "d348df7e-fddf-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T14:00:45.845000", "message_id": "6cdbec2a-fdd7-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T13:00:37.656000", "message_id": "06311bba-fdcf-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T13:00:37.656000", "message_id": "06311bba-fdcf-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T12:00:29.453000", "message_id": "9f8993f4-fdc6-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T12:00:29.453000", "message_id": "9f8993f4-fdc6-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T12:00:29.453000", "message_id": "9f8993f4-fdc6-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T11:00:21.461000", "message_id": "3906c9e2-fdbe-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T10:00:13.202000", "message_id": "d249ca0e-fdb5-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T09:00:05.282000", "message_id": "6bd41ade-fdad-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T08:00:58.662000", "message_id": "29e1f464-fda5-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T07:00:50.531000", "message_id": "c3420544-fd9c-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T07:00:50.531000", "message_id": "c3420544-fd9c-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T06:00:42.367000", "message_id": "5ca2faa8-fd94-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T05:17:47.079000", "message_id": "5d9d7cea-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.create.end", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "message": "Success", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.650633", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "image_name": "cirros-0.3.1-x86_64-uec", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T05:17:46.797000", "message_id": "5d7372f6-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.update", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "old_state": "building", "old_task_state": "spawning", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05T05:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 05:17:36", "launched_at": "2013-08-05T05:17:46.650633", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "None", "audit_period_ending": "2013-08-05T05:17:46.793501", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T05:17:41.748000", "message_id": "5a697fce-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "spawning", "event_type": "compute.instance.update", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "building", "old_state": "None", "old_task_state": "None", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05T05:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 05:17:36", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "spawning", "audit_period_ending": "2013-08-05T05:17:41.735190", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T05:17:39.517000", "message_id": "5913fd70-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "spawning", "event_type": "compute.instance.update", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "building", "old_state": "building", "old_task_state": "block_device_mapping", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05T05:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 05:17:36", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "spawning", "audit_period_ending": "2013-08-05T05:17:39.404681", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T05:17:38.701000", "message_id": "58cc96b0-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "block_device_mapping", "event_type": "compute.instance.update", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "building", "old_state": "building", "old_task_state": "networking", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05T05:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 05:17:36", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "block_device_mapping", "audit_period_ending": "2013-08-05T05:17:38.639403", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T05:17:38.151000", "message_id": "5895cfe0-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "networking", "event_type": "compute.instance.update", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "building", "old_state": "building", "old_task_state": "None", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05T05:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 05:17:36", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "networking", "audit_period_ending": "2013-08-05T05:17:38.142735", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T05:17:37.895000", "message_id": "583d037e-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.update", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "building", "old_state": "None", "old_task_state": "None", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05T05:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 05:17:36", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "None", "audit_period_ending": "2013-08-05T05:17:37.890921", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T05:17:37.618000", "message_id": "58185d62-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "scheduling", "event_type": "compute.instance.create.start", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "message": "", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "building", "launched_at": "", "node": "None", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "image_name": "cirros-0.3.1-x86_64-uec", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T05:17:37.618000", "message_id": "58185d62-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "scheduling", "event_type": "compute.instance.create.start", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "message": "", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "building", "launched_at": "", "node": "None", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "image_name": "cirros-0.3.1-x86_64-uec", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T05:17:37.618000", "message_id": "58185d62-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "scheduling", "event_type": "compute.instance.create.start", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "message": "", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "building", "launched_at": "", "node": "None", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "image_name": "cirros-0.3.1-x86_64-uec", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T05:17:37.618000", "message_id": "58185d62-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "scheduling", "event_type": "compute.instance.create.start", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "message": "", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "building", "launched_at": "", "node": "None", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "image_name": "cirros-0.3.1-x86_64-uec", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T05:17:37.618000", "message_id": "58185d62-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "scheduling", "event_type": "compute.instance.create.start", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "message": "", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "building", "launched_at": "", "node": "None", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "image_name": "cirros-0.3.1-x86_64-uec", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T05:17:37.618000", "message_id": "58185d62-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "scheduling", "event_type": "compute.instance.create.start", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "message": "", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "building", "launched_at": "", "node": "None", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "image_name": "cirros-0.3.1-x86_64-uec", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T05:17:37.467000", "message_id": "57d9046e-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.update", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "building", "old_state": "building", "old_task_state": "scheduling", "node": "None", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05T05:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 05:17:36", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "None", "audit_period_ending": "2013-08-05T05:17:37.459100", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "instance:m1.nano", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T05:17:36.885000", "message_id": "577a31a0-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "scheduling", "event_type": "compute.instance.update", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "building", "old_state": "None", "old_task_state": "None", "node": "None", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "api.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05T05:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 05:17:36", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "scheduling", "audit_period_ending": "2013-08-05T05:17:36.882975", "os_type": "None"}, "counter_type": "gauge"}], "http://localhost:8777/v2/meters/vcpus?q.field=resource_id&q.value=1bd5a017-2777-4601-8c48-fd7569a4e485": [{"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-12T04:00:31.142000", "message_id": "bb609b12-0303-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-12 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-12T03:00:51.411000", "message_id": "65ac4e12-02fb-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-12 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-12T03:00:51.411000", "message_id": "65ac4e12-02fb-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-12 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-12T03:00:51.411000", "message_id": "65ac4e12-02fb-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-12 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-12T03:00:51.411000", "message_id": "65ac4e12-02fb-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-12 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-12T02:00:27.668000", "message_id": "f5c00f38-02f2-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-12 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-12T01:00:47.078000", "message_id": "9fa6946c-02ea-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-12 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-12T01:00:47.078000", "message_id": "9fa6946c-02ea-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-12 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-12T00:00:24.744000", "message_id": "307d8094-02e2-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-11T23:00:42.301000", "message_id": "d93287b0-02d9-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-11T22:00:21.033000", "message_id": "6abac854-02d1-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-11T21:00:30.028000", "message_id": "0e366a46-02c9-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-11T20:00:18.104000", "message_id": "a56e595e-02c0-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-11T20:00:18.104000", "message_id": "a56e595e-02c0-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-11T20:00:18.104000", "message_id": "a56e595e-02c0-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-11T20:00:18.104000", "message_id": "a56e595e-02c0-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-11T19:00:11.774000", "message_id": "3fe55db0-02b8-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-11T18:00:03.013000", "message_id": "d8ed66f0-02af-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-11T17:00:49.713000", "message_id": "9301db92-02a7-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-11T16:00:45.695000", "message_id": "2ef23c80-029f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-11T15:00:36.707000", "message_id": "c7ad176e-0296-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-11T14:00:27.950000", "message_id": "60ba7414-028e-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-11T14:00:27.950000", "message_id": "60ba7414-028e-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-11T13:00:20.228000", "message_id": "fa74711c-0285-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-11T12:00:11.526000", "message_id": "93788a64-027d-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-11T11:00:02.878000", "message_id": "2c836ae8-0275-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-11T10:00:29.361000", "message_id": "da79b250-026c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-11T10:00:29.361000", "message_id": "da79b250-026c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-11T10:00:29.361000", "message_id": "da79b250-026c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-11T10:00:29.361000", "message_id": "da79b250-026c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-11T09:00:26.318000", "message_id": "76e344ca-0264-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-11T08:00:23.237000", "message_id": "13434aa8-025c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-11T07:00:19.843000", "message_id": "af78eaee-0253-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-11T06:00:16.440000", "message_id": "4ba79072-024b-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-11T05:00:05.254000", "message_id": "e341f322-0242-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-11T04:00:09.203000", "message_id": "83db8a40-023a-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-11T03:00:02.149000", "message_id": "1dfc5f54-0232-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-11T02:00:02.883000", "message_id": "bc883fa2-0229-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-11T01:00:00.622000", "message_id": "597b740e-0221-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-11T00:00:59.479000", "message_id": "1ab46a1c-0219-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-10T23:00:57.053000", "message_id": "b7948fb4-0210-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-10T23:00:57.053000", "message_id": "b7948fb4-0210-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-10T22:00:51.234000", "message_id": "5247cade-0208-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-10T22:00:51.234000", "message_id": "5247cade-0208-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-10T22:00:51.234000", "message_id": "5247cade-0208-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-10T22:00:51.234000", "message_id": "5247cade-0208-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-10T22:00:51.234000", "message_id": "5247cade-0208-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-10T21:00:44.019000", "message_id": "ec295e96-01ff-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-10T20:00:38.870000", "message_id": "876c0b3c-01f7-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-10T19:00:35.321000", "message_id": "23a27c38-01ef-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-10T18:00:31.889000", "message_id": "bfbcbfc4-01e6-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-10T18:00:31.889000", "message_id": "bfbcbfc4-01e6-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-10T18:00:31.889000", "message_id": "bfbcbfc4-01e6-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-10T18:00:31.889000", "message_id": "bfbcbfc4-01e6-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-10T17:00:28.401000", "message_id": "5bd70d96-01de-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-10T16:00:25.452000", "message_id": "f8680b50-01d5-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-10T16:00:25.452000", "message_id": "f8680b50-01d5-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-10T16:00:25.452000", "message_id": "f8680b50-01d5-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-10T16:00:25.452000", "message_id": "f8680b50-01d5-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-10T15:00:22.242000", "message_id": "94b4c9e8-01cd-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-10T15:00:22.242000", "message_id": "94b4c9e8-01cd-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-10T15:00:22.242000", "message_id": "94b4c9e8-01cd-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-10T15:00:22.242000", "message_id": "94b4c9e8-01cd-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-10T14:00:19.164000", "message_id": "311da42a-01c5-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-10T13:00:15.701000", "message_id": "cd3c2aec-01bc-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-10T13:00:15.701000", "message_id": "cd3c2aec-01bc-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-10T13:00:15.701000", "message_id": "cd3c2aec-01bc-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-10T13:00:15.701000", "message_id": "cd3c2aec-01bc-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-10T12:00:04.292000", "message_id": "64a6995c-01b4-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-10T11:00:00.305000", "message_id": "007954ae-01ac-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-10T11:00:00.305000", "message_id": "007954ae-01ac-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-10T11:00:00.305000", "message_id": "007954ae-01ac-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-10T10:00:57.836000", "message_id": "c10a5a28-01a3-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-10T09:00:54.289000", "message_id": "5d38f610-019b-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-10T08:00:51.340000", "message_id": "f9a84aae-0192-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-10T07:00:47.642000", "message_id": "95ada646-018a-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-10T06:00:44.511000", "message_id": "3203e266-0182-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-10T05:00:41.357000", "message_id": "ce80b334-0179-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-10T04:00:38.509000", "message_id": "6affd40a-0171-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-10T03:00:35.082000", "message_id": "072a9742-0169-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-10T02:00:32.213000", "message_id": "a3cf267a-0160-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-10T01:00:28.534000", "message_id": "3fb822c0-0158-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-10T00:00:24.254000", "message_id": "db5fe590-014f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T23:00:20.550000", "message_id": "7779ed12-0147-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T22:00:17.007000", "message_id": "13802338-013f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T22:00:17.007000", "message_id": "13802338-013f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T22:00:17.007000", "message_id": "13802338-013f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T22:00:17.007000", "message_id": "13802338-013f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T21:00:13.474000", "message_id": "afae5b5c-0136-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T20:00:10.420000", "message_id": "4c1712d0-012e-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T19:00:07.041000", "message_id": "e839821e-0125-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T19:00:07.041000", "message_id": "e839821e-0125-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T19:00:07.041000", "message_id": "e839821e-0125-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T18:00:05.394000", "message_id": "8590cf08-011d-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T17:00:01.542000", "message_id": "217764ee-0115-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T17:00:01.542000", "message_id": "217764ee-0115-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T17:00:01.542000", "message_id": "217764ee-0115-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T17:00:01.542000", "message_id": "217764ee-0115-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T16:00:59.768000", "message_id": "e27a9250-010c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T16:00:59.768000", "message_id": "e27a9250-010c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T15:00:53.175000", "message_id": "7cb8aea0-0104-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T14:00:42.332000", "message_id": "147cd256-00fc-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T14:00:42.332000", "message_id": "147cd256-00fc-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T13:00:31.990000", "message_id": "ac93312e-00f3-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T12:00:21.678000", "message_id": "44a3af92-00eb-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T12:00:21.678000", "message_id": "44a3af92-00eb-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T12:00:21.678000", "message_id": "44a3af92-00eb-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T12:00:21.678000", "message_id": "44a3af92-00eb-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T11:00:11.764000", "message_id": "dce74b96-00e2-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T10:00:02.034000", "message_id": "75673768-00da-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T09:00:53.763000", "message_id": "325c63e2-00d2-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T08:00:44.814000", "message_id": "cb4d5510-00c9-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T08:00:44.814000", "message_id": "cb4d5510-00c9-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T08:00:44.814000", "message_id": "cb4d5510-00c9-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T07:00:35.666000", "message_id": "64228a98-00c1-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T06:00:27.504000", "message_id": "fd8d7b42-00b8-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T05:00:17.871000", "message_id": "960eedb4-00b0-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T04:00:02.390000", "message_id": "2b0ac180-00a8-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T04:00:02.390000", "message_id": "2b0ac180-00a8-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T03:00:53.023000", "message_id": "e76e1218-009f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T02:00:37.365000", "message_id": "7c53987a-0097-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T01:00:26.946000", "message_id": "1447fe2c-008f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T01:00:26.946000", "message_id": "1447fe2c-008f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T01:00:26.946000", "message_id": "1447fe2c-008f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T01:00:26.946000", "message_id": "1447fe2c-008f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T00:00:17.110000", "message_id": "accededa-0086-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T00:00:17.110000", "message_id": "accededa-0086-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T00:00:17.110000", "message_id": "accededa-0086-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T23:00:07.618000", "message_id": "45425862-007e-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T22:01:01.409000", "message_id": "0383c828-0076-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T21:00:52.353000", "message_id": "9c5f8284-006d-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T20:00:43.582000", "message_id": "3582ef04-0065-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T19:00:36.837000", "message_id": "cfa2d968-005c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T18:00:29.442000", "message_id": "6978baca-0054-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T17:00:22.425000", "message_id": "0383e1fc-004c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T16:00:14.038000", "message_id": "9cbb1326-0043-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T15:00:07.814000", "message_id": "3750c344-003b-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T15:00:07.814000", "message_id": "3750c344-003b-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T15:00:07.814000", "message_id": "3750c344-003b-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T15:00:07.814000", "message_id": "3750c344-003b-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T14:01:00.762000", "message_id": "f4ecc3ca-0032-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T13:00:51.729000", "message_id": "8df44bc8-002a-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T12:00:42.662000", "message_id": "26b83436-0022-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T11:00:35.831000", "message_id": "c0d8261a-0019-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T11:00:35.831000", "message_id": "c0d8261a-0019-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T11:00:35.831000", "message_id": "c0d8261a-0019-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T11:00:35.831000", "message_id": "c0d8261a-0019-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T10:00:28.533000", "message_id": "5acb73ac-0011-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T09:00:25.664000", "message_id": "f73a9154-0008-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T09:00:25.664000", "message_id": "f73a9154-0008-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T09:00:25.664000", "message_id": "f73a9154-0008-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T09:00:25.664000", "message_id": "f73a9154-0008-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T08:00:23.300000", "message_id": "9419eb68-0000-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T07:00:21.349000", "message_id": "313994ce-fff8-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T06:00:19.415000", "message_id": "ce545c20-ffef-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T06:00:19.415000", "message_id": "ce545c20-ffef-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T05:00:17.584000", "message_id": "6b630d08-ffe7-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T04:00:15.987000", "message_id": "08b4cf96-ffdf-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T04:00:15.987000", "message_id": "08b4cf96-ffdf-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T04:00:15.987000", "message_id": "08b4cf96-ffdf-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T04:00:15.987000", "message_id": "08b4cf96-ffdf-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T03:00:13.949000", "message_id": "a5a97ba2-ffd6-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T02:00:12.162000", "message_id": "42d7c6e4-ffce-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T01:00:10.255000", "message_id": "dfff7a92-ffc5-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T00:00:08.704000", "message_id": "7d4bd060-ffbd-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-07T23:00:03.945000", "message_id": "18afded8-ffb5-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-07T22:00:01.424000", "message_id": "b5692dbe-ffac-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-07T21:00:58.438000", "message_id": "75a81bfc-ffa4-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-07T20:00:55.839000", "message_id": "12441e38-ff9c-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-07T19:00:51.172000", "message_id": "adc47bea-ff93-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-07T18:00:49.666000", "message_id": "4b1f16d8-ff8b-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-07T18:00:49.666000", "message_id": "4b1f16d8-ff8b-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-07T18:00:49.666000", "message_id": "4b1f16d8-ff8b-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-07T18:00:49.666000", "message_id": "4b1f16d8-ff8b-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-07T17:00:47.566000", "message_id": "e807deb6-ff82-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-07T16:00:45.332000", "message_id": "84fa329a-ff7a-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-07T15:00:43.085000", "message_id": "21d1a4da-ff72-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-07T14:00:40.859000", "message_id": "bed3a138-ff69-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-07T14:00:40.859000", "message_id": "bed3a138-ff69-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-07T13:00:38.070000", "message_id": "5b4de7fc-ff61-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-07T12:00:35.603000", "message_id": "f8091ba6-ff58-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-07T11:00:33.146000", "message_id": "94d613a2-ff50-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-07T10:00:28.936000", "message_id": "309faedc-ff48-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-07T10:00:28.936000", "message_id": "309faedc-ff48-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-07T10:00:28.936000", "message_id": "309faedc-ff48-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-07T10:00:28.936000", "message_id": "309faedc-ff48-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-07T09:00:26.206000", "message_id": "cd38cba6-ff3f-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-07T09:00:26.206000", "message_id": "cd38cba6-ff3f-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-07T09:00:26.206000", "message_id": "cd38cba6-ff3f-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-07T09:00:26.206000", "message_id": "cd38cba6-ff3f-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-07T09:00:26.206000", "message_id": "cd38cba6-ff3f-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-07T08:00:23.782000", "message_id": "6a02b93c-ff37-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-07T07:00:21.621000", "message_id": "06fa87be-ff2f-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-07T06:00:16.410000", "message_id": "a217af0a-ff26-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-07T05:00:13.119000", "message_id": "3e61d0f6-ff1e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-07T04:00:10.514000", "message_id": "db02cd2e-ff15-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-07T04:00:10.514000", "message_id": "db02cd2e-ff15-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-07T04:00:10.514000", "message_id": "db02cd2e-ff15-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-07T04:00:10.514000", "message_id": "db02cd2e-ff15-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-07T04:00:10.514000", "message_id": "db02cd2e-ff15-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-07T03:00:06.832000", "message_id": "77033da2-ff0d-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-07T02:00:03.957000", "message_id": "13a23522-ff05-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-07T01:00:01.959000", "message_id": "b096ca9a-fefc-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-07T01:00:01.959000", "message_id": "b096ca9a-fefc-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-07T01:00:01.959000", "message_id": "b096ca9a-fefc-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-07T01:00:01.959000", "message_id": "b096ca9a-fefc-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-07T00:00:01.237000", "message_id": "4e61591a-fef4-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T23:00:36.449000", "message_id": "01a20410-feec-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T22:00:00.309000", "message_id": "8a670d3a-fee3-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T22:00:00.309000", "message_id": "8a670d3a-fee3-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T22:00:00.309000", "message_id": "8a670d3a-fee3-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T22:00:00.309000", "message_id": "8a670d3a-fee3-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T22:00:00.309000", "message_id": "8a670d3a-fee3-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T21:00:12.926000", "message_id": "301b2b48-fedb-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T20:00:01.640000", "message_id": "c7b043de-fed2-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T19:00:52.317000", "message_id": "84025792-feca-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T18:00:45.959000", "message_id": "1e7800f0-fec2-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T17:00:34.412000", "message_id": "b5e4a3ac-feb9-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T16:00:25.287000", "message_id": "4e868dc2-feb1-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T15:00:16.270000", "message_id": "e77bfe1c-fea8-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T14:00:07.305000", "message_id": "8058cc90-fea0-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T13:01:00.163000", "message_id": "3e1af8e2-fe98-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T12:00:50.921000", "message_id": "d6d3c96e-fe8f-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T11:00:42.225000", "message_id": "6fde28ba-fe87-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T11:00:42.225000", "message_id": "6fde28ba-fe87-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T10:00:33.218000", "message_id": "08b529c0-fe7f-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T09:00:25.699000", "message_id": "a27238ae-fe76-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T08:00:15.445000", "message_id": "3aa862b4-fe6e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T07:00:06.766000", "message_id": "d3ab6992-fe65-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T06:00:59.227000", "message_id": "91258ab0-fe5d-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T05:00:49.892000", "message_id": "29e18f64-fe55-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T04:00:41.513000", "message_id": "c305501c-fe4c-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T03:00:32.570000", "message_id": "5bfb10a8-fe44-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T03:00:32.570000", "message_id": "5bfb10a8-fe44-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T02:00:23.174000", "message_id": "f48b61c8-fe3b-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T01:00:14.150000", "message_id": "8d73e4d6-fe33-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T01:00:14.150000", "message_id": "8d73e4d6-fe33-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T00:00:05.657000", "message_id": "26a5ee78-fe2b-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T23:00:58.933000", "message_id": "e497fc9a-fe22-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T22:00:49.272000", "message_id": "7d1c56c2-fe1a-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T21:00:40.410000", "message_id": "15feb398-fe12-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T21:00:40.410000", "message_id": "15feb398-fe12-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T21:00:40.410000", "message_id": "15feb398-fe12-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T20:00:32.368000", "message_id": "af67d1f8-fe09-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T19:00:24.263000", "message_id": "4951ae3c-fe01-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T18:00:16.147000", "message_id": "e23a751a-fdf8-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T17:00:08.240000", "message_id": "7bbd26fa-fdf0-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T16:00:00.155000", "message_id": "1523328e-fde8-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T16:00:00.155000", "message_id": "1523328e-fde8-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T16:00:00.155000", "message_id": "1523328e-fde8-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T15:00:53.699000", "message_id": "d34e5ab2-fddf-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T15:00:53.699000", "message_id": "d34e5ab2-fddf-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T15:00:53.699000", "message_id": "d34e5ab2-fddf-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T14:00:45.845000", "message_id": "6ce213a2-fdd7-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T13:00:37.656000", "message_id": "0638db02-fdcf-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T12:00:29.453000", "message_id": "9f932572-fdc6-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T11:00:21.461000", "message_id": "390abeee-fdbe-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T10:00:13.202000", "message_id": "d24af398-fdb5-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T09:00:05.282000", "message_id": "6bd53108-fdad-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T08:00:58.662000", "message_id": "29e6c282-fda5-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T07:00:50.531000", "message_id": "c347dcbc-fd9c-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T06:00:42.367000", "message_id": "5ca763cc-fd94-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T06:00:42.367000", "message_id": "5ca763cc-fd94-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T05:17:47.079000", "message_id": "5da1813c-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.create.end", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "message": "Success", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.650633", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "image_name": "cirros-0.3.1-x86_64-uec", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T05:17:46.797000", "message_id": "5d7c0128-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.update", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "old_state": "building", "old_task_state": "spawning", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05T05:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 05:17:36", "launched_at": "2013-08-05T05:17:46.650633", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "None", "audit_period_ending": "2013-08-05T05:17:46.793501", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T05:17:41.748000", "message_id": "5a6fe95e-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "spawning", "event_type": "compute.instance.update", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "building", "old_state": "None", "old_task_state": "None", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05T05:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 05:17:36", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "spawning", "audit_period_ending": "2013-08-05T05:17:41.735190", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T05:17:39.517000", "message_id": "5918b87e-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "spawning", "event_type": "compute.instance.update", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "building", "old_state": "building", "old_task_state": "block_device_mapping", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05T05:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 05:17:36", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "spawning", "audit_period_ending": "2013-08-05T05:17:39.404681", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T05:17:38.701000", "message_id": "58d9de38-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "block_device_mapping", "event_type": "compute.instance.update", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "building", "old_state": "building", "old_task_state": "networking", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05T05:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 05:17:36", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "block_device_mapping", "audit_period_ending": "2013-08-05T05:17:38.639403", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T05:17:38.151000", "message_id": "58a5c382-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "networking", "event_type": "compute.instance.update", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "building", "old_state": "building", "old_task_state": "None", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05T05:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 05:17:36", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "networking", "audit_period_ending": "2013-08-05T05:17:38.142735", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T05:17:37.895000", "message_id": "585863f8-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.update", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "building", "old_state": "None", "old_task_state": "None", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05T05:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 05:17:36", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "None", "audit_period_ending": "2013-08-05T05:17:37.890921", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T05:17:37.895000", "message_id": "585863f8-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.update", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "building", "old_state": "None", "old_task_state": "None", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05T05:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 05:17:36", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "None", "audit_period_ending": "2013-08-05T05:17:37.890921", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T05:17:37.895000", "message_id": "585863f8-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.update", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "building", "old_state": "None", "old_task_state": "None", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05T05:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 05:17:36", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "None", "audit_period_ending": "2013-08-05T05:17:37.890921", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T05:17:37.618000", "message_id": "5828005a-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "scheduling", "event_type": "compute.instance.create.start", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "message": "", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "building", "launched_at": "", "node": "None", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "image_name": "cirros-0.3.1-x86_64-uec", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T05:17:37.467000", "message_id": "57dabaac-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.update", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "building", "old_state": "building", "old_task_state": "scheduling", "node": "None", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05T05:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 05:17:36", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "None", "audit_period_ending": "2013-08-05T05:17:37.459100", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "vcpus", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T05:17:36.885000", "message_id": "577bbe3a-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "vcpu", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "scheduling", "event_type": "compute.instance.update", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "building", "old_state": "None", "old_task_state": "None", "node": "None", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "api.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05T05:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 05:17:36", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "scheduling", "audit_period_ending": "2013-08-05T05:17:36.882975", "os_type": "None"}, "counter_type": "gauge"}], "http://localhost:8777/v2/meters/disk.root.size?q.field=resource_id&q.value=1bd5a017-2777-4601-8c48-fd7569a4e485": [{"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-12T04:00:31.142000", "message_id": "bb67aa1a-0303-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-12 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-12T03:00:51.411000", "message_id": "65bb8dbe-02fb-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-12 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-12T02:00:27.668000", "message_id": "f5c706ee-02f2-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-12 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-12T01:00:47.078000", "message_id": "9fb29abe-02ea-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-12 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-12T00:00:24.744000", "message_id": "308a7178-02e2-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-12T00:00:24.744000", "message_id": "308a7178-02e2-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-12T00:00:24.744000", "message_id": "308a7178-02e2-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-11T23:00:42.301000", "message_id": "d933d570-02d9-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-11T22:00:21.033000", "message_id": "6ac39e0c-02d1-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-11T21:00:30.028000", "message_id": "0e377544-02c9-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-11T20:00:18.104000", "message_id": "a574591c-02c0-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-11T19:00:11.774000", "message_id": "3feb86b8-02b8-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-11T18:00:03.013000", "message_id": "d8f489d0-02af-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-11T17:00:49.713000", "message_id": "930a1988-02a7-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-11T16:00:45.695000", "message_id": "2efd098a-029f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-11T15:00:36.707000", "message_id": "c7b67598-0296-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-11T14:00:27.950000", "message_id": "60bec87a-028e-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-11T14:00:27.950000", "message_id": "60bec87a-028e-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-11T13:00:20.228000", "message_id": "fa7c7b5a-0285-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-11T12:00:11.526000", "message_id": "9384844a-027d-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-11T11:00:02.878000", "message_id": "2c8c3808-0275-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-11T11:00:02.878000", "message_id": "2c8c3808-0275-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-11T10:00:29.361000", "message_id": "da822a84-026c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-11T09:00:26.318000", "message_id": "76e92584-0264-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-11T08:00:23.237000", "message_id": "134443cc-025c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-11T07:00:19.843000", "message_id": "af79e5d4-0253-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-11T06:00:16.440000", "message_id": "4ba889aa-024b-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-11T05:00:05.254000", "message_id": "e342e0f2-0242-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-11T04:00:09.203000", "message_id": "83e54a94-023a-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-11T03:00:02.149000", "message_id": "1e019730-0232-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-11T02:00:02.883000", "message_id": "bc8ef19e-0229-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-11T01:00:00.622000", "message_id": "59824d24-0221-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-11T00:00:59.479000", "message_id": "1ab577fe-0219-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-10T23:00:57.053000", "message_id": "b798de70-0210-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-10T22:00:51.234000", "message_id": "5252ba48-0208-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-10T21:00:44.019000", "message_id": "ec34b962-01ff-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-10T21:00:44.019000", "message_id": "ec34b962-01ff-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-10T20:00:38.870000", "message_id": "876d1c34-01f7-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-10T19:00:35.321000", "message_id": "23ae4540-01ef-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-10T19:00:35.321000", "message_id": "23ae4540-01ef-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-10T18:00:31.889000", "message_id": "bfc9e2b2-01e6-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-10T18:00:31.889000", "message_id": "bfc9e2b2-01e6-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-10T18:00:31.889000", "message_id": "bfc9e2b2-01e6-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-10T17:00:28.401000", "message_id": "5bd82ac8-01de-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-10T16:00:25.452000", "message_id": "f8721140-01d5-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-10T15:00:22.242000", "message_id": "94c54b4c-01cd-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-10T15:00:22.242000", "message_id": "94c54b4c-01cd-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-10T15:00:22.242000", "message_id": "94c54b4c-01cd-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-10T14:00:19.164000", "message_id": "312323a0-01c5-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-10T13:00:15.701000", "message_id": "cd485cb8-01bc-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-10T12:00:04.292000", "message_id": "64a7a7c0-01b4-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-10T11:00:00.305000", "message_id": "00858792-01ac-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-10T11:00:00.305000", "message_id": "00858792-01ac-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-10T10:00:57.836000", "message_id": "c1107a66-01a3-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-10T09:00:54.289000", "message_id": "5d4203e0-019b-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-10T08:00:51.340000", "message_id": "f9b2d636-0192-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-10T07:00:47.642000", "message_id": "95aec8b4-018a-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-10T06:00:44.511000", "message_id": "3204e468-0182-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-10T05:00:41.357000", "message_id": "ce82b24c-0179-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-10T04:00:38.509000", "message_id": "6b118588-0171-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-10T03:00:35.082000", "message_id": "07356fd2-0169-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-10T03:00:35.082000", "message_id": "07356fd2-0169-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-10T02:00:32.213000", "message_id": "a3dccd98-0160-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-10T01:00:28.534000", "message_id": "3fb97dfa-0158-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-10T00:00:24.254000", "message_id": "db662d7e-014f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-10T00:00:24.254000", "message_id": "db662d7e-014f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-10T00:00:24.254000", "message_id": "db662d7e-014f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T23:00:20.550000", "message_id": "7781a50c-0147-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T22:00:17.007000", "message_id": "13873970-013f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T22:00:17.007000", "message_id": "13873970-013f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T22:00:17.007000", "message_id": "13873970-013f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T21:00:13.474000", "message_id": "afb7cf70-0136-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T20:00:10.420000", "message_id": "4c18a73a-012e-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T19:00:07.041000", "message_id": "e8415246-0125-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T19:00:07.041000", "message_id": "e8415246-0125-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T19:00:07.041000", "message_id": "e8415246-0125-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T18:00:05.394000", "message_id": "85975d64-011d-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T18:00:05.394000", "message_id": "85975d64-011d-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T17:00:01.542000", "message_id": "2184ba90-0115-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T16:00:59.768000", "message_id": "e2861dc8-010c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T15:00:53.175000", "message_id": "7cba1c36-0104-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T14:00:42.332000", "message_id": "1484350a-00fc-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T13:00:31.990000", "message_id": "ac9bdee6-00f3-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T12:00:21.678000", "message_id": "44b081d6-00eb-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T11:00:11.764000", "message_id": "dce843fc-00e2-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T10:00:02.034000", "message_id": "756847e8-00da-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T09:00:53.763000", "message_id": "325d9668-00d2-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T08:00:44.814000", "message_id": "cb58898a-00c9-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T07:00:35.666000", "message_id": "6423bf8a-00c1-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T06:00:27.504000", "message_id": "fd9933c4-00b8-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T05:00:17.871000", "message_id": "96159dbc-00b0-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T05:00:17.871000", "message_id": "96159dbc-00b0-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T05:00:17.871000", "message_id": "96159dbc-00b0-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T04:00:02.390000", "message_id": "2b121cbe-00a8-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T03:00:53.023000", "message_id": "e76f87ec-009f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T02:00:37.365000", "message_id": "7c582cc8-0097-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T01:00:26.946000", "message_id": "14509f50-008f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T00:00:17.110000", "message_id": "acda4b08-0086-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T23:00:07.618000", "message_id": "454b802c-007e-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T22:01:01.409000", "message_id": "0385abca-0076-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T21:00:52.353000", "message_id": "9c65ce82-006d-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T20:00:43.582000", "message_id": "358ed026-0065-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T19:00:36.837000", "message_id": "cfaa2dd0-005c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T19:00:36.837000", "message_id": "cfaa2dd0-005c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T19:00:36.837000", "message_id": "cfaa2dd0-005c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T18:00:29.442000", "message_id": "697a40ca-0054-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T17:00:22.425000", "message_id": "038abc48-004c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T16:00:14.038000", "message_id": "9cbc96e2-0043-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T15:00:07.814000", "message_id": "375ea98c-003b-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T15:00:07.814000", "message_id": "375ea98c-003b-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T14:01:00.762000", "message_id": "f4edf07e-0032-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T13:00:51.729000", "message_id": "8df5f5a4-002a-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T12:00:42.662000", "message_id": "26c180b8-0022-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T12:00:42.662000", "message_id": "26c180b8-0022-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T11:00:35.831000", "message_id": "c0e06730-0019-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T10:00:28.533000", "message_id": "5ad53964-0011-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T09:00:25.664000", "message_id": "f74d198c-0008-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T08:00:23.300000", "message_id": "94248528-0000-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T08:00:23.300000", "message_id": "94248528-0000-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T08:00:23.300000", "message_id": "94248528-0000-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T07:00:21.349000", "message_id": "31455c96-fff8-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T07:00:21.349000", "message_id": "31455c96-fff8-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T07:00:21.349000", "message_id": "31455c96-fff8-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T06:00:19.415000", "message_id": "ce63c624-ffef-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T05:00:17.584000", "message_id": "6b6f659e-ffe7-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T04:00:15.987000", "message_id": "08c0c472-ffdf-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T03:00:13.949000", "message_id": "a5b51098-ffd6-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T02:00:12.162000", "message_id": "42d8eccc-ffce-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T01:00:10.255000", "message_id": "e0051146-ffc5-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T01:00:10.255000", "message_id": "e0051146-ffc5-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T00:00:08.704000", "message_id": "7d4d1dc6-ffbd-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-07T23:00:03.945000", "message_id": "18b8b526-ffb5-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-07T22:00:01.424000", "message_id": "b56aed16-ffac-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-07T21:00:58.438000", "message_id": "75af79d8-ffa4-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-07T20:00:55.839000", "message_id": "12459c18-ff9c-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-07T19:00:51.172000", "message_id": "adcb6efa-ff93-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-07T19:00:51.172000", "message_id": "adcb6efa-ff93-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-07T19:00:51.172000", "message_id": "adcb6efa-ff93-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-07T19:00:51.172000", "message_id": "adcb6efa-ff93-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-07T19:00:51.172000", "message_id": "adcb6efa-ff93-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-07T18:00:49.666000", "message_id": "4b297aec-ff8b-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-07T17:00:47.566000", "message_id": "e810d0d4-ff82-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-07T17:00:47.566000", "message_id": "e810d0d4-ff82-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-07T17:00:47.566000", "message_id": "e810d0d4-ff82-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-07T16:00:45.332000", "message_id": "85021122-ff7a-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-07T15:00:43.085000", "message_id": "21d29a84-ff72-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-07T14:00:40.859000", "message_id": "bedba716-ff69-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-07T13:00:38.070000", "message_id": "5b57261e-ff61-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-07T12:00:35.603000", "message_id": "f80d17d8-ff58-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-07T11:00:33.146000", "message_id": "94d71a72-ff50-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-07T10:00:28.936000", "message_id": "30ab3f4a-ff48-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-07T09:00:26.206000", "message_id": "cd47540a-ff3f-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-07T08:00:23.782000", "message_id": "6a0644d0-ff37-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-07T07:00:21.621000", "message_id": "070525b6-ff2f-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-07T06:00:16.410000", "message_id": "a2212a1c-ff26-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-07T05:00:13.119000", "message_id": "3e6dfe4e-ff1e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-07T04:00:10.514000", "message_id": "db110c72-ff15-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-07T03:00:06.832000", "message_id": "770b5cb2-ff0d-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-07T02:00:03.957000", "message_id": "13abc038-ff05-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-07T01:00:01.959000", "message_id": "b09efb98-fefc-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-07T01:00:01.959000", "message_id": "b09efb98-fefc-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-07T01:00:01.959000", "message_id": "b09efb98-fefc-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-07T00:00:01.237000", "message_id": "4e684856-fef4-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T23:00:36.449000", "message_id": "01a83952-feec-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T23:00:36.449000", "message_id": "01a83952-feec-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T23:00:36.449000", "message_id": "01a83952-feec-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T22:00:00.309000", "message_id": "8a76a7cc-fee3-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T21:00:12.926000", "message_id": "301e5ac0-fedb-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T20:00:01.640000", "message_id": "c7bae5f0-fed2-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T20:00:01.640000", "message_id": "c7bae5f0-fed2-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T20:00:01.640000", "message_id": "c7bae5f0-fed2-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T19:00:52.317000", "message_id": "840ca076-feca-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T19:00:52.317000", "message_id": "840ca076-feca-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T19:00:52.317000", "message_id": "840ca076-feca-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T19:00:52.317000", "message_id": "840ca076-feca-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T18:00:45.959000", "message_id": "1e806f92-fec2-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T17:00:34.412000", "message_id": "b5f218ac-feb9-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T16:00:25.287000", "message_id": "4e87ba30-feb1-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T15:00:16.270000", "message_id": "e786593e-fea8-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T14:00:07.305000", "message_id": "806106a8-fea0-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T14:00:07.305000", "message_id": "806106a8-fea0-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T14:00:07.305000", "message_id": "806106a8-fea0-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T13:01:00.163000", "message_id": "3e1ccb72-fe98-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T12:00:50.921000", "message_id": "d6dfad60-fe8f-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T12:00:50.921000", "message_id": "d6dfad60-fe8f-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T12:00:50.921000", "message_id": "d6dfad60-fe8f-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T11:00:42.225000", "message_id": "6fe383a0-fe87-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T11:00:42.225000", "message_id": "6fe383a0-fe87-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T10:00:33.218000", "message_id": "08bcb776-fe7f-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T10:00:33.218000", "message_id": "08bcb776-fe7f-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T10:00:33.218000", "message_id": "08bcb776-fe7f-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T09:00:25.699000", "message_id": "a2785978-fe76-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T08:00:15.445000", "message_id": "3ab3ad72-fe6e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T07:00:06.766000", "message_id": "d3b32308-fe65-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T06:00:59.227000", "message_id": "912b74ac-fe5d-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T05:00:49.892000", "message_id": "29ee4db2-fe55-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T04:00:41.513000", "message_id": "c30668c6-fe4c-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T03:00:32.570000", "message_id": "5c02a462-fe44-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T02:00:23.174000", "message_id": "f48cc4dc-fe3b-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T01:00:14.150000", "message_id": "8d77b994-fe33-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T01:00:14.150000", "message_id": "8d77b994-fe33-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T00:00:05.657000", "message_id": "26adb176-fe2b-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T23:00:58.933000", "message_id": "e49df276-fe22-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T23:00:58.933000", "message_id": "e49df276-fe22-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T22:00:49.272000", "message_id": "7d1dcd18-fe1a-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T21:00:40.410000", "message_id": "1607f57a-fe12-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T20:00:32.368000", "message_id": "af6ed1ba-fe09-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T19:00:24.263000", "message_id": "49548e54-fe01-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T18:00:16.147000", "message_id": "e23f6b2e-fdf8-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T18:00:16.147000", "message_id": "e23f6b2e-fdf8-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T17:00:08.240000", "message_id": "7bbe6c40-fdf0-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T16:00:00.155000", "message_id": "1529612c-fde8-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T15:00:53.699000", "message_id": "d355b334-fddf-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T14:00:45.845000", "message_id": "6ce72216-fdd7-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T14:00:45.845000", "message_id": "6ce72216-fdd7-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T13:00:37.656000", "message_id": "063df0ce-fdcf-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T12:00:29.453000", "message_id": "9f98214e-fdc6-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T11:00:21.461000", "message_id": "390e4c94-fdbe-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T11:00:21.461000", "message_id": "390e4c94-fdbe-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T11:00:21.461000", "message_id": "390e4c94-fdbe-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T10:00:13.202000", "message_id": "d24c0a4e-fdb5-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T09:00:05.282000", "message_id": "6bd6359e-fdad-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T08:00:58.662000", "message_id": "29e7c434-fda5-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T07:00:50.531000", "message_id": "c34c58dc-fd9c-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T07:00:50.531000", "message_id": "c34c58dc-fd9c-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T06:00:42.367000", "message_id": "5caa9dd0-fd94-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T06:00:42.367000", "message_id": "5caa9dd0-fd94-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T05:17:47.079000", "message_id": "5da6d02e-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.create.end", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "message": "Success", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.650633", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "image_name": "cirros-0.3.1-x86_64-uec", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T05:17:47.079000", "message_id": "5da6d02e-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.create.end", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "message": "Success", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.650633", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "image_name": "cirros-0.3.1-x86_64-uec", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T05:17:46.797000", "message_id": "5d8425ba-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.update", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "old_state": "building", "old_task_state": "spawning", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05T05:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 05:17:36", "launched_at": "2013-08-05T05:17:46.650633", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "None", "audit_period_ending": "2013-08-05T05:17:46.793501", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T05:17:41.748000", "message_id": "5a73d7d0-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "spawning", "event_type": "compute.instance.update", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "building", "old_state": "None", "old_task_state": "None", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05T05:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 05:17:36", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "spawning", "audit_period_ending": "2013-08-05T05:17:41.735190", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T05:17:39.517000", "message_id": "591c9aac-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "spawning", "event_type": "compute.instance.update", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "building", "old_state": "building", "old_task_state": "block_device_mapping", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05T05:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 05:17:36", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "spawning", "audit_period_ending": "2013-08-05T05:17:39.404681", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T05:17:38.701000", "message_id": "58dfdc16-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "block_device_mapping", "event_type": "compute.instance.update", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "building", "old_state": "building", "old_task_state": "networking", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05T05:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 05:17:36", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "block_device_mapping", "audit_period_ending": "2013-08-05T05:17:38.639403", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T05:17:38.151000", "message_id": "58b5f356-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "networking", "event_type": "compute.instance.update", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "building", "old_state": "building", "old_task_state": "None", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05T05:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 05:17:36", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "networking", "audit_period_ending": "2013-08-05T05:17:38.142735", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T05:17:37.895000", "message_id": "58811014-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.update", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "building", "old_state": "None", "old_task_state": "None", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05T05:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 05:17:36", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "None", "audit_period_ending": "2013-08-05T05:17:37.890921", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T05:17:37.618000", "message_id": "583fd18a-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "scheduling", "event_type": "compute.instance.create.start", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "message": "", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "building", "launched_at": "", "node": "None", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "image_name": "cirros-0.3.1-x86_64-uec", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T05:17:37.467000", "message_id": "57fb3e8a-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.update", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "building", "old_state": "building", "old_task_state": "scheduling", "node": "None", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05T05:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 05:17:36", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "None", "audit_period_ending": "2013-08-05T05:17:37.459100", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "disk.root.size", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T05:17:36.885000", "message_id": "577dd440-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "GB", "counter_volume": 0.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "scheduling", "event_type": "compute.instance.update", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "building", "old_state": "None", "old_task_state": "None", "node": "None", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "api.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05T05:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 05:17:36", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "scheduling", "audit_period_ending": "2013-08-05T05:17:36.882975", "os_type": "None"}, "counter_type": "gauge"}], "http://localhost:8777/v2/meters/instance.scheduled?q.field=resource_id&q.value=1bd5a017-2777-4601-8c48-fd7569a4e485": [{"counter_name": "instance.scheduled", "user_id": null, "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T05:17:37.221000", "message_id": "57a7b224-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "instance", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "host": "scheduler.openstack", "event_type": "scheduler.run_instance.scheduled"}, "counter_type": "delta"}], "http://localhost:8777/v2/meters/memory?q.field=resource_id&q.value=1bd5a017-2777-4601-8c48-fd7569a4e485": [{"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-12T04:00:31.142000", "message_id": "bb30fb64-0303-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-12 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-12T03:00:51.411000", "message_id": "6580639c-02fb-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-12 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-12T03:00:51.411000", "message_id": "6580639c-02fb-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-12 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-12T03:00:51.411000", "message_id": "6580639c-02fb-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-12 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-12T02:00:27.668000", "message_id": "f595edca-02f2-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-12 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-12T02:00:27.668000", "message_id": "f595edca-02f2-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-12 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-12T02:00:27.668000", "message_id": "f595edca-02f2-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-12 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-12T01:00:47.078000", "message_id": "9f6465ce-02ea-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-12 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-12T00:00:24.744000", "message_id": "304e878a-02e2-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-11T23:00:42.301000", "message_id": "d900d300-02d9-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-11T22:00:21.033000", "message_id": "6a8f8464-02d1-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-11T22:00:21.033000", "message_id": "6a8f8464-02d1-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-11T22:00:21.033000", "message_id": "6a8f8464-02d1-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-11T21:00:30.028000", "message_id": "0e27635c-02c9-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-11T20:00:18.104000", "message_id": "a54766fa-02c0-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-11T20:00:18.104000", "message_id": "a54766fa-02c0-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-11T20:00:18.104000", "message_id": "a54766fa-02c0-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-11T19:00:11.774000", "message_id": "3fbd7b88-02b8-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-11T19:00:11.774000", "message_id": "3fbd7b88-02b8-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-11T19:00:11.774000", "message_id": "3fbd7b88-02b8-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-11T18:00:03.013000", "message_id": "d8bfe6e4-02af-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-11T18:00:03.013000", "message_id": "d8bfe6e4-02af-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-11T18:00:03.013000", "message_id": "d8bfe6e4-02af-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-11T17:00:49.713000", "message_id": "92d1a40e-02a7-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-11T17:00:49.713000", "message_id": "92d1a40e-02a7-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-11T16:00:45.695000", "message_id": "2ea9f16e-029f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-11T16:00:45.695000", "message_id": "2ea9f16e-029f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-11T15:00:36.707000", "message_id": "c78a2fd8-0296-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-11T14:00:27.950000", "message_id": "608b49fa-028e-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-11T13:00:20.228000", "message_id": "fa2d70fa-0285-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-11T13:00:20.228000", "message_id": "fa2d70fa-0285-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-11T12:00:11.526000", "message_id": "9338b844-027d-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-11T12:00:11.526000", "message_id": "9338b844-027d-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-11T12:00:11.526000", "message_id": "9338b844-027d-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-11T11:00:02.878000", "message_id": "2c4d06a6-0275-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-11T10:00:29.361000", "message_id": "da512736-026c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-11T09:00:26.318000", "message_id": "76bcb8f0-0264-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-11T08:00:23.237000", "message_id": "1322eec0-025c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-11T07:00:19.843000", "message_id": "af580252-0253-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-11T07:00:19.843000", "message_id": "af580252-0253-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-11T06:00:16.440000", "message_id": "4b8cb28e-024b-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-11T05:00:05.254000", "message_id": "e31c714c-0242-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-11T05:00:05.254000", "message_id": "e31c714c-0242-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-11T05:00:05.254000", "message_id": "e31c714c-0242-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-11T04:00:09.203000", "message_id": "83b36290-023a-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-11T03:00:02.149000", "message_id": "1dba2c42-0232-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-11T02:00:02.883000", "message_id": "bc6523aa-0229-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-11T01:00:00.622000", "message_id": "5948478c-0221-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-11 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-11T00:00:59.479000", "message_id": "1a98f61a-0219-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-11T00:00:59.479000", "message_id": "1a98f61a-0219-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-11T00:00:59.479000", "message_id": "1a98f61a-0219-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-11 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-10T23:00:57.053000", "message_id": "b763ed78-0210-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-10T22:00:51.234000", "message_id": "52266b00-0208-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-10T21:00:44.019000", "message_id": "ec1552c0-01ff-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-10T21:00:44.019000", "message_id": "ec1552c0-01ff-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-10T21:00:44.019000", "message_id": "ec1552c0-01ff-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-10T20:00:38.870000", "message_id": "873fbce4-01f7-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-10T20:00:38.870000", "message_id": "873fbce4-01f7-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-10T20:00:38.870000", "message_id": "873fbce4-01f7-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-10T20:00:38.870000", "message_id": "873fbce4-01f7-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-10T19:00:35.321000", "message_id": "235c8322-01ef-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-10T18:00:31.889000", "message_id": "bf8dbe40-01e6-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-10T18:00:31.889000", "message_id": "bf8dbe40-01e6-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-10T17:00:28.401000", "message_id": "5bc10dca-01de-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-10T17:00:28.401000", "message_id": "5bc10dca-01de-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-10T16:00:25.452000", "message_id": "f82fcb1e-01d5-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-10T16:00:25.452000", "message_id": "f82fcb1e-01d5-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-10T15:00:22.242000", "message_id": "947eed8c-01cd-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-10T15:00:22.242000", "message_id": "947eed8c-01cd-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-10T15:00:22.242000", "message_id": "947eed8c-01cd-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-10T14:00:19.164000", "message_id": "30e51e84-01c5-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-10T13:00:15.701000", "message_id": "cd103022-01bc-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-10T12:00:04.292000", "message_id": "648082e4-01b4-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-10T11:00:00.305000", "message_id": "005a89ca-01ac-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-10T11:00:00.305000", "message_id": "005a89ca-01ac-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-10T10:00:57.836000", "message_id": "c0e042a6-01a3-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-10T10:00:57.836000", "message_id": "c0e042a6-01a3-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-10T10:00:57.836000", "message_id": "c0e042a6-01a3-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-10T09:00:54.289000", "message_id": "5cff4744-019b-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-10T08:00:51.340000", "message_id": "f977b1be-0192-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-10T07:00:47.642000", "message_id": "957faee4-018a-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-10T07:00:47.642000", "message_id": "957faee4-018a-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-10T06:00:44.511000", "message_id": "31dd7e32-0182-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-10T05:00:41.357000", "message_id": "ce37b760-0179-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-10T05:00:41.357000", "message_id": "ce37b760-0179-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-10T04:00:38.509000", "message_id": "6ac2ca7e-0171-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-10T03:00:35.082000", "message_id": "06f371c2-0169-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-10T03:00:35.082000", "message_id": "06f371c2-0169-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-10T02:00:32.213000", "message_id": "a378cc8a-0160-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-10T02:00:32.213000", "message_id": "a378cc8a-0160-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-10T01:00:28.534000", "message_id": "3f821234-0158-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-10T01:00:28.534000", "message_id": "3f821234-0158-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-10 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-10T00:00:24.254000", "message_id": "db32dbc2-014f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-10T00:00:24.254000", "message_id": "db32dbc2-014f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-10 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T23:00:20.550000", "message_id": "7736ed28-0147-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T23:00:20.550000", "message_id": "7736ed28-0147-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T22:00:17.007000", "message_id": "1355de7a-013f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T22:00:17.007000", "message_id": "1355de7a-013f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T21:00:13.474000", "message_id": "af75cd64-0136-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T21:00:13.474000", "message_id": "af75cd64-0136-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T21:00:13.474000", "message_id": "af75cd64-0136-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T20:00:10.420000", "message_id": "4bdf3fc2-012e-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T20:00:10.420000", "message_id": "4bdf3fc2-012e-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T20:00:10.420000", "message_id": "4bdf3fc2-012e-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T19:00:07.041000", "message_id": "e817f91e-0125-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T19:00:07.041000", "message_id": "e817f91e-0125-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T19:00:07.041000", "message_id": "e817f91e-0125-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T18:00:05.394000", "message_id": "8557e40e-011d-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T17:00:01.542000", "message_id": "21480758-0115-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T16:00:59.768000", "message_id": "e2397d06-010c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T16:00:59.768000", "message_id": "e2397d06-010c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T15:00:53.175000", "message_id": "7c8563c4-0104-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T15:00:53.175000", "message_id": "7c8563c4-0104-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T15:00:53.175000", "message_id": "7c8563c4-0104-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T14:00:42.332000", "message_id": "144a312a-00fc-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T13:00:31.990000", "message_id": "ac5ccb16-00f3-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T12:00:21.678000", "message_id": "44728642-00eb-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T11:00:11.764000", "message_id": "dcc563e6-00e2-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T11:00:11.764000", "message_id": "dcc563e6-00e2-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T10:00:02.034000", "message_id": "7539201c-00da-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T10:00:02.034000", "message_id": "7539201c-00da-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T10:00:02.034000", "message_id": "7539201c-00da-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T10:00:02.034000", "message_id": "7539201c-00da-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T10:00:02.034000", "message_id": "7539201c-00da-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T09:00:53.763000", "message_id": "3257bb44-00d2-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T08:00:44.814000", "message_id": "cb2a56dc-00c9-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T08:00:44.814000", "message_id": "cb2a56dc-00c9-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T08:00:44.814000", "message_id": "cb2a56dc-00c9-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T07:00:35.666000", "message_id": "63f367b8-00c1-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T07:00:35.666000", "message_id": "63f367b8-00c1-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T06:00:27.504000", "message_id": "fd519ece-00b8-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T06:00:27.504000", "message_id": "fd519ece-00b8-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T05:00:17.871000", "message_id": "95dc82a2-00b0-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T04:00:02.390000", "message_id": "2acf726a-00a8-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T04:00:02.390000", "message_id": "2acf726a-00a8-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T03:00:53.023000", "message_id": "e73b995a-009f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T03:00:53.023000", "message_id": "e73b995a-009f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T03:00:53.023000", "message_id": "e73b995a-009f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T02:00:37.365000", "message_id": "7c20c8b4-0097-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T02:00:37.365000", "message_id": "7c20c8b4-0097-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T02:00:37.365000", "message_id": "7c20c8b4-0097-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T01:00:26.946000", "message_id": "142535ea-008f-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-09 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T00:00:17.110000", "message_id": "ac8568a4-0086-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-09T00:00:17.110000", "message_id": "ac8568a4-0086-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-09 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T23:00:07.618000", "message_id": "451894d2-007e-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T22:01:01.409000", "message_id": "03649a2a-0076-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T22:01:01.409000", "message_id": "03649a2a-0076-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T22:01:01.409000", "message_id": "03649a2a-0076-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T21:00:52.353000", "message_id": "9c38af10-006d-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T21:00:52.353000", "message_id": "9c38af10-006d-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T21:00:52.353000", "message_id": "9c38af10-006d-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T20:00:43.582000", "message_id": "353a60cc-0065-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T19:00:36.837000", "message_id": "cf7109ce-005c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T19:00:36.837000", "message_id": "cf7109ce-005c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T18:00:29.442000", "message_id": "6943250e-0054-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T18:00:29.442000", "message_id": "6943250e-0054-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T18:00:29.442000", "message_id": "6943250e-0054-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T17:00:22.425000", "message_id": "0350e342-004c-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T16:00:14.038000", "message_id": "9c8c6558-0043-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T16:00:14.038000", "message_id": "9c8c6558-0043-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T15:00:07.814000", "message_id": "37135d1a-003b-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T15:00:07.814000", "message_id": "37135d1a-003b-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T14:01:00.762000", "message_id": "f4df8e94-0032-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T14:01:00.762000", "message_id": "f4df8e94-0032-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T13:00:51.729000", "message_id": "8db8f8f2-002a-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T13:00:51.729000", "message_id": "8db8f8f2-002a-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T12:00:42.662000", "message_id": "268a4bde-0022-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T11:00:35.831000", "message_id": "c0b3b168-0019-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T11:00:35.831000", "message_id": "c0b3b168-0019-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T11:00:35.831000", "message_id": "c0b3b168-0019-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T10:00:28.533000", "message_id": "5a95287e-0011-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T09:00:25.664000", "message_id": "f71af380-0008-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T08:00:23.300000", "message_id": "93edf1ca-0000-11e3-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T07:00:21.349000", "message_id": "30ffda90-fff8-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T07:00:21.349000", "message_id": "30ffda90-fff8-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T06:00:19.415000", "message_id": "ce14e612-ffef-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T06:00:19.415000", "message_id": "ce14e612-ffef-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T06:00:19.415000", "message_id": "ce14e612-ffef-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T05:00:17.584000", "message_id": "6b3831dc-ffe7-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T05:00:17.584000", "message_id": "6b3831dc-ffe7-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T05:00:17.584000", "message_id": "6b3831dc-ffe7-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T04:00:15.987000", "message_id": "0880e456-ffdf-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T03:00:13.949000", "message_id": "a585824c-ffd6-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T02:00:12.162000", "message_id": "42b119d6-ffce-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T01:00:10.255000", "message_id": "dfca155a-ffc5-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T01:00:10.255000", "message_id": "dfca155a-ffc5-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T01:00:10.255000", "message_id": "dfca155a-ffc5-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T01:00:10.255000", "message_id": "dfca155a-ffc5-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-08 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T00:00:08.704000", "message_id": "7d18c1d4-ffbd-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-08T00:00:08.704000", "message_id": "7d18c1d4-ffbd-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-08 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-07T23:00:03.945000", "message_id": "187d0134-ffb5-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-07T22:00:01.424000", "message_id": "b5389640-ffac-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-07T21:00:58.438000", "message_id": "756f9034-ffa4-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-07T20:00:55.839000", "message_id": "121fca10-ff9c-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-07T20:00:55.839000", "message_id": "121fca10-ff9c-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-07T20:00:55.839000", "message_id": "121fca10-ff9c-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-07T19:00:51.172000", "message_id": "ad939ce6-ff93-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-07T18:00:49.666000", "message_id": "4aeb8778-ff8b-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-07T18:00:49.666000", "message_id": "4aeb8778-ff8b-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-07T18:00:49.666000", "message_id": "4aeb8778-ff8b-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-07T17:00:47.566000", "message_id": "e7e295c0-ff82-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-07T16:00:45.332000", "message_id": "84c95152-ff7a-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-07T16:00:45.332000", "message_id": "84c95152-ff7a-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-07T16:00:45.332000", "message_id": "84c95152-ff7a-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-07T15:00:43.085000", "message_id": "21ae9828-ff72-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-07T14:00:40.859000", "message_id": "be978504-ff69-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-07T14:00:40.859000", "message_id": "be978504-ff69-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-07T13:00:38.070000", "message_id": "5b27ee8a-ff61-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-07T12:00:35.603000", "message_id": "f7eb858c-ff58-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-07T12:00:35.603000", "message_id": "f7eb858c-ff58-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-07T11:00:33.146000", "message_id": "94b0b2ba-ff50-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-07T11:00:33.146000", "message_id": "94b0b2ba-ff50-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-07T10:00:28.936000", "message_id": "3068ead2-ff48-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-07T10:00:28.936000", "message_id": "3068ead2-ff48-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-07T10:00:28.936000", "message_id": "3068ead2-ff48-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-07T09:00:26.206000", "message_id": "cd045af6-ff3f-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-07T09:00:26.206000", "message_id": "cd045af6-ff3f-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-07T08:00:23.782000", "message_id": "69ce34f0-ff37-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-07T08:00:23.782000", "message_id": "69ce34f0-ff37-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-07T07:00:21.621000", "message_id": "06c105d4-ff2f-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-07T06:00:16.410000", "message_id": "a1dfeca0-ff26-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-07T06:00:16.410000", "message_id": "a1dfeca0-ff26-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-07T06:00:16.410000", "message_id": "a1dfeca0-ff26-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-07T06:00:16.410000", "message_id": "a1dfeca0-ff26-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-07T05:00:13.119000", "message_id": "3e283bde-ff1e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-07T04:00:10.514000", "message_id": "dad69538-ff15-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-07T03:00:06.832000", "message_id": "76de8368-ff0d-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-07T03:00:06.832000", "message_id": "76de8368-ff0d-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-07T02:00:03.957000", "message_id": "1362d80a-ff05-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-07T02:00:03.957000", "message_id": "1362d80a-ff05-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-07T01:00:01.959000", "message_id": "b06f0c12-fefc-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-07T01:00:01.959000", "message_id": "b06f0c12-fefc-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-07T01:00:01.959000", "message_id": "b06f0c12-fefc-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-07 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-07T00:00:01.237000", "message_id": "4e3a1c2e-fef4-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-07T00:00:01.237000", "message_id": "4e3a1c2e-fef4-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-07T00:00:01.237000", "message_id": "4e3a1c2e-fef4-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-07 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T23:00:36.449000", "message_id": "0174ad30-feec-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T23:00:36.449000", "message_id": "0174ad30-feec-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T22:00:00.309000", "message_id": "8a2594fe-fee3-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T22:00:00.309000", "message_id": "8a2594fe-fee3-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T21:00:12.926000", "message_id": "2fe9ba68-fedb-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T21:00:12.926000", "message_id": "2fe9ba68-fedb-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T21:00:12.926000", "message_id": "2fe9ba68-fedb-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T20:00:01.640000", "message_id": "c7678734-fed2-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T20:00:01.640000", "message_id": "c7678734-fed2-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T19:00:52.317000", "message_id": "83d7ac5e-feca-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T18:00:45.959000", "message_id": "1e4aaf1a-fec2-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T18:00:45.959000", "message_id": "1e4aaf1a-fec2-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T18:00:45.959000", "message_id": "1e4aaf1a-fec2-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T18:00:45.959000", "message_id": "1e4aaf1a-fec2-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T17:00:34.412000", "message_id": "b5a3d4e4-feb9-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T17:00:34.412000", "message_id": "b5a3d4e4-feb9-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T17:00:34.412000", "message_id": "b5a3d4e4-feb9-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T16:00:25.287000", "message_id": "4e820806-feb1-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T15:00:16.270000", "message_id": "e749269a-fea8-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T15:00:16.270000", "message_id": "e749269a-fea8-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T14:00:07.305000", "message_id": "802d3698-fea0-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T14:00:07.305000", "message_id": "802d3698-fea0-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T14:00:07.305000", "message_id": "802d3698-fea0-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T13:01:00.163000", "message_id": "3de91d0e-fe98-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T13:01:00.163000", "message_id": "3de91d0e-fe98-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T13:01:00.163000", "message_id": "3de91d0e-fe98-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T12:00:50.921000", "message_id": "d6a3a11c-fe8f-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T12:00:50.921000", "message_id": "d6a3a11c-fe8f-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T11:00:42.225000", "message_id": "6fb06984-fe87-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T11:00:42.225000", "message_id": "6fb06984-fe87-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T10:00:33.218000", "message_id": "088ccd5e-fe7f-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T10:00:33.218000", "message_id": "088ccd5e-fe7f-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T10:00:33.218000", "message_id": "088ccd5e-fe7f-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T09:00:25.699000", "message_id": "a24ceb4e-fe76-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T08:00:15.445000", "message_id": "3a6ca350-fe6e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T08:00:15.445000", "message_id": "3a6ca350-fe6e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T08:00:15.445000", "message_id": "3a6ca350-fe6e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T07:00:06.766000", "message_id": "d37d7df2-fe65-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T07:00:06.766000", "message_id": "d37d7df2-fe65-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T06:00:59.227000", "message_id": "90fc0460-fe5d-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T05:00:49.892000", "message_id": "29a8bfc2-fe55-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T05:00:49.892000", "message_id": "29a8bfc2-fe55-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T05:00:49.892000", "message_id": "29a8bfc2-fe55-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 04:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 05:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T04:00:41.513000", "message_id": "c2e4338c-fe4c-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T04:00:41.513000", "message_id": "c2e4338c-fe4c-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 04:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T03:00:32.570000", "message_id": "5bcbc3de-fe44-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T03:00:32.570000", "message_id": "5bcbc3de-fe44-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 02:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 03:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T02:00:23.174000", "message_id": "f46ceeaa-fe3b-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T02:00:23.174000", "message_id": "f46ceeaa-fe3b-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 01:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 02:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T01:00:14.150000", "message_id": "8d4769a6-fe33-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-06 00:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 01:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T00:00:05.657000", "message_id": "26743630-fe2b-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-06T00:00:05.657000", "message_id": "26743630-fe2b-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 23:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-06 00:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T23:00:58.933000", "message_id": "e46f926e-fe22-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 22:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 23:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T22:00:49.272000", "message_id": "7cea6db0-fe1a-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 21:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 22:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T21:00:40.410000", "message_id": "15de0328-fe12-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 20:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 21:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T20:00:32.368000", "message_id": "af4d15ac-fe09-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 19:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 20:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T19:00:24.263000", "message_id": "491e9628-fe01-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T19:00:24.263000", "message_id": "491e9628-fe01-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 18:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 19:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T18:00:16.147000", "message_id": "e2197ebe-fdf8-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 17:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 18:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T17:00:08.240000", "message_id": "7b9e982a-fdf0-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T17:00:08.240000", "message_id": "7b9e982a-fdf0-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 16:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 17:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T16:00:00.155000", "message_id": "15093992-fde8-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 15:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 16:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T15:00:53.699000", "message_id": "d32dff10-fddf-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T15:00:53.699000", "message_id": "d32dff10-fddf-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T15:00:53.699000", "message_id": "d32dff10-fddf-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 14:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 15:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T14:00:45.845000", "message_id": "6cbbd656-fdd7-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T14:00:45.845000", "message_id": "6cbbd656-fdd7-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 13:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 14:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T13:00:37.656000", "message_id": "06158a94-fdcf-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T13:00:37.656000", "message_id": "06158a94-fdcf-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 12:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 13:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T12:00:29.453000", "message_id": "9f6e2394-fdc6-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 11:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 12:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T11:00:21.461000", "message_id": "38e6212e-fdbe-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T11:00:21.461000", "message_id": "38e6212e-fdbe-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T11:00:21.461000", "message_id": "38e6212e-fdbe-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 10:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 11:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T10:00:13.202000", "message_id": "d23514ce-fdb5-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 09:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 10:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T09:00:05.282000", "message_id": "6bb7b718-fdad-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T09:00:05.282000", "message_id": "6bb7b718-fdad-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T09:00:05.282000", "message_id": "6bb7b718-fdad-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 08:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 09:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T08:00:58.662000", "message_id": "29c4bb7e-fda5-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 07:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 08:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T07:00:50.531000", "message_id": "c328299e-fd9c-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T07:00:50.531000", "message_id": "c328299e-fd9c-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 06:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 07:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T06:00:42.367000", "message_id": "5c8c0af0-fd94-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05 05:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-05 06:00:00", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T05:17:47.079000", "message_id": "5d8976dc-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.create.end", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "message": "Success", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.650633", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "image_name": "cirros-0.3.1-x86_64-uec", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T05:17:46.797000", "message_id": "5d5c64e4-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.update", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "old_state": "building", "old_task_state": "spawning", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05T05:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 05:17:36", "launched_at": "2013-08-05T05:17:46.650633", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "None", "audit_period_ending": "2013-08-05T05:17:46.793501", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T05:17:41.748000", "message_id": "5a59e7f8-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "spawning", "event_type": "compute.instance.update", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "building", "old_state": "None", "old_task_state": "None", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05T05:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 05:17:36", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "spawning", "audit_period_ending": "2013-08-05T05:17:41.735190", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T05:17:39.517000", "message_id": "590a221e-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "spawning", "event_type": "compute.instance.update", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "building", "old_state": "building", "old_task_state": "block_device_mapping", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05T05:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 05:17:36", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "spawning", "audit_period_ending": "2013-08-05T05:17:39.404681", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T05:17:38.701000", "message_id": "588f2820-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "block_device_mapping", "event_type": "compute.instance.update", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "building", "old_state": "building", "old_task_state": "networking", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05T05:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 05:17:36", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "block_device_mapping", "audit_period_ending": "2013-08-05T05:17:38.639403", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T05:17:38.701000", "message_id": "588f2820-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "block_device_mapping", "event_type": "compute.instance.update", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "building", "old_state": "building", "old_task_state": "networking", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05T05:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 05:17:36", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "block_device_mapping", "audit_period_ending": "2013-08-05T05:17:38.639403", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T05:17:38.151000", "message_id": "58377012-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "networking", "event_type": "compute.instance.update", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "building", "old_state": "building", "old_task_state": "None", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05T05:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 05:17:36", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "networking", "audit_period_ending": "2013-08-05T05:17:38.142735", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T05:17:38.151000", "message_id": "58377012-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "networking", "event_type": "compute.instance.update", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "building", "old_state": "building", "old_task_state": "None", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05T05:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 05:17:36", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "networking", "audit_period_ending": "2013-08-05T05:17:38.142735", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T05:17:38.151000", "message_id": "58377012-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "networking", "event_type": "compute.instance.update", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "building", "old_state": "building", "old_task_state": "None", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05T05:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 05:17:36", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "networking", "audit_period_ending": "2013-08-05T05:17:38.142735", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T05:17:38.151000", "message_id": "58377012-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "networking", "event_type": "compute.instance.update", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "building", "old_state": "building", "old_task_state": "None", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05T05:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 05:17:36", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "networking", "audit_period_ending": "2013-08-05T05:17:38.142735", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T05:17:38.151000", "message_id": "58377012-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "networking", "event_type": "compute.instance.update", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "building", "old_state": "building", "old_task_state": "None", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05T05:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 05:17:36", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "networking", "audit_period_ending": "2013-08-05T05:17:38.142735", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T05:17:38.151000", "message_id": "58377012-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "networking", "event_type": "compute.instance.update", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "building", "old_state": "building", "old_task_state": "None", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05T05:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 05:17:36", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "networking", "audit_period_ending": "2013-08-05T05:17:38.142735", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T05:17:38.151000", "message_id": "58377012-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "networking", "event_type": "compute.instance.update", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "building", "old_state": "building", "old_task_state": "None", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05T05:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 05:17:36", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "networking", "audit_period_ending": "2013-08-05T05:17:38.142735", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T05:17:37.895000", "message_id": "580ec5b8-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.update", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "building", "old_state": "None", "old_task_state": "None", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05T05:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 05:17:36", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "None", "audit_period_ending": "2013-08-05T05:17:37.890921", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T05:17:37.618000", "message_id": "57e85202-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "scheduling", "event_type": "compute.instance.create.start", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "message": "", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "building", "launched_at": "", "node": "None", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "image_name": "cirros-0.3.1-x86_64-uec", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T05:17:37.618000", "message_id": "57e85202-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "scheduling", "event_type": "compute.instance.create.start", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "message": "", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "building", "launched_at": "", "node": "None", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "image_name": "cirros-0.3.1-x86_64-uec", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T05:17:37.467000", "message_id": "57cf160c-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "", "event_type": "compute.instance.update", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "building", "old_state": "building", "old_task_state": "scheduling", "node": "None", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "conductor.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05T05:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 05:17:36", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "None", "audit_period_ending": "2013-08-05T05:17:37.459100", "os_type": "None"}, "counter_type": "gauge"}, {"counter_name": "memory", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "timestamp": "2013-08-05T05:17:36.885000", "message_id": "57736aa0-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "MB", "counter_volume": 64.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"state_description": "scheduling", "event_type": "compute.instance.update", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "building", "old_state": "None", "old_task_state": "None", "node": "None", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "api.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-05T05:00:00.000000", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 05:17:36", "launched_at": "", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "new_task_state": "scheduling", "audit_period_ending": "2013-08-05T05:17:36.882975", "os_type": "None"}, "counter_type": "gauge"}]} \ No newline at end of file diff --git a/tests/data/map_fixture_6.json b/tests/data/map_fixture_6.json new file mode 100644 index 0000000..ff262c1 --- /dev/null +++ b/tests/data/map_fixture_6.json @@ -0,0 +1 @@ +{"http://localhost:8777/v2/meters/port?q.field=resource_id&q.value=24916b40-f8d8-49ad-be4a-4edbf6c9a370": [{"counter_name": "port", "user_id": "9692a61b44f246259af534f0b1d95942", "resource_id": "24916b40-f8d8-49ad-be4a-4edbf6c9a370", "timestamp": "2013-08-05T22:04:19.030000", "message_id": "f9f4e18c-fe1a-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "port", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"status": "DOWN", "binding:host_id": "openstack", "name": "", "admin_state_up": "True", "network_id": "0e5f3762-a8a9-4051-ad35-49ad879ebfc3", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "host": "network.openstack", "binding:vif_type": "ovs", "device_owner": "compute:None", "mac_address": "fa:16:3e:de:89:e7", "event_type": "port.create.end", "id": "24916b40-f8d8-49ad-be4a-4edbf6c9a370", "device_id": "0a16330b-d457-425d-8249-a275fab9adea"}, "counter_type": "gauge"}], "http://localhost:8777/v2/meters/port.create?q.field=resource_id&q.value=24916b40-f8d8-49ad-be4a-4edbf6c9a370": [{"counter_name": "port.create", "user_id": "9692a61b44f246259af534f0b1d95942", "resource_id": "24916b40-f8d8-49ad-be4a-4edbf6c9a370", "timestamp": "2013-08-05T22:04:19.030000", "message_id": "f9f5a234-fe1a-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "port", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"status": "DOWN", "binding:host_id": "openstack", "name": "", "admin_state_up": "True", "network_id": "0e5f3762-a8a9-4051-ad35-49ad879ebfc3", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "host": "network.openstack", "binding:vif_type": "ovs", "device_owner": "compute:None", "mac_address": "fa:16:3e:de:89:e7", "event_type": "port.create.end", "id": "24916b40-f8d8-49ad-be4a-4edbf6c9a370", "device_id": "0a16330b-d457-425d-8249-a275fab9adea"}, "counter_type": "delta"}]} \ No newline at end of file diff --git a/tests/data/map_fixture_7.json b/tests/data/map_fixture_7.json new file mode 100644 index 0000000..3ed7022 --- /dev/null +++ b/tests/data/map_fixture_7.json @@ -0,0 +1 @@ +{"http://localhost:8777/v2/meters/storage.objects?q.field=resource_id&q.value=253d975f27004438b89a239b5638a6bc": [{"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-12T04:01:18", "message_id": "d76964ce-0303-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-12T03:51:18", "message_id": "71b8fd7a-0302-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-12T03:41:18", "message_id": "0c071058-0301-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-12T03:31:18", "message_id": "a66aab5c-02ff-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-12T03:21:18", "message_id": "40b6017c-02fe-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-12T03:11:18", "message_id": "db0c4e90-02fc-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-12T03:01:17", "message_id": "7551b834-02fb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-12T02:51:17", "message_id": "0fae0362-02fa-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-12T02:41:17", "message_id": "a9e9df66-02f8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-12T02:31:17", "message_id": "4446c8e6-02f7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-12T02:21:17", "message_id": "de91c646-02f5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-12T02:11:17", "message_id": "78e4bd2c-02f4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-12T02:01:17", "message_id": "133d929c-02f3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-12T01:51:17", "message_id": "ad9345f0-02f1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-12T01:41:17", "message_id": "47dedc20-02f0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-12T01:31:17", "message_id": "e2327bbc-02ee-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-12T01:21:17", "message_id": "7c7ce8e4-02ed-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-12T01:11:16", "message_id": "16d3fc36-02ec-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-12T01:01:16", "message_id": "b1114a1c-02ea-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-12T00:51:16", "message_id": "4b77be26-02e9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-12T00:41:16", "message_id": "e5bdaa92-02e7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-12T00:31:16", "message_id": "800cc558-02e6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-12T00:21:16", "message_id": "1a8acf78-02e5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-12T00:11:16", "message_id": "b4adb482-02e3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-12T00:01:16", "message_id": "4f00e984-02e2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T23:51:16", "message_id": "e95426ec-02e0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T23:41:16", "message_id": "83ae31c6-02df-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T23:31:16", "message_id": "1e038016-02de-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T23:21:15", "message_id": "b84a5b74-02dc-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T23:11:15", "message_id": "52aaf2de-02db-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T23:01:16", "message_id": "ed344e4c-02d9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T22:51:15", "message_id": "874bc6e2-02d8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T22:41:15", "message_id": "21975678-02d7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T22:31:15", "message_id": "bbea5ad8-02d5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T22:21:15", "message_id": "56361d40-02d4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T22:11:15", "message_id": "f0864d04-02d2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T22:01:15", "message_id": "8add1b82-02d1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T21:51:15", "message_id": "25355c46-02d0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T21:41:15", "message_id": "bf86690e-02ce-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T21:31:14", "message_id": "59d26e4c-02cd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T21:21:14", "message_id": "f4288802-02cb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T21:11:14", "message_id": "8e79b13a-02ca-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T21:01:14", "message_id": "28c93c9e-02c9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T20:51:14", "message_id": "c31e7d60-02c7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T20:41:14", "message_id": "5d694f46-02c6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T20:31:14", "message_id": "f7c2a88c-02c4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T20:21:14", "message_id": "9213ca44-02c3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T20:11:14", "message_id": "2c70b1c6-02c2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T20:01:14", "message_id": "c6ba50cc-02c0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T19:51:14", "message_id": "6110063c-02bf-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T19:41:14", "message_id": "fb5e1488-02bd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T19:31:13", "message_id": "95b39f78-02bc-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T19:21:13", "message_id": "3001d0a6-02bb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T19:11:13", "message_id": "ca4f6328-02b9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T19:01:13", "message_id": "649a3d1a-02b8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T18:51:13", "message_id": "fee7cd9e-02b6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T18:41:13", "message_id": "99401420-02b5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T18:31:13", "message_id": "338d03dc-02b4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T18:21:13", "message_id": "cddd9c14-02b2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T18:11:13", "message_id": "682f39b4-02b1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T18:01:13", "message_id": "027e5f24-02b0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T17:51:12", "message_id": "9cd39320-02ae-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T17:41:12", "message_id": "3721b1a2-02ad-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T17:31:12", "message_id": "d179708e-02ab-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T17:21:12", "message_id": "6bc6ed62-02aa-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T17:11:12", "message_id": "0614a014-02a9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T17:01:12", "message_id": "a074bf38-02a7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T16:51:12", "message_id": "3ac50df6-02a6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T16:41:12", "message_id": "d5251ed8-02a4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T16:31:12", "message_id": "6f6d4c24-02a3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T16:21:12", "message_id": "09b5dbea-02a2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T16:11:12", "message_id": "a40b7e68-02a0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T16:01:12", "message_id": "3e678422-029f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T15:51:12", "message_id": "d8b62d32-029d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T15:41:12", "message_id": "7314bf62-029c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T15:31:11", "message_id": "0d6f554c-029b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T15:21:11", "message_id": "a7ce8e84-0299-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T15:11:11", "message_id": "421bd6f6-0298-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T15:01:11", "message_id": "dc6a6062-0296-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T14:51:11", "message_id": "76b52a46-0295-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T14:41:11", "message_id": "11075224-0294-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T14:31:11", "message_id": "ab569724-0292-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T14:21:11", "message_id": "45a90eb2-0291-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T14:11:11", "message_id": "dff7dbee-028f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T14:01:11", "message_id": "7a5261a2-028e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T13:51:11", "message_id": "14a6d1f4-028d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T13:41:11", "message_id": "aef96d5e-028b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T13:31:10", "message_id": "494a7de6-028a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T13:21:10", "message_id": "e3967140-0288-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T13:11:10", "message_id": "7def36ca-0287-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T13:01:10", "message_id": "18471816-0286-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T12:51:10", "message_id": "b29163ec-0284-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T12:41:10", "message_id": "4ce6cfb0-0283-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T12:31:10", "message_id": "e733a3d8-0281-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T12:21:10", "message_id": "817fcb58-0280-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T12:11:10", "message_id": "1bd27b08-027f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T12:01:10", "message_id": "b6204e9e-027d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T11:51:10", "message_id": "507923c8-027c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T11:41:09", "message_id": "eabeb74c-027a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T11:31:09", "message_id": "85136e7a-0279-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T11:21:09", "message_id": "1f641440-0278-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T11:11:09", "message_id": "b9b58be8-0276-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T11:01:09", "message_id": "5405cd86-0275-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T10:51:09", "message_id": "ee54e9e6-0273-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T10:41:09", "message_id": "88aafd20-0272-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T10:31:09", "message_id": "23008dec-0271-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T10:21:09", "message_id": "bd488032-026f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T10:11:09", "message_id": "57ab147a-026e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T10:01:09", "message_id": "f1f7d484-026c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T09:51:08", "message_id": "8c4788b0-026b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T09:41:08", "message_id": "269605d8-026a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T09:31:08", "message_id": "c0edbb1e-0268-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T09:21:08", "message_id": "5b3d3ed0-0267-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T09:11:08", "message_id": "f595553c-0265-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T09:01:08", "message_id": "8fe5a4e0-0264-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T08:51:08", "message_id": "2a42e36a-0263-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T08:41:08", "message_id": "c4961b14-0261-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T08:31:08", "message_id": "5eebad20-0260-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T08:21:08", "message_id": "f92ff5b4-025e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T08:11:08", "message_id": "93846890-025d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T08:01:08", "message_id": "2dda9f92-025c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T07:51:07", "message_id": "c824eab4-025a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T07:41:07", "message_id": "62804d80-0259-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T07:31:07", "message_id": "fccbc902-0257-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T07:21:07", "message_id": "9720ca72-0256-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T07:11:07", "message_id": "3164149c-0255-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T07:01:07", "message_id": "cbc7ce0e-0253-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T06:51:07", "message_id": "661393f0-0252-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T06:41:07", "message_id": "0063a62c-0251-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T06:31:07", "message_id": "9ab382e4-024f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T06:21:07", "message_id": "35144cb2-024e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T06:11:07", "message_id": "cf5cd99e-024c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T06:01:07", "message_id": "69c6d900-024b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T05:51:06", "message_id": "040c1dec-024a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T05:41:06", "message_id": "9e5a25a8-0248-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T05:31:06", "message_id": "38a3a334-0247-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T05:21:06", "message_id": "d2f64d12-0245-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T05:11:06", "message_id": "6d3e56e6-0244-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T05:01:06", "message_id": "0795e760-0243-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T04:51:06", "message_id": "a1ee53da-0241-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T04:41:06", "message_id": "3c3b93b4-0240-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T04:31:06", "message_id": "d6903642-023e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T04:21:06", "message_id": "70f8df7e-023d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T04:11:06", "message_id": "0b2fecb0-023c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T04:01:05", "message_id": "a58744a4-023a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T03:51:05", "message_id": "3fda6aa6-0239-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T03:41:05", "message_id": "da42b28a-0237-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T03:31:05", "message_id": "7476f87c-0236-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T03:21:05", "message_id": "0ec8fe9a-0235-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T03:11:05", "message_id": "a9173a0e-0233-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T03:01:05", "message_id": "436705b4-0232-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T02:51:05", "message_id": "ddb44a20-0230-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T02:41:05", "message_id": "77f683f2-022f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T02:31:05", "message_id": "1255022c-022e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T02:21:04", "message_id": "aca3a240-022c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T02:11:04", "message_id": "46f51682-022b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T02:01:04", "message_id": "e15113a4-0229-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T01:51:04", "message_id": "7b9a2ea2-0228-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T01:41:04", "message_id": "15fdf0a2-0227-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T01:31:04", "message_id": "b04b8b58-0225-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T01:21:04", "message_id": "4a847e0c-0224-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T01:11:04", "message_id": "e4d7053a-0222-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T01:01:04", "message_id": "7f32c24c-0221-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T00:51:04", "message_id": "197b98e4-0220-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T00:41:04", "message_id": "b3cd626c-021e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T00:31:03", "message_id": "4e1cb7ac-021d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T00:21:03", "message_id": "e86db3da-021b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T00:11:03", "message_id": "82bc2dce-021a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T00:01:03", "message_id": "1d11a37e-0219-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T23:51:03", "message_id": "b764bee0-0217-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T23:41:03", "message_id": "51b32506-0216-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T23:31:03", "message_id": "ec0aed2a-0214-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T23:21:03", "message_id": "8663085a-0213-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T23:11:03", "message_id": "20a89828-0212-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T23:01:03", "message_id": "bb54d424-0210-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T22:51:03", "message_id": "5560afea-020f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T22:41:08", "message_id": "f2bf9348-020d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T22:31:03", "message_id": "8a0e2bee-020c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T22:21:02", "message_id": "24560976-020b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T22:11:02", "message_id": "bebba4f0-0209-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T22:01:02", "message_id": "58fbe36a-0208-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T21:51:02", "message_id": "f364f75e-0206-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T21:41:02", "message_id": "8dacacb4-0205-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T21:31:02", "message_id": "27f77364-0204-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T21:21:02", "message_id": "c26155a2-0202-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T21:11:02", "message_id": "5ca463d6-0201-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T21:01:02", "message_id": "f6e2b6d4-01ff-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T20:51:02", "message_id": "9194b5bc-01fe-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T20:41:02", "message_id": "2b99055c-01fd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T20:31:02", "message_id": "c61a8332-01fb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T20:21:01", "message_id": "6035fd86-01fa-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T20:11:01", "message_id": "fa798a5e-01f8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T20:01:01", "message_id": "94d18ec8-01f7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T19:51:01", "message_id": "2f25ed7c-01f6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T19:41:01", "message_id": "c977a30e-01f4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T19:31:01", "message_id": "63d124ea-01f3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T19:21:01", "message_id": "fe0859f4-01f1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T19:11:01", "message_id": "986a5d5a-01f0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T19:01:01", "message_id": "32bb43a8-01ef-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T18:51:00", "message_id": "ccfa3282-01ed-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T18:41:00", "message_id": "67608b70-01ec-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T18:31:00", "message_id": "01ac07d8-01eb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T18:21:00", "message_id": "9bfaec2a-01e9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T18:11:00", "message_id": "3646109a-01e8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T18:01:00", "message_id": "d094fadc-01e6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T17:51:00", "message_id": "6af01e6a-01e5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T17:41:00", "message_id": "0545a248-01e4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T17:31:00", "message_id": "9f90dc2a-01e2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T17:21:00", "message_id": "39e3417a-01e1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T17:11:00", "message_id": "d42ecb34-01df-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T17:00:59", "message_id": "6e809958-01de-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T16:50:59", "message_id": "08d5c836-01dd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T16:40:59", "message_id": "a32288a4-01db-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T16:30:59", "message_id": "3d788220-01da-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T16:20:59", "message_id": "d7c18bd0-01d8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T16:10:59", "message_id": "721d5dfa-01d7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T16:00:59", "message_id": "0c73530c-01d6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T15:50:59", "message_id": "a6c34a22-01d4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T15:40:59", "message_id": "41245a0e-01d3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T15:30:59", "message_id": "db717c92-01d1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T15:20:59", "message_id": "75cad736-01d0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T15:10:59", "message_id": "10199252-01cf-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T15:00:58", "message_id": "aa64628a-01cd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T14:50:58", "message_id": "44bbf020-01cc-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T14:40:58", "message_id": "df039978-01ca-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T14:30:58", "message_id": "794bd056-01c9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T14:20:58", "message_id": "139c9142-01c8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T14:10:58", "message_id": "adf6c106-01c6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T14:00:58", "message_id": "4848bab8-01c5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T13:50:58", "message_id": "e29c6f4e-01c3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T13:40:58", "message_id": "7ce5fd60-01c2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T13:30:58", "message_id": "174308b4-01c1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T13:20:58", "message_id": "b18ac260-01bf-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T13:10:57", "message_id": "4bdca074-01be-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T13:00:57", "message_id": "e62f649c-01bc-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T12:50:57", "message_id": "807d7cca-01bb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T12:40:57", "message_id": "1ad2a496-01ba-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T12:30:57", "message_id": "b52a8d80-01b8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T12:20:57", "message_id": "4f801d16-01b7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T12:10:57", "message_id": "e9d7a75a-01b5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T12:00:57", "message_id": "841fb73c-01b4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T11:50:57", "message_id": "1e75f41a-01b3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T11:40:57", "message_id": "b8d11adc-01b1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T11:30:57", "message_id": "531c58d8-01b0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T11:20:57", "message_id": "ed6fa0b8-01ae-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T11:10:57", "message_id": "87c88fe6-01ad-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T11:00:56", "message_id": "2203a002-01ac-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T10:50:57", "message_id": "bc885d40-01aa-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T10:40:56", "message_id": "56b47c02-01a9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T10:30:56", "message_id": "f111705e-01a7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T10:20:56", "message_id": "8b574622-01a6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T10:10:56", "message_id": "25c6f43e-01a5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T10:00:56", "message_id": "c0034b62-01a3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T09:50:56", "message_id": "5a485c00-01a2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T09:40:56", "message_id": "f4a54512-01a0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T09:30:56", "message_id": "8f10e5fe-019f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T09:20:56", "message_id": "2945ad64-019e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T09:10:55", "message_id": "c39e6a56-019c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T09:00:56", "message_id": "5e07f58c-019b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T08:50:55", "message_id": "f83f0d90-0199-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T08:40:55", "message_id": "929e89da-0198-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T08:30:55", "message_id": "2cd30550-0197-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T08:20:55", "message_id": "c732079c-0195-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T08:10:55", "message_id": "6172b0d8-0194-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T08:00:55", "message_id": "fbc70208-0192-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T07:50:55", "message_id": "962a4c9e-0191-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T07:40:55", "message_id": "307f8054-0190-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T07:30:55", "message_id": "caca6e5a-018e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T07:20:54", "message_id": "65207d48-018d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T07:10:54", "message_id": "ff722ad8-018b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T07:00:54", "message_id": "99bfe8d4-018a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T06:50:54", "message_id": "34166676-0189-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T06:40:54", "message_id": "ce6920a8-0187-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T06:30:54", "message_id": "68bcb982-0186-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T06:20:54", "message_id": "0311ee50-0185-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T06:10:54", "message_id": "9d57633e-0183-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T06:00:54", "message_id": "379fcece-0182-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T05:50:54", "message_id": "d2014a44-0180-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T05:40:54", "message_id": "6c4e7826-017f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T05:30:53", "message_id": "069516bc-017e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T05:20:53", "message_id": "a0ec3c1a-017c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T05:10:53", "message_id": "3b42236c-017b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T05:00:53", "message_id": "d59aea36-0179-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T04:50:53", "message_id": "6fe01bb8-0178-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T04:40:53", "message_id": "0a2a6b4e-0177-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T04:30:53", "message_id": "a47f43f6-0175-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T04:20:53", "message_id": "3ecf419c-0174-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T04:10:53", "message_id": "d922205e-0172-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T04:00:53", "message_id": "737d5b02-0171-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T03:50:53", "message_id": "0dcee59c-0170-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T03:40:53", "message_id": "a822cdea-016e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T03:30:52", "message_id": "4277f67e-016d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T03:20:52", "message_id": "dcc40c92-016b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T03:10:52", "message_id": "7715e0ec-016a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T03:00:52", "message_id": "11683e94-0169-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T02:50:52", "message_id": "abbc3d3a-0167-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T02:40:52", "message_id": "4605e802-0166-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T02:30:52", "message_id": "e05723a0-0164-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T02:20:52", "message_id": "7abb05f8-0163-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T02:10:52", "message_id": "150cd3b8-0162-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T02:00:52", "message_id": "af573320-0160-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T01:50:52", "message_id": "49cf6e38-015f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T01:40:52", "message_id": "e4130ac4-015d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T01:30:52", "message_id": "7e71c080-015c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T01:20:52", "message_id": "18c94240-015b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T01:10:51", "message_id": "b30b62fe-0159-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T01:00:51", "message_id": "4d663222-0158-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T00:50:51", "message_id": "e793bea2-0156-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T00:40:51", "message_id": "81eacdee-0155-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T00:30:51", "message_id": "1c3b4100-0154-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T00:20:51", "message_id": "b67e623a-0152-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T00:10:51", "message_id": "50dba68c-0151-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T00:00:51", "message_id": "eb2945f2-014f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T23:50:50", "message_id": "857b9e90-014e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T23:40:50", "message_id": "1fc73f10-014d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T23:30:50", "message_id": "ba0e11b8-014b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T23:20:50", "message_id": "547120b2-014a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T23:10:50", "message_id": "eeba357a-0148-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T23:00:50", "message_id": "894adf10-0147-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T22:50:50", "message_id": "235f4a8e-0146-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T22:40:50", "message_id": "bda8e444-0144-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T22:30:50", "message_id": "57fe3a96-0143-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T22:20:50", "message_id": "f261cff0-0141-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T22:10:49", "message_id": "8c9d910a-0140-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T22:00:49", "message_id": "26fc5f30-013f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T21:50:49", "message_id": "c150615a-013d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T21:40:49", "message_id": "5ba9040c-013c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T21:30:49", "message_id": "f60020c8-013a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T21:20:49", "message_id": "90499328-0139-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T21:10:49", "message_id": "2aa5a4ea-0138-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T21:00:49", "message_id": "c4fcb670-0136-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T20:50:49", "message_id": "5f49d728-0135-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T20:40:49", "message_id": "f9a04bd8-0133-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T20:30:49", "message_id": "93e56ff4-0132-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T20:20:49", "message_id": "2e58580a-0131-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T20:10:49", "message_id": "c8943800-012f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T20:00:49", "message_id": "62e4c0a2-012e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T19:50:49", "message_id": "fd41f07c-012c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T19:40:48", "message_id": "97836df2-012b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T19:30:48", "message_id": "31dbab78-012a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T19:20:48", "message_id": "cc3d7ed2-0128-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T19:10:48", "message_id": "668263f6-0127-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T19:00:48", "message_id": "00cd281c-0126-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T18:50:48", "message_id": "9b190c76-0124-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T18:40:48", "message_id": "356e2e0c-0123-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T18:30:48", "message_id": "cfb7ef9a-0121-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T18:20:48", "message_id": "6a063798-0120-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T18:10:47", "message_id": "04567710-011f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T18:00:47", "message_id": "9e9efc22-011d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T17:50:47", "message_id": "38f92952-011c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T17:40:47", "message_id": "d345894e-011a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T17:30:47", "message_id": "6d9462a6-0119-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T17:20:47", "message_id": "07edbc1e-0118-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T17:10:47", "message_id": "a23b6084-0116-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T17:00:47", "message_id": "3c8e126e-0115-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T16:50:47", "message_id": "d6d94750-0113-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T16:40:47", "message_id": "7129cf98-0112-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T16:30:47", "message_id": "0b8afa00-0111-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T16:20:46", "message_id": "a5d16ec0-010f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T16:10:46", "message_id": "40293a54-010e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T16:00:46", "message_id": "da781000-010c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T15:50:49", "message_id": "764e25e8-010b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T15:40:47", "message_id": "0f792e90-010a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T15:30:46", "message_id": "a9924806-0108-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T15:20:46", "message_id": "43c93c38-0107-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T15:10:46", "message_id": "de30acae-0105-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T15:00:46", "message_id": "786f2ee6-0104-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T14:50:46", "message_id": "12ca0d96-0103-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T14:40:46", "message_id": "ad159156-0101-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T14:30:46", "message_id": "475fcaa8-0100-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T14:20:46", "message_id": "e1bdc05c-00fe-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T14:10:46", "message_id": "7c451bb8-00fd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T14:00:45", "message_id": "164cef1c-00fc-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T13:50:45", "message_id": "b0accbb0-00fa-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T13:40:45", "message_id": "4af6441e-00f9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T13:30:45", "message_id": "e5475c1c-00f7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T13:20:46", "message_id": "7ffc8e14-00f6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T13:10:45", "message_id": "19dc9b2a-00f5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T13:00:45", "message_id": "b439ad36-00f3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T12:50:45", "message_id": "4e81288a-00f2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T12:40:45", "message_id": "e8daa476-00f0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T12:30:44", "message_id": "8330aa04-00ef-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T12:20:44", "message_id": "1d7aef7c-00ee-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T12:10:44", "message_id": "b7cc40aa-00ec-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T12:00:44", "message_id": "521f5428-00eb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T11:50:44", "message_id": "ec78803c-00e9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T11:40:44", "message_id": "86c17b32-00e8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T11:30:44", "message_id": "211a8888-00e7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T11:20:44", "message_id": "bb69ce0a-00e5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T11:10:44", "message_id": "55c15dc6-00e4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T11:00:44", "message_id": "f008fb48-00e2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T10:50:44", "message_id": "8a5ac1e2-00e1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T10:40:43", "message_id": "24aa4e40-00e0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T10:30:43", "message_id": "bf01a0bc-00de-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T10:20:43", "message_id": "594d55aa-00dd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T10:10:43", "message_id": "f3a18d08-00db-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T10:00:43", "message_id": "8e02daca-00da-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T09:50:43", "message_id": "2841f424-00d9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T09:40:43", "message_id": "c29c8b3a-00d7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T09:30:43", "message_id": "5ceca56e-00d6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T09:20:43", "message_id": "f73ed9a4-00d4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T09:10:43", "message_id": "9198ff72-00d3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T09:00:43", "message_id": "2be58f8e-00d2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T08:50:42", "message_id": "c62f4f00-00d0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T08:40:42", "message_id": "6089da9a-00cf-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T08:30:42", "message_id": "fade0c6c-00cd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T08:20:42", "message_id": "952ecc5e-00cc-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T08:10:42", "message_id": "2f798bc0-00cb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T08:00:42", "message_id": "c9c94c4e-00c9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T07:50:42", "message_id": "641a6852-00c8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T07:40:42", "message_id": "fe963958-00c6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T07:30:42", "message_id": "98c73e70-00c5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T07:20:42", "message_id": "330ab4be-00c4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T07:10:42", "message_id": "cd5d9326-00c2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T07:00:41", "message_id": "67b32262-00c1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T06:50:41", "message_id": "01fe8700-00c0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T06:40:41", "message_id": "9c52ed84-00be-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T06:30:41", "message_id": "36a5b986-00bd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T06:20:41", "message_id": "d0f1d8b4-00bb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T06:10:41", "message_id": "6b48477e-00ba-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T06:00:41", "message_id": "05a39064-00b9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T05:50:41", "message_id": "9fef790a-00b7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T05:40:41", "message_id": "3a46d6b2-00b6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T05:30:41", "message_id": "d4930c74-00b4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T05:20:41", "message_id": "6ee4602c-00b3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T05:10:41", "message_id": "0937d764-00b2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T05:00:40", "message_id": "a38cbce6-00b0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T04:50:40", "message_id": "3df26f62-00af-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T04:40:40", "message_id": "d84a4168-00ad-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T04:30:40", "message_id": "729775b2-00ac-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T04:20:40", "message_id": "0cf799c2-00ab-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T04:10:40", "message_id": "a751325a-00a9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T04:00:40", "message_id": "41c694c6-00a8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T03:50:41", "message_id": "dc4380f6-00a6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T03:40:40", "message_id": "76568b22-00a5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T03:30:40", "message_id": "10dc4698-00a4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T03:20:40", "message_id": "ab050112-00a2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T03:10:40", "message_id": "45607c16-00a1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T03:00:40", "message_id": "dfb48070-009f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T02:50:40", "message_id": "79f81090-009e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T02:40:40", "message_id": "1480e30a-009d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T02:30:40", "message_id": "ae9ee0ce-009b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T02:20:40", "message_id": "48f5097a-009a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T02:10:39", "message_id": "e348ccf2-0098-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T02:00:39", "message_id": "7d9b205e-0097-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T01:50:39", "message_id": "17d853dc-0096-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T01:40:39", "message_id": "b2281348-0094-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T01:30:39", "message_id": "4c7acf5a-0093-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T01:20:39", "message_id": "e6d746ac-0091-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T01:10:39", "message_id": "811bf084-0090-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T01:00:39", "message_id": "1b7a2a3a-008f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T00:50:39", "message_id": "b5c0e3ba-008d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T00:40:38", "message_id": "500b54e8-008c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T00:30:38", "message_id": "ea6b9ec8-008a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T00:20:38", "message_id": "84c0d1ca-0089-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T00:10:38", "message_id": "1f0d47d8-0088-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T00:00:38", "message_id": "b95e0518-0086-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T23:50:38", "message_id": "53a90426-0085-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T23:40:38", "message_id": "ee09fbc6-0083-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T23:30:38", "message_id": "884feb8e-0082-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T23:20:38", "message_id": "2299fdf8-0081-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T23:10:38", "message_id": "bcf68ee0-007f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T23:00:38", "message_id": "577eb246-007e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T22:50:37", "message_id": "f1911c0e-007c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T22:40:37", "message_id": "8be9b4d4-007b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T22:30:37", "message_id": "2629b3f2-007a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T22:20:37", "message_id": "c085f3ea-0078-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T22:10:37", "message_id": "5ad5a744-0077-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T22:00:37", "message_id": "f52703da-0075-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T21:50:37", "message_id": "8f82e892-0074-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T21:40:37", "message_id": "29cc85ae-0073-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T21:30:37", "message_id": "c421b3ec-0071-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T21:20:37", "message_id": "5e827be4-0070-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T21:10:37", "message_id": "f8c67a68-006e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T21:00:36", "message_id": "930fcf72-006d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T20:50:36", "message_id": "2d5d56dc-006c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T20:40:36", "message_id": "c7b04214-006a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T20:30:36", "message_id": "6208d986-0069-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T20:20:36", "message_id": "fc4e046e-0067-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T20:10:36", "message_id": "96ab04e6-0066-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T20:00:36", "message_id": "30f670aa-0065-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T19:50:36", "message_id": "cb4e5c82-0063-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T19:40:36", "message_id": "65994db2-0062-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T19:30:36", "message_id": "ffeb8dbe-0060-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T19:20:36", "message_id": "9a37af8a-005f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T19:10:35", "message_id": "348c8378-005e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T19:00:35", "message_id": "cee04678-005c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T18:50:35", "message_id": "692fff40-005b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T18:40:35", "message_id": "037cb3f6-005a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T18:30:35", "message_id": "9ddcec7e-0058-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T18:20:35", "message_id": "381cecfa-0057-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T18:10:35", "message_id": "d27a12fc-0055-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T18:00:35", "message_id": "6ccbf91c-0054-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T17:50:35", "message_id": "071eb2ea-0053-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T17:40:35", "message_id": "a17869f0-0051-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T17:30:35", "message_id": "3bcc8484-0050-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T17:20:35", "message_id": "d619eb96-004e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T17:10:34", "message_id": "706a352c-004d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T17:00:34", "message_id": "0ab8de1e-004c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T16:50:34", "message_id": "a50bbed4-004a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T16:40:34", "message_id": "3f66e852-0049-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T16:30:34", "message_id": "d9b8ecc2-0047-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T16:20:34", "message_id": "740d9e46-0046-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T16:10:34", "message_id": "0e59e240-0045-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T16:00:34", "message_id": "a8b551b4-0043-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T15:50:34", "message_id": "43043836-0042-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T15:40:34", "message_id": "dd5138f0-0040-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T15:30:34", "message_id": "77a65a18-003f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T15:20:34", "message_id": "11fc4214-003e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T15:10:33", "message_id": "ac4b4ae2-003c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T15:00:33", "message_id": "469617dc-003b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T14:50:33", "message_id": "e0ee7d08-0039-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T14:40:33", "message_id": "7b388f5e-0038-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T14:30:33", "message_id": "1592ec04-0037-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T14:20:33", "message_id": "afde6722-0035-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T14:10:33", "message_id": "4a408464-0034-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T14:00:33", "message_id": "e4c1d12a-0032-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T13:50:33", "message_id": "7ed3caf4-0031-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T13:40:33", "message_id": "1931cc74-0030-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T13:30:33", "message_id": "b37febbe-002e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T13:20:33", "message_id": "4ddb49da-002d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T13:10:32", "message_id": "e827c7d6-002b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T13:00:32", "message_id": "8275ecac-002a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T12:50:32", "message_id": "1cca26d0-0029-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T12:40:32", "message_id": "b71021ce-0027-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T12:30:32", "message_id": "51691ea8-0026-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T12:20:32", "message_id": "ebb31fba-0024-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T12:10:32", "message_id": "85fd27de-0023-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T12:00:32", "message_id": "205a563c-0022-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T11:50:32", "message_id": "baa63f6e-0020-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T11:40:32", "message_id": "550d2240-001f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T11:30:32", "message_id": "ef62ee1c-001d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T11:20:31", "message_id": "89a45d0a-001c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T11:10:32", "message_id": "241541b2-001b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T11:00:31", "message_id": "be54d564-0019-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T10:50:31", "message_id": "58a6c638-0018-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T10:40:31", "message_id": "f30318a0-0016-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T10:30:31", "message_id": "8d7084f6-0015-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T10:20:31", "message_id": "27ba5bec-0014-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T10:10:31", "message_id": "c22137ca-0012-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T10:00:31", "message_id": "5c4565c6-0011-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T09:50:31", "message_id": "f694d9d8-000f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T09:40:31", "message_id": "90ddfd64-000e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T09:30:31", "message_id": "2b40b4ca-000d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T09:20:30", "message_id": "c5852da6-000b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T09:10:30", "message_id": "5fd3c9f0-000a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T09:00:30", "message_id": "fa2dc214-0008-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T08:50:30", "message_id": "947c79c0-0007-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T08:40:30", "message_id": "2ed56c22-0006-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T08:30:30", "message_id": "c92b3470-0004-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T08:20:30", "message_id": "6376ee86-0003-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T08:10:30", "message_id": "fdd683ee-0001-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T08:00:30", "message_id": "981cb88a-0000-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T07:50:30", "message_id": "326bcb3a-ffff-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T07:40:30", "message_id": "ccbc9c3e-fffd-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T07:30:30", "message_id": "670b7ba4-fffc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T07:20:29", "message_id": "01654d08-fffb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T07:10:29", "message_id": "9bacb20e-fff9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T07:00:29", "message_id": "35f7e29a-fff8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T06:50:29", "message_id": "d05ada24-fff6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T06:40:29", "message_id": "6aa2bc16-fff5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T06:30:29", "message_id": "04f03070-fff4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T06:20:29", "message_id": "9f440176-fff2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T06:10:29", "message_id": "39948a86-fff1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T06:00:29", "message_id": "d3ecc690-ffef-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T05:50:29", "message_id": "6e456dde-ffee-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T05:40:29", "message_id": "089e5d3e-ffed-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T05:30:28", "message_id": "a2e718b0-ffeb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T05:20:28", "message_id": "3d2e76d6-ffea-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T05:10:28", "message_id": "d783c1f2-ffe8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T05:00:28", "message_id": "71d8c330-ffe7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T04:50:28", "message_id": "0c1c8cf8-ffe6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T04:40:28", "message_id": "a67dfb94-ffe4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T04:30:28", "message_id": "40c1e406-ffe3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T04:20:28", "message_id": "db1be814-ffe1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T04:10:28", "message_id": "756cc4e4-ffe0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T04:00:28", "message_id": "0fb53d58-ffdf-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T03:50:28", "message_id": "aa0c52c6-ffdd-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T03:40:27", "message_id": "4459bc80-ffdc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T03:30:27", "message_id": "deab06c4-ffda-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T03:20:27", "message_id": "78fa826a-ffd9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T03:10:27", "message_id": "134f0266-ffd8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T03:00:27", "message_id": "ada16b08-ffd6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T02:50:27", "message_id": "47eca31e-ffd5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T02:40:27", "message_id": "e23b3482-ffd3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T02:30:27", "message_id": "7c95c3f0-ffd2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T02:20:27", "message_id": "170009fc-ffd1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T02:10:27", "message_id": "b129e194-ffcf-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T02:00:26", "message_id": "4b856f26-ffce-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T01:50:26", "message_id": "e5cfcc7c-ffcc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T01:40:26", "message_id": "8021732c-ffcb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T01:30:26", "message_id": "1a72932c-ffca-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T01:20:26", "message_id": "b4ca20ae-ffc8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T01:10:26", "message_id": "4f20305a-ffc7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T01:00:26", "message_id": "e96da93c-ffc5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T00:50:26", "message_id": "83c32d60-ffc4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T00:40:26", "message_id": "1e1767fc-ffc3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T00:30:26", "message_id": "b86578d2-ffc1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T00:20:26", "message_id": "5310bc86-ffc0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T00:10:25", "message_id": "ed05a4c0-ffbe-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T00:00:26", "message_id": "878177ba-ffbd-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T23:50:25", "message_id": "21b1db74-ffbc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T23:40:25", "message_id": "bc07b8b2-ffba-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T23:30:25", "message_id": "56607d42-ffb9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T23:20:25", "message_id": "f0cc2a5e-ffb7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T23:10:25", "message_id": "8b1d25ba-ffb6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T23:00:25", "message_id": "259556a0-ffb5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T22:50:25", "message_id": "bf8fe5b0-ffb3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T22:40:25", "message_id": "59edc5a2-ffb2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T22:30:25", "message_id": "f43de6de-ffb0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T22:20:24", "message_id": "8e7e3bb0-ffaf-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T22:10:24", "message_id": "28e39d82-ffae-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T22:00:24", "message_id": "c329d638-ffac-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T21:50:24", "message_id": "5d6c46ba-ffab-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T21:40:24", "message_id": "f7c63cd6-ffa9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T21:30:24", "message_id": "921eabe4-ffa8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T21:20:24", "message_id": "2c66ba7c-ffa7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T21:10:24", "message_id": "c6aade44-ffa5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T21:00:24", "message_id": "61053f40-ffa4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T20:50:24", "message_id": "fb556dba-ffa2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T20:40:23", "message_id": "95a1659c-ffa1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T20:30:23", "message_id": "2ff75f0e-ffa0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T20:20:23", "message_id": "ca49ca9e-ff9e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T20:10:23", "message_id": "648ef32e-ff9d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T20:00:23", "message_id": "fee837ca-ff9b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T19:50:23", "message_id": "9931d8c4-ff9a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T19:40:23", "message_id": "338b5bea-ff99-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T19:30:23", "message_id": "cddc9b8e-ff97-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T19:20:23", "message_id": "68325d10-ff96-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T19:10:23", "message_id": "02814234-ff95-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T19:00:23", "message_id": "9cca46f8-ff93-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T18:50:22", "message_id": "37240664-ff92-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T18:40:22", "message_id": "d176113c-ff90-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T18:30:22", "message_id": "6bb67b44-ff8f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T18:20:22", "message_id": "06061c4c-ff8e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T18:10:22", "message_id": "a05b52e6-ff8c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T18:00:22", "message_id": "3aaf763a-ff8b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T17:50:22", "message_id": "d4ff8100-ff89-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T17:40:22", "message_id": "6f571fa8-ff88-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T17:30:22", "message_id": "09a67e52-ff87-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T17:20:22", "message_id": "a3f2a7e4-ff85-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T17:10:22", "message_id": "3e4b56c6-ff84-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T17:00:21", "message_id": "d8904892-ff82-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T16:50:21", "message_id": "72d8e780-ff81-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T16:40:21", "message_id": "0d2f242c-ff80-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T16:30:21", "message_id": "a78bfa4c-ff7e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T16:20:21", "message_id": "41cf44a8-ff7d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T16:10:21", "message_id": "dc29a2ac-ff7b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T16:00:21", "message_id": "767b15f4-ff7a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T15:50:21", "message_id": "10cf2ebc-ff79-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T15:40:21", "message_id": "ab1a7e38-ff77-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T15:30:21", "message_id": "4566d146-ff76-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T15:20:20", "message_id": "dfbaa5e4-ff74-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T15:10:20", "message_id": "7a07da88-ff73-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T15:00:20", "message_id": "1457fb42-ff72-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T14:50:20", "message_id": "aeab1a3c-ff70-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T14:40:20", "message_id": "48f9cdc4-ff6f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T14:30:20", "message_id": "e360007e-ff6d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T14:20:20", "message_id": "7dafc030-ff6c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T14:10:20", "message_id": "17fed3b2-ff6b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T14:00:20", "message_id": "b24f3d6e-ff69-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T13:50:20", "message_id": "4c9cafa2-ff68-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T13:40:20", "message_id": "e704a786-ff66-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T13:30:20", "message_id": "814a1648-ff65-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T13:20:19", "message_id": "1b9c001e-ff64-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T13:10:19", "message_id": "b5f2cbcc-ff62-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T13:00:19", "message_id": "504dff40-ff61-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T12:50:19", "message_id": "eaa3bdc0-ff5f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T12:40:19", "message_id": "84ee6e36-ff5e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T12:30:19", "message_id": "1f44a42a-ff5d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T12:20:19", "message_id": "b999f3a6-ff5b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T12:10:19", "message_id": "53df7e74-ff5a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T12:00:19", "message_id": "ee2daab6-ff58-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T11:50:19", "message_id": "88862e82-ff57-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T11:40:19", "message_id": "22daf1ae-ff56-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T11:30:19", "message_id": "bd2b28b6-ff54-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T11:20:18", "message_id": "577b0ea6-ff53-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T11:10:19", "message_id": "f1e8a126-ff51-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T11:00:18", "message_id": "8c2f50ec-ff50-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T10:50:18", "message_id": "2682dac6-ff4f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T10:40:18", "message_id": "c0dea2dc-ff4d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T10:30:18", "message_id": "5b275480-ff4c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T10:20:18", "message_id": "f57a53a4-ff4a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T10:10:18", "message_id": "8fd84250-ff49-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T10:00:18", "message_id": "2a33eaae-ff48-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T09:50:18", "message_id": "c4729658-ff46-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T09:40:18", "message_id": "5eccc5a4-ff45-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T09:30:18", "message_id": "f90c25bc-ff43-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T09:20:18", "message_id": "93654258-ff42-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T09:10:17", "message_id": "2db63c1a-ff41-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T09:00:17", "message_id": "c7fa73ce-ff3f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T08:50:17", "message_id": "624d7478-ff3e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T08:40:17", "message_id": "fca51cee-ff3c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T08:30:17", "message_id": "96f2e8dc-ff3b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T08:20:17", "message_id": "3136145c-ff3a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T08:10:17", "message_id": "cb86f410-ff38-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T08:00:17", "message_id": "65d61aca-ff37-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T07:50:17", "message_id": "00270ff0-ff36-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T07:40:16", "message_id": "9a744b1a-ff34-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T07:30:16", "message_id": "34d02514-ff33-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T07:20:16", "message_id": "cf1771ba-ff31-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T07:10:16", "message_id": "6966c6b4-ff30-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T07:00:16", "message_id": "03c0fd30-ff2f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T06:50:16", "message_id": "9e133ef4-ff2d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T06:40:16", "message_id": "38634a00-ff2c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T06:30:16", "message_id": "d2aa2a40-ff2a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T06:20:16", "message_id": "6d0c7eaa-ff29-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T06:10:16", "message_id": "07699480-ff28-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T06:00:16", "message_id": "a1a9ade8-ff26-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T05:50:16", "message_id": "3c05db52-ff25-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T05:40:15", "message_id": "d647f152-ff23-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T05:30:16", "message_id": "70c123ae-ff22-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T05:20:15", "message_id": "0af51090-ff21-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T05:10:15", "message_id": "a53a0284-ff1f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T05:00:15", "message_id": "3fa0d962-ff1e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T04:50:15", "message_id": "d9e461b2-ff1c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T04:40:15", "message_id": "743d6d64-ff1b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T04:30:15", "message_id": "0e9be69e-ff1a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T04:20:15", "message_id": "a8dcd9cc-ff18-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T04:10:15", "message_id": "4338ede6-ff17-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T04:00:15", "message_id": "dd8622f8-ff15-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T03:50:15", "message_id": "77ef3642-ff14-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T03:40:14", "message_id": "12300698-ff13-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T03:30:14", "message_id": "ac7775f8-ff11-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T03:20:14", "message_id": "46ce3972-ff10-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T03:10:14", "message_id": "e132c606-ff0e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T03:00:14", "message_id": "7b709894-ff0d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T02:50:14", "message_id": "15de4f5e-ff0c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T02:40:14", "message_id": "b0288284-ff0a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T02:30:14", "message_id": "4a7a826c-ff09-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T02:20:14", "message_id": "e4c2b404-ff07-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T02:10:14", "message_id": "7f1369ec-ff06-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T02:00:14", "message_id": "1960c1ea-ff05-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T01:50:14", "message_id": "b3c10170-ff03-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T01:40:13", "message_id": "4e059392-ff02-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T01:30:13", "message_id": "e85debc6-ff00-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T01:20:13", "message_id": "82afbf30-feff-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T01:10:13", "message_id": "1d089a9a-fefe-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T01:00:13", "message_id": "b74b8d58-fefc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T00:50:13", "message_id": "51a816d4-fefb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T00:40:13", "message_id": "ebfd6362-fef9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T00:30:13", "message_id": "863f5d6a-fef8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T00:20:13", "message_id": "20913f98-fef7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T00:10:13", "message_id": "bae41f2c-fef5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T00:00:12", "message_id": "552c07e0-fef4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T23:50:12", "message_id": "ef8f1d74-fef2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T23:40:12", "message_id": "89df84a6-fef1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T23:30:12", "message_id": "24358606-fef0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T23:20:12", "message_id": "be970794-feee-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T23:10:12", "message_id": "58cf0444-feed-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T23:00:12", "message_id": "f36cb444-feeb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T22:50:12", "message_id": "8d78bdaa-feea-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T22:40:12", "message_id": "27cdbea2-fee9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T22:30:12", "message_id": "c2200c14-fee7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T22:20:12", "message_id": "5c68c358-fee6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T22:10:12", "message_id": "f6d07276-fee4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T22:00:12", "message_id": "9139d714-fee3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T21:50:11", "message_id": "2b6956c2-fee2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T21:40:12", "message_id": "c5e0dace-fee0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T21:30:11", "message_id": "6017b146-fedf-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T21:20:11", "message_id": "fa6a921a-fedd-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T21:10:11", "message_id": "94b33a9a-fedc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T21:00:11", "message_id": "2efa0e46-fedb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T20:50:11", "message_id": "c956c06c-fed9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T20:40:11", "message_id": "63b55d50-fed8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T20:30:11", "message_id": "fe012c92-fed6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T20:20:11", "message_id": "987f0110-fed5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T20:10:11", "message_id": "329e1274-fed4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T20:00:11", "message_id": "cd072bb8-fed2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T19:50:10", "message_id": "674f47f2-fed1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T19:40:10", "message_id": "01a6adb0-fed0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T19:30:10", "message_id": "9bf793ae-fece-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T19:20:10", "message_id": "36446790-fecd-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T19:10:10", "message_id": "d09471fc-fecb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T19:00:10", "message_id": "6ad446d6-feca-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T18:50:10", "message_id": "0550c9c0-fec9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T18:40:10", "message_id": "9f880d66-fec7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T18:30:10", "message_id": "39d20248-fec6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T18:20:10", "message_id": "d428216c-fec4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T18:10:09", "message_id": "6e749658-fec3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T18:00:09", "message_id": "08b93522-fec2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T17:50:09", "message_id": "a311747e-fec0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T17:40:09", "message_id": "3d6935fe-febf-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T17:30:09", "message_id": "d7b4bcd4-febd-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T17:20:09", "message_id": "720c537a-febc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T17:10:09", "message_id": "0c52524c-febb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T17:00:09", "message_id": "a6a4ae46-feb9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T16:50:09", "message_id": "40f8405e-feb8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T16:40:09", "message_id": "db412bdc-feb6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T16:30:08", "message_id": "7598776e-feb5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T16:20:08", "message_id": "0fe52de6-feb4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T16:10:08", "message_id": "aa42670c-feb2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T16:00:08", "message_id": "4494d1f2-feb1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T15:50:08", "message_id": "deddb848-feaf-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T15:40:08", "message_id": "793bc396-feae-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T15:30:08", "message_id": "13811584-fead-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T15:20:08", "message_id": "add68bd4-feab-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T15:10:08", "message_id": "48245344-feaa-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T15:00:08", "message_id": "e27571a0-fea8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T14:50:08", "message_id": "7ccb1a4a-fea7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T14:40:08", "message_id": "17298d12-fea6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T14:30:08", "message_id": "b18319c0-fea4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T14:20:07", "message_id": "4bd1adb8-fea3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T14:10:07", "message_id": "e61e9522-fea1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T14:00:07", "message_id": "808c5312-fea0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T13:50:07", "message_id": "1ad0054c-fe9f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T13:40:07", "message_id": "b512936a-fe9d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T13:30:07", "message_id": "4f6599b4-fe9c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T13:20:07", "message_id": "e9b5ac36-fe9a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T13:10:07", "message_id": "84044240-fe99-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T13:00:07", "message_id": "1e5fb7d6-fe98-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T12:50:07", "message_id": "b8b468ce-fe96-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T12:40:07", "message_id": "53191e7a-fe95-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T12:30:07", "message_id": "ed5864de-fe93-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T12:20:06", "message_id": "87a3b34c-fe92-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T12:10:06", "message_id": "2201822c-fe91-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T12:00:06", "message_id": "bc529dea-fe8f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T11:50:06", "message_id": "56a11a36-fe8e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T11:40:06", "message_id": "f0ff1d3c-fe8c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T11:30:07", "message_id": "8bd0a36e-fe8b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T11:20:06", "message_id": "25976282-fe8a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T11:10:06", "message_id": "bfe36662-fe88-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T11:00:06", "message_id": "5a3c566c-fe87-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T10:50:06", "message_id": "f4906912-fe85-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T10:40:06", "message_id": "8ee20040-fe84-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T10:30:05", "message_id": "292fbcb6-fe83-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T10:20:05", "message_id": "c385c3e8-fe81-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T10:10:05", "message_id": "5dcc2c8c-fe80-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T10:00:05", "message_id": "f823698c-fe7e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T09:50:05", "message_id": "926faf0c-fe7d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T09:40:05", "message_id": "2cc63faa-fe7c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T09:30:05", "message_id": "c71b3fda-fe7a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T09:20:05", "message_id": "6164bbea-fe79-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T09:10:05", "message_id": "fbbd75c6-fe77-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T09:00:05", "message_id": "960beb46-fe76-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T08:50:05", "message_id": "305d1f82-fe75-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T08:40:04", "message_id": "caafdd38-fe73-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T08:30:04", "message_id": "64fe7b12-fe72-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T08:20:04", "message_id": "ff520f3c-fe70-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T08:10:04", "message_id": "99a70c1a-fe6f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T08:00:04", "message_id": "33f9101c-fe6e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T07:50:04", "message_id": "ce49b86c-fe6c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T07:40:04", "message_id": "68aad244-fe6b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T07:30:04", "message_id": "02faf8da-fe6a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T07:20:04", "message_id": "9d4f1562-fe68-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T07:10:04", "message_id": "379ea6fc-fe67-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T07:00:04", "message_id": "d1eeb514-fe65-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T06:50:04", "message_id": "6c3e6ae4-fe64-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T06:40:04", "message_id": "069b15b2-fe63-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T06:30:03", "message_id": "a0edddcc-fe61-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T06:20:03", "message_id": "3b3859d6-fe60-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T06:10:03", "message_id": "d583fefc-fe5e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T06:00:03", "message_id": "6fd56a7e-fe5d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T05:50:03", "message_id": "0a27b87c-fe5c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T05:40:03", "message_id": "a47ed2f4-fe5a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T05:30:03", "message_id": "3ec67af8-fe59-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T05:20:03", "message_id": "d91a5fcc-fe57-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T05:10:03", "message_id": "7371dd40-fe56-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T05:00:03", "message_id": "0dbd6f7e-fe55-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T04:50:02", "message_id": "a80fbfb6-fe53-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T04:40:02", "message_id": "42662fca-fe52-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T04:30:02", "message_id": "dcbda7e4-fe50-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T04:20:02", "message_id": "77062c10-fe4f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T04:10:02", "message_id": "114d0a98-fe4e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T04:00:02", "message_id": "aba8dc4a-fe4c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T03:50:02", "message_id": "45f7a44a-fe4b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T03:40:02", "message_id": "e04cb4ba-fe49-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T03:30:02", "message_id": "7a971904-fe48-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T03:20:02", "message_id": "14e4a3b6-fe47-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T03:10:02", "message_id": "af413368-fe45-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T03:00:01", "message_id": "498c5648-fe44-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T02:50:01", "message_id": "e3db9d3c-fe42-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T02:40:01", "message_id": "7e2a09fc-fe41-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T02:30:01", "message_id": "1888c8c8-fe40-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T02:20:01", "message_id": "b2dbf6d6-fe3e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T02:10:01", "message_id": "4d26d082-fe3d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T02:00:01", "message_id": "e77de136-fe3b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T01:50:01", "message_id": "81d0f96e-fe3a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T01:40:01", "message_id": "1c2edafa-fe39-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T01:30:01", "message_id": "b67e3fda-fe37-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T01:20:01", "message_id": "50d9f2ce-fe36-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T01:10:01", "message_id": "eb207ada-fe34-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T01:00:01", "message_id": "8579ecee-fe33-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T00:50:00", "message_id": "1fc0f07e-fe32-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T00:40:00", "message_id": "ba199cea-fe30-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T00:30:00", "message_id": "54650d4a-fe2f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T00:20:00", "message_id": "eeb463d4-fe2d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T00:10:00", "message_id": "890824f4-fe2c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T00:00:00", "message_id": "235b1d92-fe2b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T23:50:00", "message_id": "bdadcfb8-fe29-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T23:40:00", "message_id": "58026102-fe28-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T23:30:00", "message_id": "f25102ec-fe26-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T23:20:00", "message_id": "8cae639a-fe25-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T23:10:00", "message_id": "273a8684-fe24-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T23:00:00", "message_id": "c18d4ad4-fe22-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T22:49:59", "message_id": "5b964088-fe21-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T22:39:59", "message_id": "f5e2387e-fe1f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T22:29:59", "message_id": "903c53c0-fe1e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T22:19:59", "message_id": "2a90b0b2-fe1d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T22:09:59", "message_id": "c4dd8caa-fe1b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T21:59:59", "message_id": "5f2dd4b0-fe1a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T21:49:59", "message_id": "f97f0dce-fe18-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T21:39:59", "message_id": "93cb8710-fe17-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T21:29:59", "message_id": "2e156cf2-fe16-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T21:19:58", "message_id": "c86cdb5c-fe14-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T21:09:58", "message_id": "62bdd956-fe13-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T20:59:58", "message_id": "fd122dd8-fe11-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T20:49:58", "message_id": "9758ab4e-fe10-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T20:39:58", "message_id": "31a9f5b0-fe0f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T20:29:58", "message_id": "cbf95fea-fe0d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T20:19:58", "message_id": "6653ea26-fe0c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T20:09:58", "message_id": "009dc4b4-fe0b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T19:59:58", "message_id": "9af3ba98-fe09-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T19:49:58", "message_id": "35467470-fe08-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T19:39:58", "message_id": "cfa3338e-fe06-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T19:29:58", "message_id": "69efd50c-fe05-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T19:19:57", "message_id": "0441141a-fe04-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T19:09:57", "message_id": "9e972d62-fe02-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T18:59:57", "message_id": "38e624ce-fe01-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T18:49:57", "message_id": "d3350d4e-fdff-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T18:39:57", "message_id": "6d8df4b6-fdfe-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T18:29:57", "message_id": "07e0d9a4-fdfd-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T18:19:57", "message_id": "a23633fc-fdfb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T18:09:57", "message_id": "3c95dcc4-fdfa-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T17:59:57", "message_id": "d6db3ccc-fdf8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T17:49:57", "message_id": "7131349a-fdf7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T17:39:57", "message_id": "0b82376c-fdf6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T17:29:57", "message_id": "a5d82698-fdf4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T17:19:56", "message_id": "4027ae64-fdf3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T17:09:56", "message_id": "da7bd64a-fdf1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T16:59:56", "message_id": "74cce448-fdf0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T16:49:56", "message_id": "0f1dad9a-fdef-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T16:39:56", "message_id": "a9791912-fded-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T16:29:56", "message_id": "43f39172-fdec-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T16:19:56", "message_id": "de24ff76-fdea-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T16:09:56", "message_id": "788190c2-fde9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T15:59:56", "message_id": "12d17aae-fde8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T15:49:56", "message_id": "ad294b6a-fde6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T15:39:56", "message_id": "477d4f38-fde5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T15:29:56", "message_id": "e1ce8f36-fde3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T15:19:56", "message_id": "7c4ff2ae-fde2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T15:09:56", "message_id": "16696eda-fde1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T14:59:55", "message_id": "b0b912c6-fddf-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T14:49:55", "message_id": "4b16ba0a-fdde-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T14:39:55", "message_id": "e56114c2-fddc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T14:29:55", "message_id": "7fb59252-fddb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T14:19:55", "message_id": "1a066b62-fdda-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T14:09:55", "message_id": "b45cb312-fdd8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T13:59:55", "message_id": "4ea89172-fdd7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T13:49:55", "message_id": "e8fdba42-fdd5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T13:39:55", "message_id": "8349fe64-fdd4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T13:29:55", "message_id": "1d9808dc-fdd3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T13:19:55", "message_id": "b7e9a14a-fdd1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T13:09:54", "message_id": "523e72f4-fdd0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T12:59:54", "message_id": "ec91b368-fdce-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T12:49:54", "message_id": "86e26ffe-fdcd-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T12:39:54", "message_id": "21314208-fdcc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T12:29:54", "message_id": "bb81bfc4-fdca-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T12:19:54", "message_id": "55d585e4-fdc9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T12:09:54", "message_id": "f0200f04-fdc7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T11:59:54", "message_id": "8a75f4d0-fdc6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T11:49:54", "message_id": "24cb5cf2-fdc5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T11:39:54", "message_id": "bf1faddc-fdc3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T11:29:54", "message_id": "596f4e8a-fdc2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T11:19:53", "message_id": "f3c57aa6-fdc0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T11:09:53", "message_id": "8e168e26-fdbf-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T10:59:53", "message_id": "286a57d4-fdbe-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T10:49:54", "message_id": "c2e5deca-fdbc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T10:39:53", "message_id": "5d0c413a-fdbb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T10:29:53", "message_id": "f768b454-fdb9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T10:19:53", "message_id": "91b687a4-fdb8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T10:09:53", "message_id": "2c177ecc-fdb7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T09:59:53", "message_id": "c669e35e-fdb5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T09:49:53", "message_id": "60be4050-fdb4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T09:39:53", "message_id": "fb0f0bb4-fdb2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T09:29:53", "message_id": "95640d38-fdb1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T09:19:53", "message_id": "2fb27f34-fdb0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T09:09:52", "message_id": "c9ffd282-fdae-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T08:59:52", "message_id": "6456895e-fdad-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T08:49:52", "message_id": "feb76524-fdab-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T08:39:52", "message_id": "98fc43fe-fdaa-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T08:29:52", "message_id": "334c6a62-fda9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T08:19:52", "message_id": "cd9bba7a-fda7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T08:09:52", "message_id": "68081c36-fda6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T07:59:52", "message_id": "02436500-fda5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T07:49:52", "message_id": "9c916654-fda3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T07:39:52", "message_id": "36e98d6e-fda2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T07:29:52", "message_id": "d1382ca6-fda0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T07:19:52", "message_id": "6b8c1ca6-fd9f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T07:09:52", "message_id": "06049044-fd9e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T06:59:51", "message_id": "a028c0a2-fd9c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T06:49:51", "message_id": "3a7f984e-fd9b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T06:39:51", "message_id": "d4c6f32c-fd99-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T06:29:51", "message_id": "6f1ba924-fd98-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T06:19:51", "message_id": "0966d4ba-fd97-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T06:09:51", "message_id": "a3bc5ad2-fd95-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T05:59:51", "message_id": "3e0fd82c-fd94-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T05:49:51", "message_id": "d8614638-fd92-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T05:39:51", "message_id": "72b2d38e-fd91-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T05:29:51", "message_id": "0d0f9fe0-fd90-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T05:19:50", "message_id": "a75dbd04-fd8e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T05:09:50", "message_id": "41a8824c-fd8d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T04:59:50", "message_id": "dc091a6a-fd8b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T04:49:50", "message_id": "766677ee-fd8a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T04:39:50", "message_id": "10c5268e-fd89-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T04:29:50", "message_id": "ab18b3e2-fd87-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T04:19:50", "message_id": "455176ee-fd86-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T04:09:50", "message_id": "dfbd2dce-fd84-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T03:59:50", "message_id": "79d48152-fd83-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T03:49:50", "message_id": "1444e986-fd82-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T03:39:50", "message_id": "ae9d935e-fd80-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T03:29:50", "message_id": "48f96b3c-fd7f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T03:19:50", "message_id": "e358715c-fd7d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T03:09:50", "message_id": "7da4b1dc-fd7c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T02:59:49", "message_id": "17db60cc-fd7b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T02:49:49", "message_id": "b21cce3e-fd79-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T02:39:49", "message_id": "4cadb2a8-fd78-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T02:29:49", "message_id": "e6ef1f02-fd76-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T02:19:49", "message_id": "814a6928-fd75-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T02:09:49", "message_id": "1b95b6d8-fd74-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T01:59:49", "message_id": "b5d489ec-fd72-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T01:49:49", "message_id": "5028eab2-fd71-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T01:39:49", "message_id": "ea86787e-fd6f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T01:29:49", "message_id": "85038998-fd6e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T01:19:49", "message_id": "1f64a4b0-fd6d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T01:09:49", "message_id": "b9a171ae-fd6b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T00:59:48", "message_id": "53da53f0-fd6a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T00:49:48", "message_id": "ee1b5aba-fd68-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T00:39:48", "message_id": "88827a18-fd67-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T00:29:48", "message_id": "22db4bc8-fd66-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T00:19:48", "message_id": "bd36bef2-fd64-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T00:09:48", "message_id": "57a770c8-fd63-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-04T23:59:48", "message_id": "f1fe1a34-fd61-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-04T23:49:48", "message_id": "8c38a5d0-fd60-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-04T23:39:05", "message_id": "0cfcf948-fd5f-11e2-b8cf-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-04T23:29:05", "message_id": "a767d130-fd5d-11e2-b8cf-080027880ca6", "source": "openstack", "counter_unit": "object", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}], "http://localhost:8777/v2/meters/storage.objects.size?q.field=resource_id&q.value=253d975f27004438b89a239b5638a6bc": [{"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-12T04:01:18", "message_id": "d76a7904-0303-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-12T03:51:18", "message_id": "71ba00a8-0302-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-12T03:41:18", "message_id": "0c080c56-0301-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-12T03:31:18", "message_id": "a66b73a2-02ff-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-12T03:21:18", "message_id": "40b70b8a-02fe-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-12T03:11:18", "message_id": "db0cf35e-02fc-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-12T03:01:17", "message_id": "7552b112-02fb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-12T02:51:17", "message_id": "0faed102-02fa-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-12T02:41:17", "message_id": "a9eae802-02f8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-12T02:31:17", "message_id": "44477052-02f7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-12T02:21:17", "message_id": "de927e06-02f5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-12T02:11:17", "message_id": "78e59c9c-02f4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-12T02:01:17", "message_id": "133e6eb0-02f3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-12T01:51:17", "message_id": "ad9412b4-02f1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-12T01:41:17", "message_id": "47e006d6-02f0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-12T01:31:17", "message_id": "e2333d86-02ee-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-12T01:21:17", "message_id": "7c7df81a-02ed-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-12T01:11:16", "message_id": "16d53998-02ec-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-12T01:01:16", "message_id": "b112871a-02ea-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-12T00:51:16", "message_id": "4b78aa3e-02e9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-12T00:41:16", "message_id": "e5be6734-02e7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-12T00:31:16", "message_id": "800dead2-02e6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-12T00:21:16", "message_id": "1a8c9a4c-02e5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-12T00:11:16", "message_id": "b4ae5e32-02e3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-12T00:01:16", "message_id": "4f02211e-02e2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T23:51:16", "message_id": "e9551296-02e0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T23:41:16", "message_id": "83aef19c-02df-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T23:31:16", "message_id": "1e04c0ac-02de-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T23:21:15", "message_id": "b84b4f48-02dc-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T23:11:15", "message_id": "52ac1e20-02db-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T23:01:16", "message_id": "ed352f06-02d9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T22:51:15", "message_id": "874c8a5a-02d8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T22:41:15", "message_id": "21988e62-02d7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T22:31:15", "message_id": "bbebae7e-02d5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T22:21:15", "message_id": "5636ffa8-02d4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T22:11:15", "message_id": "f087311a-02d2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T22:01:15", "message_id": "8addd75c-02d1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T21:51:15", "message_id": "253671f8-02d0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T21:41:15", "message_id": "bf873ad2-02ce-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T21:31:14", "message_id": "59d347ae-02cd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T21:21:14", "message_id": "f429d77a-02cb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T21:11:14", "message_id": "8e7aba08-02ca-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T21:01:14", "message_id": "28ca0264-02c9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T20:51:14", "message_id": "c31fae60-02c7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T20:41:14", "message_id": "5d6a62e6-02c6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T20:31:14", "message_id": "f7c3c028-02c4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T20:21:14", "message_id": "9214c9b2-02c3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T20:11:14", "message_id": "2c71caf2-02c2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T20:01:14", "message_id": "c6bbdb0e-02c0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T19:51:14", "message_id": "6110f97a-02bf-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T19:41:14", "message_id": "fb5eeade-02bd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T19:31:13", "message_id": "95b47150-02bc-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T19:21:13", "message_id": "30030f34-02bb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T19:11:13", "message_id": "ca50107a-02b9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T19:01:13", "message_id": "649b022c-02b8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T18:51:13", "message_id": "fee8c9c4-02b6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T18:41:13", "message_id": "99412de2-02b5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T18:31:13", "message_id": "338e08a4-02b4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T18:21:13", "message_id": "cddf1f9e-02b2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T18:11:13", "message_id": "683002ae-02b1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T18:01:13", "message_id": "027f1036-02b0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T17:51:12", "message_id": "9cd4db9a-02ae-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T17:41:12", "message_id": "3722867c-02ad-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T17:31:12", "message_id": "d17a7a10-02ab-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T17:21:12", "message_id": "6bc8440a-02aa-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T17:11:12", "message_id": "0615997e-02a9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T17:01:12", "message_id": "a07580b2-02a7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T16:51:12", "message_id": "3ac6409a-02a6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T16:41:12", "message_id": "d525cc48-02a4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T16:31:12", "message_id": "6f6ea830-02a3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T16:21:12", "message_id": "09b6a836-02a2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T16:11:12", "message_id": "a40c6d28-02a0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T16:01:12", "message_id": "3e683c82-029f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T15:51:12", "message_id": "d8b74ece-029d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T15:41:12", "message_id": "7315d1b8-029c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T15:31:11", "message_id": "0d70285a-029b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T15:21:11", "message_id": "a7cf58c8-0299-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T15:11:11", "message_id": "421ca8ec-0298-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T15:01:11", "message_id": "dc6b44aa-0296-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T14:51:11", "message_id": "76b62194-0295-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T14:41:11", "message_id": "110800de-0294-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T14:31:11", "message_id": "ab57deae-0292-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T14:21:11", "message_id": "45aa31ca-0291-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T14:11:11", "message_id": "dff87c5c-028f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T14:01:11", "message_id": "7a531412-028e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T13:51:11", "message_id": "14a7b132-028d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T13:41:11", "message_id": "aefa29f6-028b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T13:31:10", "message_id": "494b8cf4-028a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T13:21:10", "message_id": "e39718ca-0288-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T13:11:10", "message_id": "7df00816-0287-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T13:01:10", "message_id": "1847ed4a-0286-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T12:51:10", "message_id": "b292497e-0284-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T12:41:10", "message_id": "4ce8182a-0283-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T12:31:10", "message_id": "e7347402-0281-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T12:21:10", "message_id": "8180677a-0280-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T12:11:10", "message_id": "1bd382dc-027f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T12:01:10", "message_id": "b6211a72-027d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T11:51:10", "message_id": "5079d340-027c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T11:41:09", "message_id": "eabf9202-027a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T11:31:09", "message_id": "85144192-0279-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T11:21:09", "message_id": "1f64c58e-0278-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T11:11:09", "message_id": "b9b6c8dc-0276-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T11:01:09", "message_id": "54075cf0-0275-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T10:51:09", "message_id": "ee5596de-0273-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T10:41:09", "message_id": "88abcc46-0272-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T10:31:09", "message_id": "23019660-0271-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T10:21:09", "message_id": "bd49a1d8-026f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T10:11:09", "message_id": "57ac6488-026e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T10:01:09", "message_id": "f1f8a7b0-026c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T09:51:08", "message_id": "8c48c8a6-026b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T09:41:08", "message_id": "26974196-026a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T09:31:08", "message_id": "c0eed4cc-0268-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T09:21:08", "message_id": "5b3ea432-0267-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T09:11:08", "message_id": "f5965932-0265-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T09:01:08", "message_id": "8fe6cfd2-0264-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T08:51:08", "message_id": "2a43d5d6-0263-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T08:41:08", "message_id": "c496f2dc-0261-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T08:31:08", "message_id": "5eed1c3c-0260-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T08:21:08", "message_id": "f9313744-025e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T08:11:08", "message_id": "938535a4-025d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T08:01:08", "message_id": "2ddc40ea-025c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T07:51:07", "message_id": "c825beb2-025a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T07:41:07", "message_id": "62815838-0259-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T07:31:07", "message_id": "fccdbf46-0257-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T07:21:07", "message_id": "9722a7ca-0256-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T07:11:07", "message_id": "3164f7cc-0255-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T07:01:07", "message_id": "cbc9a7b0-0253-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T06:51:07", "message_id": "66156b58-0252-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T06:41:07", "message_id": "0064cf52-0251-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T06:31:07", "message_id": "9ab4cfb4-024f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T06:21:07", "message_id": "35153a32-024e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T06:11:07", "message_id": "cf5d9398-024c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T06:01:07", "message_id": "69c7b014-024b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T05:51:07", "message_id": "040ce966-024a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T05:41:06", "message_id": "9e5b8aba-0248-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T05:31:06", "message_id": "38a4d8d0-0247-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T05:21:06", "message_id": "d2f70450-0245-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T05:11:06", "message_id": "6d3f73d2-0244-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T05:01:06", "message_id": "07973c96-0243-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T04:51:06", "message_id": "a1ef4c9a-0241-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T04:41:06", "message_id": "3c3c782e-0240-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T04:31:06", "message_id": "d690f8ca-023e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T04:21:06", "message_id": "70f9d898-023d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T04:11:06", "message_id": "0b30be2e-023c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T04:01:05", "message_id": "a5881a32-023a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T03:51:05", "message_id": "3fdb2c02-0239-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T03:41:05", "message_id": "da43f7c6-0237-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T03:31:05", "message_id": "7477b3fc-0236-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T03:21:05", "message_id": "0eca1e92-0235-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T03:11:05", "message_id": "a917f3c2-0233-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T03:01:05", "message_id": "4367c12a-0232-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T02:51:05", "message_id": "ddb5a35c-0230-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T02:41:05", "message_id": "77f723e8-022f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T02:31:05", "message_id": "1255cb08-022e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T02:21:04", "message_id": "aca46964-022c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T02:11:04", "message_id": "46f5f7c8-022b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T02:01:04", "message_id": "e152a26e-0229-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T01:51:04", "message_id": "7b9ade56-0228-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T01:41:04", "message_id": "15fefdf8-0227-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T01:31:04", "message_id": "b04c68de-0225-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T01:21:04", "message_id": "4a85389c-0224-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T01:11:04", "message_id": "e4d7bb24-0222-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T01:01:04", "message_id": "7f33e7c6-0221-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T00:51:04", "message_id": "197cabee-0220-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T00:41:04", "message_id": "b3ce38c2-021e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T00:31:03", "message_id": "4e1d9c08-021d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T00:21:03", "message_id": "e86e5ca4-021b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T00:11:03", "message_id": "82bcec6e-021a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T00:01:03", "message_id": "1d1324f6-0219-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T23:51:03", "message_id": "b765a012-0217-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T23:41:03", "message_id": "51b40e62-0216-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T23:31:03", "message_id": "ec0bc858-0214-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T23:21:03", "message_id": "8663c36c-0213-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T23:11:03", "message_id": "20a96c3a-0212-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T23:01:03", "message_id": "bb55cb40-0210-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T22:51:03", "message_id": "5561d780-020f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T22:41:08", "message_id": "f2c0f6de-020d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T22:31:03", "message_id": "8a0f0550-020c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T22:21:02", "message_id": "24570358-020b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T22:11:02", "message_id": "bebcad3c-0209-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T22:01:02", "message_id": "58fcf34a-0208-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T21:51:02", "message_id": "f365da52-0206-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T21:41:02", "message_id": "8dadb028-0205-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T21:31:02", "message_id": "27f84bd6-0204-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T21:21:02", "message_id": "c26bcbcc-0202-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T21:11:02", "message_id": "5ca52e7e-0201-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T21:01:02", "message_id": "f6e39c20-01ff-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T20:51:02", "message_id": "91961362-01fe-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T20:41:02", "message_id": "2b99d89c-01fd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T20:31:02", "message_id": "c61b93f8-01fb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T20:21:01", "message_id": "6037253a-01fa-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T20:11:01", "message_id": "fa7a3d96-01f8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T20:01:01", "message_id": "94d2510a-01f7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T19:51:01", "message_id": "2f26d304-01f6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T19:41:01", "message_id": "c9790050-01f4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T19:31:01", "message_id": "63d1e632-01f3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T19:21:01", "message_id": "fe0961aa-01f1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T19:11:01", "message_id": "986b2ca8-01f0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T19:01:01", "message_id": "32bc0f0e-01ef-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T18:51:00", "message_id": "ccfb08ec-01ed-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T18:41:00", "message_id": "67617206-01ec-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T18:31:00", "message_id": "01ad3a7c-01eb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T18:21:00", "message_id": "9bfc056a-01e9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T18:11:00", "message_id": "3646f032-01e8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T18:01:00", "message_id": "d09736bc-01e6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T17:51:00", "message_id": "6af175da-01e5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T17:41:00", "message_id": "0546a7ba-01e4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T17:31:00", "message_id": "9f91ddbe-01e2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T17:21:00", "message_id": "39e4e8cc-01e1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T17:11:00", "message_id": "d42f7d68-01df-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T17:00:59", "message_id": "6e81710c-01de-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T16:50:59", "message_id": "08d6913a-01dd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T16:40:59", "message_id": "a32385a6-01db-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T16:30:59", "message_id": "3d79552e-01da-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T16:20:59", "message_id": "d7c2527c-01d8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T16:10:59", "message_id": "721e0778-01d7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T16:00:59", "message_id": "0c7469ea-01d6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T15:50:59", "message_id": "a6c438a6-01d4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T15:40:59", "message_id": "4125937e-01d3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T15:30:59", "message_id": "db72ab4e-01d1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T15:20:59", "message_id": "75cbaaee-01d0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T15:10:59", "message_id": "101a5a2a-01cf-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T15:00:58", "message_id": "aa651c7a-01cd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T14:50:58", "message_id": "44bca826-01cc-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T14:40:58", "message_id": "df045ec6-01ca-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T14:30:58", "message_id": "794c83ac-01c9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T14:20:58", "message_id": "139d90ba-01c8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T14:10:58", "message_id": "adf7c2f4-01c6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T14:00:58", "message_id": "48497520-01c5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T13:50:58", "message_id": "e29d8b90-01c3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T13:40:58", "message_id": "7ce6f986-01c2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T13:30:58", "message_id": "17448bd0-01c1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T13:20:58", "message_id": "b18ba284-01bf-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T13:10:57", "message_id": "4bdd7526-01be-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T13:00:57", "message_id": "e6302e90-01bc-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T12:50:57", "message_id": "807e89bc-01bb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T12:40:57", "message_id": "1ad3c13c-01ba-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T12:30:57", "message_id": "b52b936a-01b8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T12:20:57", "message_id": "4f81c2ec-01b7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T12:10:57", "message_id": "e9d89124-01b5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T12:00:57", "message_id": "842070be-01b4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T11:50:57", "message_id": "1e774f5e-01b3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T11:40:57", "message_id": "b8d1ec3c-01b1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T11:30:57", "message_id": "531da382-01b0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T11:20:57", "message_id": "ed7100d4-01ae-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T11:10:57", "message_id": "87c95f02-01ad-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T11:00:56", "message_id": "22046b90-01ac-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T10:50:57", "message_id": "bc8971d0-01aa-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T10:40:56", "message_id": "56b57b66-01a9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T10:30:56", "message_id": "f1125ee2-01a7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T10:20:56", "message_id": "8b581d36-01a6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T10:10:56", "message_id": "25c807f2-01a5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T10:00:56", "message_id": "c0042172-01a3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T09:50:56", "message_id": "5a492946-01a2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T09:40:56", "message_id": "f4a613e8-01a0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T09:30:56", "message_id": "8f119a76-019f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T09:20:56", "message_id": "2946b9ca-019e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T09:10:55", "message_id": "c39f1f78-019c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T09:00:56", "message_id": "5e08db64-019b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T08:50:55", "message_id": "f84009e8-0199-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T08:40:55", "message_id": "929f7f70-0198-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T08:30:55", "message_id": "2cd3d5b6-0197-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T08:20:55", "message_id": "c7332d2a-0195-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T08:10:55", "message_id": "61739fa2-0194-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T08:00:55", "message_id": "fbc86bf2-0192-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T07:50:55", "message_id": "962b1160-0191-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T07:40:55", "message_id": "30803a58-0190-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T07:30:55", "message_id": "cacb22d2-018e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T07:20:54", "message_id": "652135c6-018d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T07:10:54", "message_id": "ff73401c-018b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T07:00:54", "message_id": "99c086cc-018a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T06:50:54", "message_id": "34173254-0189-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T06:40:54", "message_id": "ce6a12ba-0187-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T06:30:54", "message_id": "68bd6cb0-0186-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T06:20:54", "message_id": "03129d32-0185-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T06:10:54", "message_id": "9d581f22-0183-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T06:00:54", "message_id": "37a0885a-0182-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T05:50:54", "message_id": "d202aa4c-0180-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T05:40:54", "message_id": "6c4f32b6-017f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T05:30:53", "message_id": "0695e2cc-017e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T05:20:53", "message_id": "a0ece98a-017c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T05:10:53", "message_id": "3b43b934-017b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T05:00:53", "message_id": "d59bd036-0179-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T04:50:53", "message_id": "6fe12e72-0178-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T04:40:53", "message_id": "0a2b32fe-0177-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T04:30:53", "message_id": "a48072d0-0175-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T04:20:53", "message_id": "3ed08ab6-0174-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T04:10:53", "message_id": "d922f6fa-0172-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T04:00:53", "message_id": "737e3a04-0171-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T03:50:53", "message_id": "0dd00152-0170-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T03:40:53", "message_id": "a8238906-016e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T03:30:52", "message_id": "4278c928-016d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T03:20:52", "message_id": "dcc4c34e-016b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T03:10:52", "message_id": "7716bd32-016a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T03:00:52", "message_id": "1168f8c0-0169-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T02:50:52", "message_id": "abbd53dc-0167-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T02:40:52", "message_id": "4606b200-0166-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T02:30:52", "message_id": "e057ede4-0164-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T02:20:52", "message_id": "7abbf1de-0163-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T02:10:52", "message_id": "150ddc7c-0162-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T02:00:52", "message_id": "af583676-0160-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T01:50:52", "message_id": "49d0c544-015f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T01:40:52", "message_id": "e4143ab6-015d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T01:30:52", "message_id": "7e773cf4-015c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T01:20:52", "message_id": "18ca3d58-015b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T01:10:51", "message_id": "b30c0d94-0159-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T01:00:51", "message_id": "4d675dbe-0158-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T00:50:51", "message_id": "e794c2ca-0156-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T00:40:51", "message_id": "81ec0ef2-0155-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T00:30:51", "message_id": "1c3ca27a-0154-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T00:20:51", "message_id": "b67f4e5c-0152-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T00:10:51", "message_id": "50dc74cc-0151-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T00:00:51", "message_id": "eb2ab784-014f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T23:50:50", "message_id": "857c8d3c-014e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T23:40:50", "message_id": "1fc83dc0-014d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T23:30:50", "message_id": "ba0ee3f4-014b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T23:20:50", "message_id": "5471e010-014a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T23:10:50", "message_id": "eebb0a9a-0148-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T23:00:50", "message_id": "894c1092-0147-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T22:50:50", "message_id": "23606fb8-0146-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T22:40:50", "message_id": "bda9e5ce-0144-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T22:30:50", "message_id": "57ff087c-0143-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T22:20:50", "message_id": "f26315b8-0141-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T22:10:49", "message_id": "8c9e7b9c-0140-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T22:00:49", "message_id": "26fd8982-013f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T21:50:49", "message_id": "c151266c-013d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T21:40:49", "message_id": "5baa14aa-013c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T21:30:49", "message_id": "f600eed6-013a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T21:20:49", "message_id": "904ac7b6-0139-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T21:10:49", "message_id": "2aa67712-0138-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T21:00:49", "message_id": "c4fd8578-0136-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T20:50:49", "message_id": "5f4b1746-0135-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T20:40:49", "message_id": "f9a16d7e-0133-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T20:30:49", "message_id": "93e665f8-0132-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T20:20:49", "message_id": "2e59440e-0131-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T20:10:49", "message_id": "c894e1b0-012f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T20:00:49", "message_id": "62e5b71e-012e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T19:50:49", "message_id": "fd428bc2-012c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T19:40:48", "message_id": "978477ba-012b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T19:30:48", "message_id": "31dc7436-012a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T19:20:48", "message_id": "cc3e4d6c-0128-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T19:10:48", "message_id": "6683465e-0127-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T19:00:48", "message_id": "00ce9bac-0126-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T18:50:48", "message_id": "9b19f2d0-0124-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T18:40:48", "message_id": "356f04bc-0123-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T18:30:48", "message_id": "cfb8cdf2-0121-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T18:20:48", "message_id": "6a07d134-0120-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T18:10:47", "message_id": "04577372-011f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T18:00:47", "message_id": "9e9f9df8-011d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T17:50:47", "message_id": "38f9f404-011c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T17:40:47", "message_id": "d346645e-011a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T17:30:47", "message_id": "6d9546b2-0119-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T17:20:47", "message_id": "07ee8c52-0118-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T17:10:47", "message_id": "a23c2bf4-0116-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T17:00:47", "message_id": "3c8f97ce-0115-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T16:50:47", "message_id": "d6dae81c-0113-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T16:40:47", "message_id": "712a98e2-0112-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T16:30:47", "message_id": "0b8be9d8-0111-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T16:20:46", "message_id": "a5d22e32-010f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T16:10:46", "message_id": "402a743c-010e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T16:00:46", "message_id": "da792210-010c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T15:50:49", "message_id": "764faa62-010b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T15:40:47", "message_id": "0f79f6b8-010a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T15:30:46", "message_id": "a993f00c-0108-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T15:20:46", "message_id": "43ca23f0-0107-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T15:10:46", "message_id": "de31a49c-0105-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T15:00:46", "message_id": "78702170-0104-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T14:50:46", "message_id": "12cb0cbe-0103-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T14:40:46", "message_id": "ad16e650-0101-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T14:30:46", "message_id": "4760c4ee-0100-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T14:20:46", "message_id": "e1be8f32-00fe-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T14:10:46", "message_id": "7c45ec50-00fd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T14:00:45", "message_id": "164d9f7a-00fc-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T13:50:45", "message_id": "b0ae18f8-00fa-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T13:40:45", "message_id": "4af7756e-00f9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T13:30:45", "message_id": "e5487b42-00f7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T13:20:46", "message_id": "7ffd6262-00f6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T13:10:45", "message_id": "19dd87b0-00f5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T13:00:45", "message_id": "b43b19fa-00f3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T12:50:45", "message_id": "4e820a98-00f2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T12:40:45", "message_id": "e8dba06a-00f0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T12:30:44", "message_id": "83321f56-00ef-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T12:20:44", "message_id": "1d7bd52c-00ee-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T12:10:44", "message_id": "b7ccf72a-00ec-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T12:00:44", "message_id": "52202c04-00eb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T11:50:44", "message_id": "ec797f1e-00e9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T11:40:44", "message_id": "86c250b6-00e8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T11:30:44", "message_id": "211b916a-00e7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T11:20:44", "message_id": "bb6a839a-00e5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T11:10:44", "message_id": "55c22f76-00e4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T11:00:44", "message_id": "f009d61c-00e2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T10:50:44", "message_id": "8a5b9c70-00e1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T10:40:43", "message_id": "24ab53e4-00e0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T10:30:43", "message_id": "bf0266d2-00de-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T10:20:43", "message_id": "594e72c8-00dd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T10:10:43", "message_id": "f3a293f6-00db-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T10:00:43", "message_id": "8e042952-00da-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T09:50:43", "message_id": "28429564-00d9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T09:40:43", "message_id": "c29da86c-00d7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T09:30:43", "message_id": "5cedac2a-00d6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T09:20:43", "message_id": "f74019cc-00d4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T09:10:43", "message_id": "9199d97e-00d3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T09:00:43", "message_id": "2be632ea-00d2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T08:50:42", "message_id": "c6304086-00d0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T08:40:42", "message_id": "608abffa-00cf-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T08:30:42", "message_id": "fadecdd2-00cd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T08:20:42", "message_id": "952fca46-00cc-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T08:10:42", "message_id": "2f7a6d92-00cb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T08:00:42", "message_id": "c9ca0f26-00c9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T07:50:42", "message_id": "641b4b64-00c8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T07:40:42", "message_id": "fe9781b4-00c6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T07:30:42", "message_id": "98c82b5a-00c5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T07:20:42", "message_id": "330b621a-00c4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T07:10:42", "message_id": "cd5e5ee6-00c2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T07:00:41", "message_id": "67b3edc8-00c1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T06:50:41", "message_id": "01ff4a32-00c0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T06:40:41", "message_id": "9c541ec0-00be-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T06:30:41", "message_id": "36a6e130-00bd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T06:20:41", "message_id": "d0f2d002-00bb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T06:10:41", "message_id": "6b493260-00ba-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T06:00:41", "message_id": "05a43d5c-00b9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T05:50:41", "message_id": "9ff03cc8-00b7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T05:40:41", "message_id": "3a48a5a0-00b6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T05:30:41", "message_id": "d49409c6-00b4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T05:20:41", "message_id": "6ee54a0a-00b3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T05:10:41", "message_id": "0938db82-00b2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T05:00:40", "message_id": "a38d9e2c-00b0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T04:50:40", "message_id": "3df37920-00af-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T04:40:40", "message_id": "d84aede8-00ad-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T04:30:40", "message_id": "729849f6-00ac-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T04:20:40", "message_id": "0cf9c0a8-00ab-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T04:10:40", "message_id": "a752a96e-00a9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T04:00:40", "message_id": "41c7bfcc-00a8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T03:50:41", "message_id": "dc444a04-00a6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T03:40:40", "message_id": "76575930-00a5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T03:30:40", "message_id": "10dd01e6-00a4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T03:20:40", "message_id": "ab05fc02-00a2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T03:10:40", "message_id": "45618e76-00a1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T03:00:40", "message_id": "dfb54d3e-009f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T02:50:40", "message_id": "79f93ef2-009e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T02:40:40", "message_id": "14823322-009d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T02:30:40", "message_id": "ae9fd650-009b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T02:20:40", "message_id": "48f5c48c-009a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T02:10:39", "message_id": "e349a582-0098-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T02:00:39", "message_id": "7d9bda9e-0097-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T01:50:39", "message_id": "17d975d2-0096-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T01:40:39", "message_id": "b229317e-0094-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T01:30:39", "message_id": "4c7bccde-0093-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T01:20:39", "message_id": "e6d8aefc-0091-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T01:10:39", "message_id": "811cb4c4-0090-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T01:00:39", "message_id": "1b7b0fea-008f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T00:50:39", "message_id": "b5c1a7c8-008d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T00:40:38", "message_id": "500cce54-008c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T00:30:38", "message_id": "ea6cfd86-008a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T00:20:38", "message_id": "84c18886-0089-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T00:10:38", "message_id": "1f0e7022-0088-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T00:00:38", "message_id": "b95f2f9c-0086-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T23:50:38", "message_id": "53aa0510-0085-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T23:40:38", "message_id": "ee0ab020-0083-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T23:30:38", "message_id": "8850e444-0082-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T23:20:38", "message_id": "229ab158-0081-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T23:10:38", "message_id": "bcf77864-007f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T23:00:38", "message_id": "577fba38-007e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T22:50:38", "message_id": "f1921dfc-007c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T22:40:37", "message_id": "8beaf560-007b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T22:30:37", "message_id": "262a7aee-007a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T22:20:37", "message_id": "c086fee8-0078-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T22:10:37", "message_id": "5ad6fa7c-0077-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T22:00:37", "message_id": "f527ad26-0075-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T21:50:37", "message_id": "8f846c9e-0074-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T21:40:37", "message_id": "29cd3f94-0073-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T21:30:37", "message_id": "c422d34e-0071-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T21:20:37", "message_id": "5e839808-0070-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T21:10:37", "message_id": "f8c78584-006e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T21:00:37", "message_id": "9310a14a-006d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T20:50:36", "message_id": "2d5e3fc0-006c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T20:40:36", "message_id": "c7b102e4-006a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T20:30:36", "message_id": "6209f082-0069-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T20:20:36", "message_id": "fc4eb972-0067-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T20:10:36", "message_id": "96ac2164-0066-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T20:00:36", "message_id": "30f74b06-0065-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T19:50:36", "message_id": "cb4f52fe-0063-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T19:40:36", "message_id": "659a2cc8-0062-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T19:30:36", "message_id": "ffecf348-0060-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T19:20:36", "message_id": "9a38a5ca-005f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T19:10:35", "message_id": "348d8368-005e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T19:00:35", "message_id": "cee1645e-005c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T18:50:35", "message_id": "6930ecb6-005b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T18:40:35", "message_id": "037d8826-005a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T18:30:35", "message_id": "9ddde2e6-0058-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T18:20:35", "message_id": "381db298-0057-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T18:10:35", "message_id": "d27b39fc-0055-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T18:00:35", "message_id": "6ccced9a-0054-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T17:50:35", "message_id": "071f8396-0053-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T17:40:35", "message_id": "a1796d6e-0051-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T17:30:35", "message_id": "3bcd4c7a-0050-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T17:20:35", "message_id": "d61ad588-004e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T17:10:34", "message_id": "706b3a80-004d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T17:00:34", "message_id": "0ab9db52-004c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T16:50:34", "message_id": "a50c8260-004a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T16:40:34", "message_id": "3f679db0-0049-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T16:30:34", "message_id": "d9ba6fa2-0047-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T16:20:34", "message_id": "740ee3e6-0046-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T16:10:34", "message_id": "0e5b063e-0045-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T16:00:34", "message_id": "a8b67300-0043-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T15:50:34", "message_id": "43050928-0042-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T15:40:34", "message_id": "dd51fd58-0040-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T15:30:34", "message_id": "77a73816-003f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T15:20:34", "message_id": "11fd09a6-003e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T15:10:33", "message_id": "ac4c91fe-003c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T15:00:33", "message_id": "4696f4ae-003b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T14:50:33", "message_id": "e0ef94d6-0039-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T14:40:33", "message_id": "7b3999b2-0038-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T14:30:33", "message_id": "1593d0b0-0037-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T14:20:33", "message_id": "afdf7da6-0035-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T14:10:33", "message_id": "4a418da0-0034-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T14:00:33", "message_id": "e4c2ea7e-0032-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T13:50:33", "message_id": "7ed49f7e-0031-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T13:40:33", "message_id": "1932b8b4-0030-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T13:30:33", "message_id": "b380bbf2-002e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T13:20:33", "message_id": "4ddc803e-002d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T13:10:32", "message_id": "e8289d1e-002b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T13:00:32", "message_id": "8276a660-002a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T12:50:32", "message_id": "1ccad77e-0029-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T12:40:32", "message_id": "b710f4d2-0027-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T12:30:32", "message_id": "516a9238-0026-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T12:20:32", "message_id": "ebb41a32-0024-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T12:10:32", "message_id": "85fe4db2-0023-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T12:00:32", "message_id": "205b07f8-0022-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T11:50:32", "message_id": "baa70d22-0020-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T11:40:32", "message_id": "550edfae-001f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T11:30:32", "message_id": "ef63f4f6-001d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T11:20:31", "message_id": "89a53c48-001c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T11:10:32", "message_id": "2416ccb2-001b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T11:00:31", "message_id": "be55c74e-0019-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T10:50:31", "message_id": "58a7f382-0018-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T10:40:31", "message_id": "f30408e6-0016-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T10:30:31", "message_id": "8d718720-0015-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T10:20:31", "message_id": "27bb5d58-0014-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T10:10:31", "message_id": "c22243f4-0012-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T10:00:31", "message_id": "5c46095e-0011-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T09:50:31", "message_id": "f695d2ac-000f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T09:40:31", "message_id": "90dee292-000e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T09:30:31", "message_id": "2b429074-000d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T09:20:30", "message_id": "c585d49a-000b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T09:10:30", "message_id": "5fd47a9e-000a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T09:00:30", "message_id": "fa2ed582-0008-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T08:50:30", "message_id": "947d7faa-0007-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T08:40:30", "message_id": "2ed62180-0006-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T08:30:30", "message_id": "c92bd8bc-0004-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T08:20:30", "message_id": "63787e68-0003-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T08:10:30", "message_id": "fdd7b548-0001-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T08:00:30", "message_id": "981d8ce2-0000-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T07:50:30", "message_id": "326cb91e-ffff-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T07:40:30", "message_id": "ccbd438c-fffd-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T07:30:30", "message_id": "670c44f8-fffc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T07:20:29", "message_id": "0166aaae-fffb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T07:10:29", "message_id": "9badc586-fff9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T07:00:29", "message_id": "35f8cb9c-fff8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T06:50:29", "message_id": "d05bb19c-fff6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T06:40:29", "message_id": "6aa379a8-fff5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T06:30:29", "message_id": "04f0eaf6-fff4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T06:20:29", "message_id": "9f44cee4-fff2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T06:10:29", "message_id": "39953300-fff1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T06:00:29", "message_id": "d3ed7a36-ffef-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T05:50:29", "message_id": "6e46d142-ffee-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T05:40:29", "message_id": "089f61e8-ffed-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T05:30:29", "message_id": "a2e7ce4a-ffeb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T05:20:28", "message_id": "3d2f40b6-ffea-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T05:10:28", "message_id": "d784a28e-ffe8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T05:00:28", "message_id": "71d99fda-ffe7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T04:50:28", "message_id": "0c1d3e5a-ffe6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T04:40:28", "message_id": "a67ea936-ffe4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T04:30:28", "message_id": "40c2fd78-ffe3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T04:20:28", "message_id": "db1cc540-ffe1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T04:10:28", "message_id": "756e1ac4-ffe0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T04:00:28", "message_id": "0fb641bc-ffdf-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T03:50:28", "message_id": "aa0d16ac-ffdd-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T03:40:27", "message_id": "445a6608-ffdc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T03:30:27", "message_id": "deabbee8-ffda-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T03:20:27", "message_id": "78fb61bc-ffd9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T03:10:27", "message_id": "13506fde-ffd8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T03:00:27", "message_id": "ada2875e-ffd6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T02:50:27", "message_id": "47eda764-ffd5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T02:40:27", "message_id": "e23c25d6-ffd3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T02:30:27", "message_id": "7c9683bc-ffd2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T02:20:27", "message_id": "1701288c-ffd1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T02:10:27", "message_id": "b12af426-ffcf-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T02:00:26", "message_id": "4b863078-ffce-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T01:50:26", "message_id": "e5d09bca-ffcc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T01:40:26", "message_id": "80222a92-ffcb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T01:30:26", "message_id": "1a736cde-ffca-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T01:20:26", "message_id": "b4cb4bc8-ffc8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T01:10:26", "message_id": "4f215138-ffc7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T01:00:26", "message_id": "e96e81c2-ffc5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T00:50:26", "message_id": "83c4777e-ffc4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T00:40:26", "message_id": "1e1836e6-ffc3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T00:30:26", "message_id": "b8666788-ffc1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T00:20:26", "message_id": "53118dd2-ffc0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T00:10:26", "message_id": "ed066b30-ffbe-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T00:00:26", "message_id": "878249a6-ffbd-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T23:50:25", "message_id": "21b2bfe4-ffbc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T23:40:25", "message_id": "bc086ec4-ffba-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T23:30:25", "message_id": "56619592-ffb9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T23:20:25", "message_id": "f0cda820-ffb7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T23:10:25", "message_id": "8b1e645c-ffb6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T23:00:25", "message_id": "25964830-ffb5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T22:50:25", "message_id": "bf9156e8-ffb3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T22:40:25", "message_id": "59ef3dba-ffb2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T22:30:25", "message_id": "f43f0546-ffb0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T22:20:24", "message_id": "8e7f5cf2-ffaf-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T22:10:24", "message_id": "28e458da-ffae-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T22:00:24", "message_id": "c32a9938-ffac-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T21:50:24", "message_id": "5d6cf038-ffab-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T21:40:24", "message_id": "f7c73f3c-ffa9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T21:30:24", "message_id": "921fb4ee-ffa8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T21:20:24", "message_id": "2c67a810-ffa7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T21:10:24", "message_id": "c6ab8cd6-ffa5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T21:00:24", "message_id": "61060ce0-ffa4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T20:50:24", "message_id": "fb56b972-ffa2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T20:40:23", "message_id": "95a272ca-ffa1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T20:30:23", "message_id": "2ff8111a-ffa0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T20:20:23", "message_id": "ca4a9f96-ff9e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T20:10:23", "message_id": "648fbb60-ff9d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T20:00:23", "message_id": "fee8f976-ff9b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T19:50:23", "message_id": "99327f4a-ff9a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T19:40:23", "message_id": "338c4708-ff99-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T19:30:23", "message_id": "cddd6942-ff97-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T19:20:23", "message_id": "68333744-ff96-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T19:10:23", "message_id": "02820a48-ff95-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T19:00:23", "message_id": "9ccbb6e6-ff93-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T18:50:22", "message_id": "3724d864-ff92-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T18:40:22", "message_id": "d17757e0-ff90-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T18:30:22", "message_id": "6bb7295e-ff8f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T18:20:22", "message_id": "0606f02c-ff8e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T18:10:22", "message_id": "a05c4124-ff8c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T18:00:22", "message_id": "3ab0bf2c-ff8b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T17:50:22", "message_id": "d5006a70-ff89-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T17:40:22", "message_id": "6f58904a-ff88-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T17:30:22", "message_id": "09a7d05e-ff87-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T17:20:22", "message_id": "a3f424ac-ff85-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T17:10:22", "message_id": "3e4c4220-ff84-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T17:00:21", "message_id": "d891177c-ff82-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T16:50:21", "message_id": "72d9a77e-ff81-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T16:40:21", "message_id": "0d30050e-ff80-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T16:30:21", "message_id": "a78ce196-ff7e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T16:20:21", "message_id": "41d0632e-ff7d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T16:10:21", "message_id": "dc2a83b6-ff7b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T16:00:21", "message_id": "767bf730-ff7a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T15:50:21", "message_id": "10cfda9c-ff79-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T15:40:21", "message_id": "ab1ba65a-ff77-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T15:30:21", "message_id": "4567b020-ff76-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T15:20:20", "message_id": "dfbb8eb4-ff74-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T15:10:20", "message_id": "7a094788-ff73-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T15:00:20", "message_id": "14590df2-ff72-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T14:50:20", "message_id": "aeabe8b8-ff70-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T14:40:20", "message_id": "48fa9a9c-ff6f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T14:30:20", "message_id": "e360dac6-ff6d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T14:20:20", "message_id": "7db07dfe-ff6c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T14:10:20", "message_id": "17ffe806-ff6b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T14:00:20", "message_id": "b2503cc8-ff69-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T13:50:20", "message_id": "4c9dc93c-ff68-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T13:40:20", "message_id": "e70562d4-ff66-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T13:30:20", "message_id": "814afb58-ff65-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T13:20:19", "message_id": "1b9ce6dc-ff64-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T13:10:19", "message_id": "b5f3d120-ff62-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T13:00:19", "message_id": "504ed410-ff61-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T12:50:19", "message_id": "eaa4be00-ff5f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T12:40:19", "message_id": "84ef1d9a-ff5e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T12:30:19", "message_id": "1f456874-ff5d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T12:20:19", "message_id": "b99b0700-ff5b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T12:10:19", "message_id": "53e0728e-ff5a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T12:00:19", "message_id": "ee2e5290-ff58-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T11:50:19", "message_id": "8886ecc8-ff57-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T11:40:19", "message_id": "22dc4680-ff56-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T11:30:19", "message_id": "bd2bffe8-ff54-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T11:20:18", "message_id": "577bb554-ff53-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T11:10:19", "message_id": "f1e944e6-ff51-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T11:00:18", "message_id": "8c30f726-ff50-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T10:50:18", "message_id": "268411c0-ff4f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T10:40:18", "message_id": "c0df6f64-ff4d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T10:30:18", "message_id": "5b28ce46-ff4c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T10:20:18", "message_id": "f57b1d98-ff4a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T10:10:18", "message_id": "8fd94fba-ff49-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T10:00:18", "message_id": "2a349af8-ff48-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T09:50:18", "message_id": "c4741ca8-ff46-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T09:40:18", "message_id": "5ecdc6d4-ff45-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T09:30:18", "message_id": "f90cf096-ff43-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T09:20:18", "message_id": "93665ca6-ff42-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T09:10:17", "message_id": "2db7524e-ff41-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T09:00:17", "message_id": "c7fb1748-ff3f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T08:50:17", "message_id": "624e2684-ff3e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T08:40:17", "message_id": "fca5cd2e-ff3c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T08:30:17", "message_id": "96f3b410-ff3b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T08:20:17", "message_id": "31371078-ff3a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T08:10:17", "message_id": "cb87b828-ff38-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T08:00:17", "message_id": "65d6eb6c-ff37-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T07:50:17", "message_id": "0028313c-ff36-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T07:40:16", "message_id": "9a7522b0-ff34-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T07:30:16", "message_id": "34d0daa4-ff33-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T07:20:16", "message_id": "cf183abe-ff31-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T07:10:16", "message_id": "69676b82-ff30-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T07:00:16", "message_id": "03c1efce-ff2f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T06:50:16", "message_id": "9e144f06-ff2d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T06:40:16", "message_id": "3864667e-ff2c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T06:30:16", "message_id": "d2ab0f64-ff2a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T06:20:16", "message_id": "6d0d4c36-ff29-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T06:10:16", "message_id": "076ab658-ff28-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T06:00:16", "message_id": "a1aa7a98-ff26-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T05:50:16", "message_id": "3c06bcc0-ff25-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T05:40:15", "message_id": "d648b81c-ff23-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T05:30:16", "message_id": "70c243f6-ff22-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T05:20:15", "message_id": "0af5e95c-ff21-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T05:10:15", "message_id": "a53ab90e-ff1f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T05:00:15", "message_id": "3fa1e424-ff1e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T04:50:15", "message_id": "d9e5320e-ff1c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T04:40:15", "message_id": "743e51de-ff1b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T04:30:15", "message_id": "0e9ced8c-ff1a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T04:20:15", "message_id": "a8dd9f92-ff18-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T04:10:15", "message_id": "4339e4ee-ff17-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T04:00:15", "message_id": "dd880f32-ff15-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T03:50:15", "message_id": "77f05766-ff14-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T03:40:14", "message_id": "12312fa0-ff13-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T03:30:14", "message_id": "ac7862ec-ff11-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T03:20:14", "message_id": "46cf2350-ff10-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T03:10:14", "message_id": "e13413a8-ff0e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T03:00:14", "message_id": "7b71abc6-ff0d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T02:50:14", "message_id": "15df1e34-ff0c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T02:40:14", "message_id": "b0294534-ff0a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T02:30:14", "message_id": "4a7c9a16-ff09-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T02:20:14", "message_id": "e4c3b836-ff07-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T02:10:14", "message_id": "7f141388-ff06-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T02:00:14", "message_id": "19619214-ff05-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T01:50:14", "message_id": "b3c1d8c0-ff03-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T01:40:13", "message_id": "4e0674f6-ff02-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T01:30:13", "message_id": "e85f39ae-ff00-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T01:20:13", "message_id": "82b10fd4-feff-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T01:10:13", "message_id": "1d094fc6-fefe-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T01:00:13", "message_id": "b74caf6c-fefc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T00:50:13", "message_id": "51a92b32-fefb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T00:40:13", "message_id": "ebfe6b2c-fef9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T00:30:13", "message_id": "864037ee-fef8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T00:20:13", "message_id": "20922b42-fef7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T00:10:13", "message_id": "bae4fdf2-fef5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T00:00:12", "message_id": "552d3692-fef4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T23:50:12", "message_id": "ef9043ac-fef2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T23:40:12", "message_id": "89e05494-fef1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T23:30:12", "message_id": "24365ab8-fef0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T23:20:12", "message_id": "be981e2c-feee-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T23:10:12", "message_id": "58cfdec8-feed-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T23:00:12", "message_id": "f36d9c92-feeb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T22:50:12", "message_id": "8d79a31e-feea-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T22:40:12", "message_id": "27ce6b04-fee9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T22:30:12", "message_id": "c220d450-fee7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T22:20:12", "message_id": "5c69d4be-fee6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T22:10:12", "message_id": "f6d24a10-fee4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T22:00:12", "message_id": "913a9550-fee3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T21:50:11", "message_id": "2b6a1972-fee2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T21:40:12", "message_id": "c5e25188-fee0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T21:30:11", "message_id": "6018b384-fedf-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T21:20:11", "message_id": "fa6bd4f4-fedd-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T21:10:11", "message_id": "94b4737e-fedc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T21:00:11", "message_id": "2efab1d4-fedb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T20:50:11", "message_id": "c957971c-fed9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T20:40:11", "message_id": "63b663bc-fed8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T20:30:11", "message_id": "fe02205c-fed6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T20:20:11", "message_id": "987ffd18-fed5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T20:10:11", "message_id": "329ee9d8-fed4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T20:00:11", "message_id": "cd07f124-fed2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T19:50:10", "message_id": "67501808-fed1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T19:40:10", "message_id": "01a77060-fed0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T19:30:10", "message_id": "9bf83570-fece-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T19:20:10", "message_id": "364519e2-fecd-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T19:10:10", "message_id": "d0951d6e-fecb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T19:00:10", "message_id": "6ad569d0-feca-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T18:50:10", "message_id": "0551ee7c-fec9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T18:40:10", "message_id": "9f89d556-fec7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T18:30:10", "message_id": "39d2db96-fec6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T18:20:10", "message_id": "d428fbb4-fec4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T18:10:09", "message_id": "6e75845a-fec3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T18:00:09", "message_id": "08ba0bbe-fec2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T17:50:09", "message_id": "a31236a2-fec0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T17:40:09", "message_id": "3d6a51aa-febf-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T17:30:09", "message_id": "d7b5a59a-febd-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T17:20:09", "message_id": "720d1bca-febc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T17:10:09", "message_id": "0c531e8e-febb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T17:00:09", "message_id": "a6a5ef86-feb9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T16:50:09", "message_id": "40f97a1e-feb8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T16:40:09", "message_id": "db421df8-feb6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T16:30:09", "message_id": "7599527e-feb5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T16:20:08", "message_id": "0fe67cd2-feb4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T16:10:08", "message_id": "aa433880-feb2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T16:00:08", "message_id": "449581ce-feb1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T15:50:08", "message_id": "dedee3ee-feaf-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T15:40:08", "message_id": "793c8e84-feae-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T15:30:08", "message_id": "13822730-fead-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T15:20:08", "message_id": "add74f60-feab-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T15:10:08", "message_id": "482533b8-feaa-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T15:00:08", "message_id": "e276431e-fea8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T14:50:08", "message_id": "7ccc2606-fea7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T14:40:08", "message_id": "172a70f6-fea6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T14:30:08", "message_id": "b18412da-fea4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T14:20:07", "message_id": "4bd2cdce-fea3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T14:10:07", "message_id": "e61f67b8-fea1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T14:00:07", "message_id": "808d6f36-fea0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T13:50:07", "message_id": "1ad0c27a-fe9f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T13:40:07", "message_id": "b513cbc2-fe9d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T13:30:07", "message_id": "4f663b62-fe9c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T13:20:07", "message_id": "e9b69b6e-fe9a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T13:10:07", "message_id": "8405285e-fe99-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T13:00:07", "message_id": "1e60d03a-fe98-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T12:50:07", "message_id": "b8b5595a-fe96-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T12:40:07", "message_id": "531a8620-fe95-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T12:30:07", "message_id": "ed594250-fe93-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T12:20:06", "message_id": "87a48196-fe92-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T12:10:06", "message_id": "22023546-fe91-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T12:00:06", "message_id": "bc535cd0-fe8f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T11:50:06", "message_id": "56a1e6e6-fe8e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T11:40:06", "message_id": "f1008050-fe8c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T11:30:07", "message_id": "8bde9780-fe8b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T11:20:06", "message_id": "2598389c-fe8a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T11:10:06", "message_id": "bfe43b0a-fe88-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T11:00:06", "message_id": "5a3d71aa-fe87-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T10:50:06", "message_id": "f491398c-fe85-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T10:40:06", "message_id": "8ee2e2bc-fe84-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T10:30:05", "message_id": "29307fb6-fe83-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T10:20:05", "message_id": "c38689d6-fe81-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T10:10:05", "message_id": "5dcd0c92-fe80-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T10:00:05", "message_id": "f82419ae-fe7e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T09:50:05", "message_id": "9270a4ac-fe7d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T09:40:05", "message_id": "2cc7efbc-fe7c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T09:30:05", "message_id": "c71ca7b2-fe7a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T09:20:05", "message_id": "6165c1a2-fe79-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T09:10:05", "message_id": "fbbe6c7e-fe77-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T09:00:05", "message_id": "960cba8a-fe76-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T08:50:05", "message_id": "305e5802-fe75-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T08:40:04", "message_id": "cab0fa88-fe73-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T08:30:04", "message_id": "64ff50d2-fe72-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T08:20:04", "message_id": "ff52cd00-fe70-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T08:10:04", "message_id": "99a7ec8e-fe6f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T08:00:04", "message_id": "33fa15f2-fe6e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T07:50:04", "message_id": "ce4aa434-fe6c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T07:40:04", "message_id": "68abfb60-fe6b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T07:30:04", "message_id": "02fbd3fe-fe6a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T07:20:04", "message_id": "9d500c92-fe68-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T07:10:04", "message_id": "379f4792-fe67-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T07:00:04", "message_id": "d1efc058-fe65-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T06:50:04", "message_id": "6c3f2b32-fe64-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T06:40:04", "message_id": "069ca814-fe63-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T06:30:03", "message_id": "a0eead6a-fe61-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T06:20:03", "message_id": "3b397a6e-fe60-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T06:10:03", "message_id": "d5851850-fe5e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T06:00:03", "message_id": "6fd631e8-fe5d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T05:50:03", "message_id": "0a28b1c8-fe5c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T05:40:03", "message_id": "a47fd730-fe5a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T05:30:03", "message_id": "3ec783d0-fe59-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T05:20:03", "message_id": "d91b835c-fe57-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T05:10:03", "message_id": "7372c9e4-fe56-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T05:00:03", "message_id": "0dbec496-fe55-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T04:50:02", "message_id": "a81090d0-fe53-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T04:40:02", "message_id": "426a1fd6-fe52-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T04:30:02", "message_id": "dcbea752-fe50-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T04:20:02", "message_id": "7706e42a-fe4f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T04:10:02", "message_id": "114dee36-fe4e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T04:00:02", "message_id": "aba9fb20-fe4c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T03:50:02", "message_id": "45f916ae-fe4b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T03:40:02", "message_id": "e04de57e-fe49-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T03:30:02", "message_id": "7a98407c-fe48-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T03:20:02", "message_id": "14e56eae-fe47-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T03:10:02", "message_id": "af41da84-fe45-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T03:00:01", "message_id": "498d4dbe-fe44-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T02:50:01", "message_id": "e3dc52ea-fe42-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T02:40:01", "message_id": "7e2b2a80-fe41-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T02:30:01", "message_id": "1889c304-fe40-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T02:20:01", "message_id": "b2de7c08-fe3e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T02:10:01", "message_id": "4d277adc-fe3d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T02:00:01", "message_id": "e77e932e-fe3b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T01:50:01", "message_id": "81d1eed2-fe3a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T01:40:01", "message_id": "1c2fbeac-fe39-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T01:30:01", "message_id": "b67fb07c-fe37-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T01:20:01", "message_id": "50dac938-fe36-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T01:10:01", "message_id": "eb21be40-fe34-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T01:00:01", "message_id": "857aa526-fe33-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T00:50:00", "message_id": "1fc233d0-fe32-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T00:40:00", "message_id": "ba1a6008-fe30-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T00:30:00", "message_id": "5466081c-fe2f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T00:20:00", "message_id": "eeb57e18-fe2d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T00:10:00", "message_id": "89096a62-fe2c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T00:00:00", "message_id": "235bc350-fe2b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T23:50:00", "message_id": "bdae8d04-fe29-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T23:40:00", "message_id": "5803527e-fe28-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T23:30:00", "message_id": "f252372a-fe26-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T23:20:00", "message_id": "8caf5ec6-fe25-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T23:10:00", "message_id": "273b5c80-fe24-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T23:00:00", "message_id": "c18eaed8-fe22-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T22:49:59", "message_id": "5b97a9f0-fe21-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T22:39:59", "message_id": "f5e35af6-fe1f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T22:29:59", "message_id": "903d2d18-fe1e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T22:19:59", "message_id": "2a91e20c-fe1d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T22:09:59", "message_id": "c4df8cf8-fe1b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T21:59:59", "message_id": "5f2f61a4-fe1a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T21:49:59", "message_id": "f97fd15a-fe18-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T21:39:59", "message_id": "93cce2ea-fe17-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T21:29:59", "message_id": "2e161d78-fe16-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T21:19:58", "message_id": "c86de2b8-fe14-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T21:09:58", "message_id": "62bf228e-fe13-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T20:59:58", "message_id": "fd134a7e-fe11-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T20:49:58", "message_id": "97595f8a-fe10-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T20:39:58", "message_id": "31aabf5e-fe0f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T20:29:58", "message_id": "cbfa044a-fe0d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T20:19:58", "message_id": "6654f7fe-fe0c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T20:09:58", "message_id": "009f3d26-fe0b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T19:59:58", "message_id": "9af4b2c2-fe09-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T19:49:58", "message_id": "35472028-fe08-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T19:39:58", "message_id": "cfa3f8fa-fe06-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T19:29:58", "message_id": "69f10238-fe05-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T19:19:57", "message_id": "0441f164-fe04-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T19:09:57", "message_id": "9e98b98e-fe02-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T18:59:57", "message_id": "38e6fd40-fe01-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T18:49:57", "message_id": "d335e106-fdff-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T18:39:57", "message_id": "6d8ed002-fdfe-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T18:29:57", "message_id": "07e1c13e-fdfd-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T18:19:57", "message_id": "a236f47c-fdfb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T18:09:57", "message_id": "3c970608-fdfa-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T17:59:57", "message_id": "d6dc09d6-fdf8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T17:49:57", "message_id": "713205c8-fdf7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T17:39:57", "message_id": "0b832ec4-fdf6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T17:29:57", "message_id": "a5d8eb5a-fdf4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T17:19:56", "message_id": "402885be-fdf3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T17:09:56", "message_id": "da7c875c-fdf1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T16:59:56", "message_id": "74cdefa0-fdf0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T16:49:56", "message_id": "0f1e68c0-fdef-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T16:39:56", "message_id": "a979e9a0-fded-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T16:29:56", "message_id": "43f4ac6a-fdec-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T16:19:56", "message_id": "de25af34-fdea-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T16:09:56", "message_id": "788245bc-fde9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T15:59:56", "message_id": "12d21e28-fde8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T15:49:56", "message_id": "ad29ed5e-fde6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T15:39:56", "message_id": "477df672-fde5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T15:29:56", "message_id": "e1cf4570-fde3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T15:19:56", "message_id": "7c50b8c4-fde2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T15:09:56", "message_id": "166a4de6-fde1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T14:59:55", "message_id": "b0b9cfd6-fddf-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T14:49:55", "message_id": "4b17d0de-fdde-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T14:39:55", "message_id": "e561e924-fddc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T14:29:55", "message_id": "7fb668b2-fddb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T14:19:55", "message_id": "1a0745e6-fdda-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T14:09:55", "message_id": "b45d928c-fdd8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T13:59:55", "message_id": "4ea9770e-fdd7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T13:49:55", "message_id": "e8fe6280-fdd5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T13:39:55", "message_id": "834ab9b2-fdd4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T13:29:55", "message_id": "1d98d352-fdd3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T13:19:55", "message_id": "b7ea48de-fdd1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T13:09:54", "message_id": "523f967a-fdd0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T12:59:54", "message_id": "ec92a98a-fdce-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T12:49:54", "message_id": "86e39a8c-fdcd-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T12:39:54", "message_id": "213218ea-fdcc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T12:29:54", "message_id": "bb827536-fdca-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T12:19:54", "message_id": "55d65474-fdc9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T12:09:54", "message_id": "f020f2d4-fdc7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T11:59:54", "message_id": "8a7702e4-fdc6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T11:49:54", "message_id": "24cc42c0-fdc5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T11:39:54", "message_id": "bf211a6e-fdc3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T11:29:54", "message_id": "5970ece0-fdc2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T11:19:53", "message_id": "f3c6a728-fdc0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T11:09:53", "message_id": "8e17b558-fdbf-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T10:59:53", "message_id": "286b40fe-fdbe-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T10:49:54", "message_id": "c2e6dd66-fdbc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T10:39:53", "message_id": "5d0d426a-fdbb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T10:29:53", "message_id": "f7699fe0-fdb9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T10:19:53", "message_id": "91b77ace-fdb8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T10:09:53", "message_id": "2c183cea-fdb7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T09:59:53", "message_id": "c66ad7be-fdb5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T09:49:53", "message_id": "60bee492-fdb4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T09:39:53", "message_id": "fb100b9a-fdb2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T09:29:53", "message_id": "9564b904-fdb1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T09:19:53", "message_id": "2fb36584-fdb0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T09:09:52", "message_id": "ca007764-fdae-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T08:59:52", "message_id": "6457f7da-fdad-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T08:49:52", "message_id": "feb804c0-fdab-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T08:39:52", "message_id": "98fd0a6e-fdaa-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T08:29:52", "message_id": "334e1038-fda9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T08:19:52", "message_id": "cd9cfaca-fda7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T08:09:52", "message_id": "6808c190-fda6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T07:59:52", "message_id": "02443106-fda5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T07:49:52", "message_id": "9c927616-fda3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T07:39:52", "message_id": "36eb21ce-fda2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T07:29:52", "message_id": "d1390d2e-fda0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T07:19:52", "message_id": "6b8d0b3e-fd9f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T07:09:52", "message_id": "06053f08-fd9e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T06:59:51", "message_id": "a029f08a-fd9c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T06:49:51", "message_id": "3a805b62-fd9b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T06:39:51", "message_id": "d4c7be24-fd99-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T06:29:51", "message_id": "6f1c46fe-fd98-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T06:19:51", "message_id": "0967d680-fd97-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T06:09:51", "message_id": "a3bd39ac-fd95-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T05:59:51", "message_id": "3e1089b6-fd94-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T05:49:51", "message_id": "d86292ae-fd92-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T05:39:51", "message_id": "72b38f9a-fd91-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T05:29:51", "message_id": "0d107abe-fd90-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T05:19:50", "message_id": "a75f8c2e-fd8e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T05:09:50", "message_id": "41a9a596-fd8d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T04:59:50", "message_id": "dc09cb68-fd8b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T04:49:50", "message_id": "766758da-fd8a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T04:39:50", "message_id": "10c73e6a-fd89-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T04:29:50", "message_id": "ab19be0e-fd87-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T04:19:50", "message_id": "45521dd8-fd86-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T04:09:50", "message_id": "dfbe8566-fd84-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T03:59:50", "message_id": "79d53a48-fd83-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T03:49:50", "message_id": "1445f402-fd82-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T03:39:50", "message_id": "ae9ec652-fd80-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T03:29:50", "message_id": "48fb355c-fd7f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T03:19:50", "message_id": "e35950ea-fd7d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T03:09:50", "message_id": "7da53c1a-fd7c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T02:59:49", "message_id": "17dbf794-fd7b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T02:49:49", "message_id": "b21dc03c-fd79-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T02:39:49", "message_id": "4caf8858-fd78-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T02:29:49", "message_id": "e6f11eb0-fd76-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T02:19:49", "message_id": "814b6ca6-fd75-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T02:09:49", "message_id": "1b965700-fd74-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T01:59:49", "message_id": "b5d5495e-fd72-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T01:49:49", "message_id": "502bade2-fd71-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T01:39:49", "message_id": "ea87811a-fd6f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T01:29:49", "message_id": "85054166-fd6e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T01:19:49", "message_id": "1f65ec26-fd6d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T01:09:49", "message_id": "b9a3af14-fd6b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T00:59:48", "message_id": "53db3e96-fd6a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T00:49:48", "message_id": "ee1c31c4-fd68-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T00:39:48", "message_id": "88833d0e-fd67-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T00:29:48", "message_id": "22dc2412-fd66-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T00:19:48", "message_id": "bd37a1be-fd64-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T00:09:48", "message_id": "57a85182-fd63-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-04T23:59:48", "message_id": "f1ff21d6-fd61-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-04T23:49:48", "message_id": "8c39ad5e-fd60-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-04T23:39:06", "message_id": "0d67c278-fd5f-11e2-b8cf-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.size", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-04T23:29:06", "message_id": "a7d6b140-fd5d-11e2-b8cf-080027880ca6", "source": "openstack", "counter_unit": "B", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}], "http://localhost:8777/v2/meters/storage.objects.containers?q.field=resource_id&q.value=253d975f27004438b89a239b5638a6bc": [{"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-12T04:01:18", "message_id": "d76c49b4-0303-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-12T03:51:18", "message_id": "71baed9c-0302-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-12T03:41:18", "message_id": "0c091fb0-0301-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-12T03:31:18", "message_id": "a66c423c-02ff-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-12T03:21:18", "message_id": "40b7cf66-02fe-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-12T03:11:18", "message_id": "db0de70a-02fc-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-12T03:01:17", "message_id": "75536c92-02fb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-12T02:51:17", "message_id": "0fafcef4-02fa-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-12T02:41:17", "message_id": "a9ec65e2-02f8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-12T02:31:17", "message_id": "444826aa-02f7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-12T02:21:17", "message_id": "de939052-02f5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-12T02:11:17", "message_id": "78e65cea-02f4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-12T02:01:17", "message_id": "133f555a-02f3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-12T01:51:17", "message_id": "ad94e98c-02f1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-12T01:41:17", "message_id": "47e1412c-02f0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-12T01:31:17", "message_id": "e233e4de-02ee-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-12T01:21:17", "message_id": "7c7f15ec-02ed-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-12T01:11:16", "message_id": "16d61674-02ec-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-12T01:01:16", "message_id": "b11343b2-02ea-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-12T00:51:16", "message_id": "4b7affe6-02e9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-12T00:41:16", "message_id": "e5bf4b22-02e7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-12T00:31:16", "message_id": "800f2460-02e6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-12T00:21:16", "message_id": "1a8dce8a-02e5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-12T00:11:16", "message_id": "b4af1f48-02e3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-12T00:01:16", "message_id": "4f0529a4-02e2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T23:51:16", "message_id": "e9563036-02e0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T23:41:16", "message_id": "83afc09a-02df-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T23:31:16", "message_id": "1e05a418-02de-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T23:21:15", "message_id": "b84c1bd0-02dc-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T23:11:15", "message_id": "52ad1e88-02db-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T23:01:16", "message_id": "ed35efe0-02d9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T22:51:15", "message_id": "874e01d2-02d8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T22:41:15", "message_id": "21999a5a-02d7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T22:31:15", "message_id": "bbeccb88-02d5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T22:21:15", "message_id": "5637fb42-02d4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T22:11:15", "message_id": "f087db56-02d2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T22:01:15", "message_id": "8ade7cca-02d1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T21:51:15", "message_id": "25375398-02d0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T21:41:15", "message_id": "bf885f5c-02ce-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T21:31:14", "message_id": "59d451b2-02cd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T21:21:14", "message_id": "f42abe1a-02cb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T21:11:14", "message_id": "8e7bcea2-02ca-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T21:01:14", "message_id": "28cadcf2-02c9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T20:51:14", "message_id": "c320b422-02c7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T20:41:14", "message_id": "5d6b692a-02c6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T20:31:14", "message_id": "f7c4b55a-02c4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T20:21:14", "message_id": "9215c4c0-02c3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T20:11:14", "message_id": "2c72c6be-02c2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T20:01:14", "message_id": "c6bce576-02c0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T19:51:14", "message_id": "6112087e-02bf-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T19:41:14", "message_id": "fb5ffeec-02bd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T19:31:14", "message_id": "95b52fdc-02bc-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T19:21:13", "message_id": "30043ac6-02bb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T19:11:13", "message_id": "ca510e58-02b9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T19:01:13", "message_id": "649c35fc-02b8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T18:51:13", "message_id": "feea114e-02b6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T18:41:13", "message_id": "9942bd2e-02b5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T18:31:13", "message_id": "338ee45e-02b4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T18:21:13", "message_id": "cddfec44-02b2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T18:11:13", "message_id": "6830c194-02b1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T18:01:13", "message_id": "0280bed6-02b0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T17:51:13", "message_id": "9cd5b6aa-02ae-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T17:41:12", "message_id": "37239b3e-02ad-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T17:31:12", "message_id": "d17b377a-02ab-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T17:21:12", "message_id": "6bc918e4-02aa-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T17:11:12", "message_id": "061712ea-02a9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T17:01:12", "message_id": "a0771f94-02a7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T16:51:12", "message_id": "3ac73784-02a6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T16:41:12", "message_id": "d5266ff4-02a4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T16:31:12", "message_id": "6f6f6568-02a3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T16:21:12", "message_id": "09b77784-02a2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T16:11:12", "message_id": "a40db5fc-02a0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T16:01:12", "message_id": "3e6922c8-029f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T15:51:12", "message_id": "d8b80f4e-029d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T15:41:12", "message_id": "73167eba-029c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T15:31:11", "message_id": "0d70e650-029b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T15:21:11", "message_id": "a7d01ba0-0299-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T15:11:11", "message_id": "421e1132-0298-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T15:01:11", "message_id": "dc6c4062-0296-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T14:51:11", "message_id": "76b7035c-0295-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T14:41:11", "message_id": "1108db12-0294-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T14:31:11", "message_id": "ab588d90-0292-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T14:21:11", "message_id": "45ab29cc-0291-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T14:11:11", "message_id": "dff92eb8-028f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T14:01:11", "message_id": "7a53ea2c-028e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T13:51:11", "message_id": "14a87176-028d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T13:41:11", "message_id": "aefb0420-028b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T13:31:10", "message_id": "494cac60-028a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T13:21:10", "message_id": "e397b7ee-0288-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T13:11:10", "message_id": "7df0c062-0287-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T13:01:10", "message_id": "184908f6-0286-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T12:51:10", "message_id": "b2933bb8-0284-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T12:41:10", "message_id": "4ce90a14-0283-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T12:31:10", "message_id": "e735fc6e-0281-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T12:21:10", "message_id": "818119c2-0280-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T12:11:10", "message_id": "1bd48dd0-027f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T12:01:10", "message_id": "b621fc08-027d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T11:51:10", "message_id": "507a9956-027c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T11:41:09", "message_id": "eac060a6-027a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T11:31:09", "message_id": "851536d8-0279-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T11:21:09", "message_id": "1f65a54e-0278-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T11:11:09", "message_id": "b9b7c2e6-0276-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T11:01:09", "message_id": "54082126-0275-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T10:51:09", "message_id": "ee566e38-0273-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T10:41:09", "message_id": "88acbe12-0272-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T10:31:09", "message_id": "23039e42-0271-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T10:21:09", "message_id": "bd4a851c-026f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T10:11:09", "message_id": "57ad60f4-026e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T10:01:09", "message_id": "f1f94c10-026c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T09:51:08", "message_id": "8c49fb18-026b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T09:41:08", "message_id": "26980a5e-026a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T09:31:08", "message_id": "c0ef7c38-0268-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T09:21:08", "message_id": "5b3fc240-0267-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T09:11:08", "message_id": "f597a742-0265-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T09:01:08", "message_id": "8fe7f60a-0264-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T08:51:08", "message_id": "2a44b9a6-0263-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T08:41:08", "message_id": "c497ef02-0261-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T08:31:08", "message_id": "5eedfdb4-0260-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T08:21:08", "message_id": "f9326a4c-025e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T08:11:08", "message_id": "93860952-025d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T08:01:08", "message_id": "2ddd3612-025c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T07:51:07", "message_id": "c8267a50-025a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T07:41:07", "message_id": "6282edce-0259-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T07:31:07", "message_id": "fccf5004-0257-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T07:21:07", "message_id": "97250ccc-0256-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T07:11:07", "message_id": "31661a6c-0255-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T07:01:07", "message_id": "cbca8edc-0253-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T06:51:07", "message_id": "661783ac-0252-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T06:41:07", "message_id": "0065d582-0251-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T06:31:07", "message_id": "9ab6267a-024f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T06:21:07", "message_id": "35162578-024e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T06:11:07", "message_id": "cf5f79ba-024c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T06:01:07", "message_id": "69c8a69a-024b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T05:51:07", "message_id": "040da45a-024a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T05:41:06", "message_id": "9e5c6836-0248-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T05:31:06", "message_id": "38a5d424-0247-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T05:21:06", "message_id": "d2f8038c-0245-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T05:11:06", "message_id": "6d40702a-0244-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T05:01:06", "message_id": "07987372-0243-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T04:51:06", "message_id": "a1f020b6-0241-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T04:41:06", "message_id": "3c3d67b6-0240-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T04:31:06", "message_id": "d691c3b8-023e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T04:21:06", "message_id": "70fb44da-023d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T04:11:06", "message_id": "0b31dd54-023c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T04:01:05", "message_id": "a58937d2-023a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T03:51:05", "message_id": "3fdc384a-0239-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T03:41:05", "message_id": "da45722c-0237-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T03:31:05", "message_id": "74787c10-0236-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T03:21:05", "message_id": "0ecb0168-0235-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T03:11:05", "message_id": "a919aef6-0233-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T03:01:05", "message_id": "43689cc6-0232-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T02:51:05", "message_id": "ddb70bc0-0230-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T02:41:05", "message_id": "77f7bb96-022f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T02:31:05", "message_id": "12569c54-022e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T02:21:04", "message_id": "aca63a8c-022c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T02:11:04", "message_id": "46f6e85e-022b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T02:01:04", "message_id": "e1539e8a-0229-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T01:51:04", "message_id": "7b9b7b90-0228-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T01:41:04", "message_id": "16001e36-0227-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T01:31:04", "message_id": "b04e3236-0225-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T01:21:04", "message_id": "4a86a178-0224-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T01:11:04", "message_id": "e4d8823e-0222-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T01:01:04", "message_id": "7f34bf34-0221-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T00:51:04", "message_id": "197d8708-0220-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T00:41:04", "message_id": "b3cf04d2-021e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T00:31:03", "message_id": "4e1e6818-021d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T00:21:03", "message_id": "e86f2ddc-021b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T00:11:03", "message_id": "82bdb496-021a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-11T00:01:03", "message_id": "1d148b66-0219-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T23:51:03", "message_id": "b7667d16-0217-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T23:41:03", "message_id": "51b57a04-0216-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T23:31:03", "message_id": "ec0c9bb6-0214-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T23:21:03", "message_id": "86647c44-0213-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T23:11:03", "message_id": "20aa4f06-0212-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T23:01:03", "message_id": "bb56cc66-0210-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T22:51:03", "message_id": "5562d1ee-020f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T22:41:08", "message_id": "f2c27f36-020d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T22:31:03", "message_id": "8a0ff762-020c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T22:21:02", "message_id": "2457d5da-020b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T22:11:02", "message_id": "bebda264-0209-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T22:01:02", "message_id": "58fdd88c-0208-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T21:51:02", "message_id": "f36703d2-0206-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T21:41:02", "message_id": "8dae97f4-0205-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T21:31:02", "message_id": "27f93f32-0204-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T21:21:02", "message_id": "c26ccafe-0202-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T21:11:02", "message_id": "5ca5fdfe-0201-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T21:01:02", "message_id": "f6e48ffe-01ff-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T20:51:02", "message_id": "9197ef7a-01fe-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T20:41:02", "message_id": "2b9ae354-01fd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T20:31:02", "message_id": "c61cc16a-01fb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T20:21:01", "message_id": "6038386c-01fa-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T20:11:01", "message_id": "fa7ff51a-01f8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T20:01:01", "message_id": "94d32238-01f7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T19:51:01", "message_id": "2f27c638-01f6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T19:41:01", "message_id": "c97aa7ac-01f4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T19:31:01", "message_id": "63d2b030-01f3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T19:21:01", "message_id": "fe0a3008-01f1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T19:11:01", "message_id": "986c2856-01f0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T19:01:01", "message_id": "32bcf072-01ef-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T18:51:00", "message_id": "ccfc1dc2-01ed-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T18:41:00", "message_id": "676293c0-01ec-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T18:31:00", "message_id": "01ae728e-01eb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T18:21:00", "message_id": "9bfcbae6-01e9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T18:11:00", "message_id": "3647b1f2-01e8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T18:01:00", "message_id": "d098179e-01e6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T17:51:00", "message_id": "6af2ccd2-01e5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T17:41:00", "message_id": "05474e4a-01e4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T17:31:00", "message_id": "9f92a7e4-01e2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T17:21:00", "message_id": "39e5c9a4-01e1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T17:11:00", "message_id": "d4305530-01df-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T17:00:59", "message_id": "6e82432a-01de-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T16:50:59", "message_id": "08d75228-01dd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T16:40:59", "message_id": "a3247934-01db-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T16:30:59", "message_id": "3d7a231e-01da-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T16:20:59", "message_id": "d7c33ad4-01d8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T16:10:59", "message_id": "721ea0ca-01d7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T16:00:59", "message_id": "0c759f7c-01d6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T15:50:59", "message_id": "a6c55b6e-01d4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T15:40:59", "message_id": "4126543a-01d3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T15:30:59", "message_id": "db73db22-01d1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T15:20:59", "message_id": "75cca9b2-01d0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T15:10:59", "message_id": "101b71a8-01cf-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T15:00:58", "message_id": "aa65d3d6-01cd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T14:50:58", "message_id": "44be2a02-01cc-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T14:40:58", "message_id": "df0552fe-01ca-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T14:30:58", "message_id": "794d4076-01c9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T14:20:58", "message_id": "139ec28c-01c8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T14:10:58", "message_id": "adf89f30-01c6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T14:00:58", "message_id": "484a4e8c-01c5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T13:50:58", "message_id": "e29e5cd2-01c3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T13:40:58", "message_id": "7ce7d3c4-01c2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T13:30:58", "message_id": "17463b06-01c1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T13:20:58", "message_id": "b18c9fd6-01bf-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T13:10:57", "message_id": "4bde647c-01be-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T13:00:57", "message_id": "e6311fbc-01bc-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T12:50:57", "message_id": "807ff112-01bb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T12:40:57", "message_id": "1ad4a282-01ba-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T12:30:57", "message_id": "b52c99cc-01b8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T12:20:57", "message_id": "4f82c19c-01b7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T12:10:57", "message_id": "e9d9d3c2-01b5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T12:00:57", "message_id": "84212144-01b4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T11:50:57", "message_id": "1e786768-01b3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T11:40:57", "message_id": "b8d2a23a-01b1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T11:30:57", "message_id": "531f0c68-01b0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T11:20:57", "message_id": "ed72db48-01ae-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T11:10:57", "message_id": "87ca56aa-01ad-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T11:00:56", "message_id": "2205e808-01ac-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T10:50:57", "message_id": "bc8a5c76-01aa-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T10:40:56", "message_id": "56b676e2-01a9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T10:30:56", "message_id": "f1149a5e-01a7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T10:20:56", "message_id": "8b59145c-01a6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T10:10:56", "message_id": "25c8e3ca-01a5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T10:00:56", "message_id": "c0056b90-01a3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T09:50:56", "message_id": "5a4a1f18-01a2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T09:40:56", "message_id": "f4a6f9d4-01a0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T09:30:56", "message_id": "8f12b03c-019f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T09:20:56", "message_id": "29478bf2-019e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T09:10:55", "message_id": "c39febce-019c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T09:00:56", "message_id": "5e09ee28-019b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T08:50:55", "message_id": "f84183ae-0199-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T08:40:55", "message_id": "92a08a6e-0198-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T08:30:55", "message_id": "2cd488d0-0197-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T08:20:55", "message_id": "c733fe1c-0195-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T08:10:55", "message_id": "6174cf94-0194-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T08:00:55", "message_id": "fbc995fe-0192-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T07:50:55", "message_id": "962c4102-0191-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T07:40:55", "message_id": "308130a2-0190-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T07:30:55", "message_id": "cacbfd56-018e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T07:20:54", "message_id": "6521dda0-018d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T07:10:54", "message_id": "ff748a26-018b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T07:00:54", "message_id": "99c22ab8-018a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T06:50:54", "message_id": "3418107a-0189-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T06:40:54", "message_id": "ce6ad3bc-0187-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T06:30:54", "message_id": "68be0710-0186-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T06:20:54", "message_id": "031358f8-0185-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T06:10:54", "message_id": "9d593da8-0183-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T06:00:54", "message_id": "37a16644-0182-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T05:50:54", "message_id": "d2040324-0180-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T05:40:54", "message_id": "6c506a96-017f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T05:30:53", "message_id": "0696c87c-017e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T05:20:53", "message_id": "a0ee1fee-017c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T05:10:53", "message_id": "3b455118-017b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T05:00:53", "message_id": "d59ca1aa-0179-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T04:50:53", "message_id": "6fe26d78-0178-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T04:40:53", "message_id": "0a2c01d4-0177-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T04:30:53", "message_id": "a4818012-0175-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T04:20:53", "message_id": "3ed1523e-0174-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T04:10:53", "message_id": "d923f6d6-0172-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T04:00:53", "message_id": "737f1e2e-0171-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T03:50:53", "message_id": "0dd15048-0170-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T03:40:53", "message_id": "a8248f0e-016e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T03:30:52", "message_id": "4279a802-016d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T03:20:52", "message_id": "dcc56966-016b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T03:10:52", "message_id": "77179d60-016a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T03:00:52", "message_id": "1169bcc4-0169-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T02:50:52", "message_id": "abbe5002-0167-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T02:40:52", "message_id": "46078626-0166-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T02:30:52", "message_id": "e058a6bc-0164-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T02:20:52", "message_id": "7abcd39c-0163-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T02:10:52", "message_id": "150eb62e-0162-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T02:00:52", "message_id": "af58e698-0160-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T01:50:52", "message_id": "49d1a752-015f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T01:40:52", "message_id": "e415acf2-015d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T01:30:52", "message_id": "7e7815de-015c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T01:20:52", "message_id": "18cb69bc-015b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T01:10:51", "message_id": "b30cd6a2-0159-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T01:00:51", "message_id": "4d68788e-0158-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T00:50:51", "message_id": "e7967bba-0156-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T00:40:51", "message_id": "81ecd2c4-0155-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T00:30:51", "message_id": "1c3db6a6-0154-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T00:20:51", "message_id": "b6803d08-0152-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T00:10:51", "message_id": "50dd3164-0151-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-10T00:00:51", "message_id": "eb2b8e66-014f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T23:50:50", "message_id": "857ea8ce-014e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T23:40:50", "message_id": "1fc8f8be-014d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T23:30:50", "message_id": "ba0fc9ea-014b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T23:20:50", "message_id": "5472c08e-014a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T23:10:50", "message_id": "eebbfa4a-0148-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T23:00:50", "message_id": "894d26bc-0147-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T22:50:50", "message_id": "23617502-0146-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T22:40:50", "message_id": "bdab1278-0144-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T22:30:50", "message_id": "57ffbd08-0143-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T22:20:50", "message_id": "f263fd84-0141-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T22:10:50", "message_id": "8c9f7e7a-0140-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T22:00:50", "message_id": "26fe85da-013f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T21:50:49", "message_id": "c152166c-013d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T21:40:49", "message_id": "5baaf60e-013c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T21:30:49", "message_id": "f601eebc-013a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T21:20:49", "message_id": "904ba9b0-0139-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T21:10:49", "message_id": "2aa72b94-0138-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T21:00:49", "message_id": "c4fe7b5e-0136-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T20:50:49", "message_id": "5f4c85ea-0135-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T20:40:49", "message_id": "f9a22886-0133-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T20:30:49", "message_id": "93e76520-0132-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T20:20:49", "message_id": "2e5b2260-0131-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T20:10:49", "message_id": "c8959b1e-012f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T20:00:49", "message_id": "62e6cf1e-012e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T19:50:49", "message_id": "fd43ba74-012c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T19:40:48", "message_id": "9785663e-012b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T19:30:48", "message_id": "31dd4f14-012a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T19:20:48", "message_id": "cc3f6dfa-0128-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T19:10:48", "message_id": "668457a6-0127-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T19:00:48", "message_id": "00d0c026-0126-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T18:50:48", "message_id": "9b1b49f0-0124-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T18:40:48", "message_id": "357009f2-0123-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T18:30:48", "message_id": "cfb98170-0121-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T18:20:48", "message_id": "6a0b0f20-0120-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T18:10:47", "message_id": "04586e8a-011f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T18:00:47", "message_id": "9ea06724-011d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T17:50:47", "message_id": "38faa08e-011c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T17:40:47", "message_id": "d3475210-011a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T17:30:47", "message_id": "6d95f436-0119-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T17:20:47", "message_id": "07efa736-0118-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T17:10:47", "message_id": "a23cf584-0116-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T17:00:47", "message_id": "3c90e066-0115-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T16:50:47", "message_id": "d6dbfeb4-0113-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T16:40:47", "message_id": "712ba08e-0112-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T16:30:47", "message_id": "0b8c9dec-0111-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T16:20:46", "message_id": "a5d306ea-010f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T16:10:46", "message_id": "402b67e8-010e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T16:00:46", "message_id": "da7a6db4-010c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T15:50:49", "message_id": "76516b2c-010b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T15:40:47", "message_id": "0f7af0e0-010a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T15:30:46", "message_id": "a9956ebe-0108-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T15:20:46", "message_id": "43cad778-0107-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T15:10:46", "message_id": "de329712-0105-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T15:00:46", "message_id": "787127be-0104-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T14:50:46", "message_id": "12cce002-0103-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T14:40:46", "message_id": "ad18814a-0101-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T14:30:46", "message_id": "47618866-0100-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T14:20:46", "message_id": "e1bf6de4-00fe-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T14:10:46", "message_id": "7c46c5a8-00fd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T14:00:45", "message_id": "164e9880-00fc-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T13:50:45", "message_id": "b0af1910-00fa-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T13:40:45", "message_id": "4af8db7a-00f9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T13:30:45", "message_id": "e5497fba-00f7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T13:20:46", "message_id": "7ffe9bd2-00f6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T13:10:45", "message_id": "19de898a-00f5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T13:00:45", "message_id": "b43beb28-00f3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T12:50:45", "message_id": "4e82cd48-00f2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T12:40:45", "message_id": "e8dc75e4-00f0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T12:30:44", "message_id": "833314ce-00ef-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T12:20:44", "message_id": "1d7cbc9e-00ee-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T12:10:44", "message_id": "b7cdf18e-00ec-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T12:00:44", "message_id": "52211506-00eb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T11:50:44", "message_id": "ec7a379c-00e9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T11:40:44", "message_id": "86c3004c-00e8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T11:30:44", "message_id": "211c4f10-00e7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T11:20:44", "message_id": "bb6b7d2c-00e5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T11:10:44", "message_id": "55c312ce-00e4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T11:00:44", "message_id": "f00b2f8a-00e2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T10:50:44", "message_id": "8a5cdb94-00e1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T10:40:43", "message_id": "24aca276-00e0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T10:30:43", "message_id": "bf03286a-00de-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T10:20:43", "message_id": "594fe05e-00dd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T10:10:43", "message_id": "f3a399cc-00db-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T10:00:43", "message_id": "8e058806-00da-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T09:50:43", "message_id": "2843789e-00d9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T09:40:43", "message_id": "c29e59a6-00d7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T09:30:43", "message_id": "5cee79de-00d6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T09:20:43", "message_id": "f7416f20-00d4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T09:10:43", "message_id": "919acca8-00d3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T09:00:43", "message_id": "2be70350-00d2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T08:50:42", "message_id": "c630e9fa-00d0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T08:40:42", "message_id": "608c2d4a-00cf-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T08:30:42", "message_id": "fadf9f46-00cd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T08:20:42", "message_id": "953076a8-00cc-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T08:10:42", "message_id": "2f7baf54-00cb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T08:00:42", "message_id": "c9cb2988-00c9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T07:50:42", "message_id": "641c76e2-00c8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T07:40:42", "message_id": "fe98d492-00c6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T07:30:42", "message_id": "98c9f3cc-00c5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T07:20:42", "message_id": "330c1296-00c4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T07:10:42", "message_id": "cd5f7fec-00c2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T07:00:41", "message_id": "67b4e1a6-00c1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T06:50:41", "message_id": "01fff3e2-00c0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T06:40:41", "message_id": "9c551a8c-00be-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T06:30:41", "message_id": "36a803d0-00bd-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T06:20:41", "message_id": "d0f3acb6-00bb-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T06:10:41", "message_id": "6b4a0ffa-00ba-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T06:00:41", "message_id": "05a50674-00b9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T05:50:41", "message_id": "9ff10554-00b7-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T05:40:41", "message_id": "3a49a1a8-00b6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T05:30:41", "message_id": "d4955466-00b4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T05:20:41", "message_id": "6ee643b0-00b3-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T05:10:41", "message_id": "093a0692-00b2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T05:00:40", "message_id": "a38e9264-00b0-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T04:50:40", "message_id": "3df49030-00af-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T04:40:40", "message_id": "d84b925c-00ad-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T04:30:40", "message_id": "729948f6-00ac-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T04:20:40", "message_id": "0cfaad60-00ab-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T04:10:40", "message_id": "a75421c2-00a9-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T04:00:40", "message_id": "41c98294-00a8-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T03:50:41", "message_id": "dc45492c-00a6-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T03:40:40", "message_id": "765859b6-00a5-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T03:30:40", "message_id": "10dddbac-00a4-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T03:20:40", "message_id": "ab06de38-00a2-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T03:10:40", "message_id": "4562523e-00a1-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T03:00:40", "message_id": "dfb622fe-009f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T02:50:40", "message_id": "79fa466c-009e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T02:40:40", "message_id": "14837138-009d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T02:30:40", "message_id": "aea0f5ee-009b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T02:20:40", "message_id": "48f6695a-009a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T02:10:39", "message_id": "e34a7ffc-0098-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T02:00:39", "message_id": "7d9d4550-0097-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T01:50:39", "message_id": "17da3486-0096-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T01:40:39", "message_id": "b22ab3f0-0094-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T01:30:39", "message_id": "4c7cf51e-0093-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T01:20:39", "message_id": "e6d99ad8-0091-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T01:10:39", "message_id": "811d74f4-0090-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T01:00:39", "message_id": "1b7bf91e-008f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T00:50:39", "message_id": "b5c2d24c-008d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T00:40:38", "message_id": "500d84f2-008c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T00:30:38", "message_id": "ea6e3f98-008a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T00:20:38", "message_id": "84c24e4c-0089-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T00:10:38", "message_id": "1f0f88a4-0088-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-09T00:00:38", "message_id": "b96043f0-0086-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T23:50:38", "message_id": "53aad9fe-0085-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T23:40:38", "message_id": "ee0b9c92-0083-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T23:30:38", "message_id": "8851d124-0082-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T23:20:38", "message_id": "229b7b38-0081-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T23:10:38", "message_id": "bcf87052-007f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T23:00:38", "message_id": "57806294-007e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T22:50:38", "message_id": "f192f218-007c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T22:40:37", "message_id": "8bec336c-007b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T22:30:37", "message_id": "262b2034-007a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T22:20:37", "message_id": "c087e074-0078-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T22:10:37", "message_id": "5ad86060-0077-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T22:00:37", "message_id": "f5285bd6-0075-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T21:50:37", "message_id": "8f86266a-0074-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T21:40:37", "message_id": "29ce2cb0-0073-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T21:30:37", "message_id": "c4242cf8-0071-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T21:20:37", "message_id": "5e84a1e4-0070-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T21:10:37", "message_id": "f8c9e98c-006e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T21:00:37", "message_id": "93127394-006d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T20:50:36", "message_id": "2d5f94e2-006c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T20:40:36", "message_id": "c7b1e498-006a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T20:30:36", "message_id": "620ad3c6-0069-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T20:20:36", "message_id": "fc4f7d1c-0067-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T20:10:36", "message_id": "96acdb90-0066-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T20:00:36", "message_id": "30f86392-0065-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T19:50:36", "message_id": "cb5029b8-0063-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T19:40:36", "message_id": "659b0b20-0062-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T19:30:36", "message_id": "ffee1a16-0060-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T19:20:36", "message_id": "9a39fbfa-005f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T19:10:35", "message_id": "348eb152-005e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T19:00:35", "message_id": "cee28726-005c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T18:50:35", "message_id": "6932cd06-005b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T18:40:35", "message_id": "037e7452-005a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T18:30:35", "message_id": "9ddec256-0058-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T18:20:35", "message_id": "381e60f8-0057-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T18:10:35", "message_id": "d27c9b80-0055-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T18:00:35", "message_id": "6cce388a-0054-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T17:50:35", "message_id": "072065c2-0053-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T17:40:35", "message_id": "a17a3956-0051-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T17:30:35", "message_id": "3bce4d0a-0050-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T17:20:35", "message_id": "d61d060a-004e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T17:10:34", "message_id": "706cdf7a-004d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T17:00:34", "message_id": "0abac486-004c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T16:50:34", "message_id": "a50ed858-004a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T16:40:34", "message_id": "3f684ae4-0049-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T16:30:34", "message_id": "d9bb9206-0047-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T16:20:34", "message_id": "7410082a-0046-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T16:10:34", "message_id": "0e5c1aba-0045-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T16:00:34", "message_id": "a8b7ae14-0043-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T15:50:34", "message_id": "4305d3e4-0042-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T15:40:34", "message_id": "dd52ae6a-0040-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T15:30:34", "message_id": "77a82b68-003f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T15:20:34", "message_id": "11fdd840-003e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T15:10:34", "message_id": "ac4dbb60-003c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T15:00:33", "message_id": "4697e580-003b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T14:50:33", "message_id": "e0f0a7a4-0039-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T14:40:33", "message_id": "7b3a41f0-0038-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T14:30:33", "message_id": "1594b070-0037-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T14:20:33", "message_id": "afe06662-0035-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T14:10:33", "message_id": "4a4279d6-0034-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T14:00:33", "message_id": "e4c39122-0032-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T13:50:33", "message_id": "7ed5a0ea-0031-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T13:40:33", "message_id": "1933dd7a-0030-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T13:30:33", "message_id": "b381727c-002e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T13:20:33", "message_id": "4dddb116-002d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T13:10:32", "message_id": "e829abd2-002b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T13:00:32", "message_id": "82778684-002a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T12:50:32", "message_id": "1ccbb338-0029-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T12:40:32", "message_id": "b711c31c-0027-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T12:30:32", "message_id": "516b5eca-0026-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T12:20:32", "message_id": "ebb4f84e-0024-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T12:10:32", "message_id": "85ff4eba-0023-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T12:00:32", "message_id": "205bcb70-0022-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T11:50:32", "message_id": "baa7edb4-0020-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T11:40:32", "message_id": "550f9868-001f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T11:30:32", "message_id": "ef64be36-001d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T11:20:31", "message_id": "89a7d084-001c-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T11:10:32", "message_id": "2418b23e-001b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T11:00:31", "message_id": "be56be6a-0019-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T10:50:31", "message_id": "58a90894-0018-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T10:40:31", "message_id": "f304eb26-0016-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T10:30:31", "message_id": "8d72a970-0015-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T10:20:31", "message_id": "27bd5f4a-0014-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T10:10:31", "message_id": "c2231ea0-0012-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T10:00:31", "message_id": "5c46d7f8-0011-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T09:50:31", "message_id": "f696b97e-000f-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T09:40:31", "message_id": "90dfc09a-000e-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T09:30:31", "message_id": "2b4322f0-000d-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T09:20:30", "message_id": "c586652c-000b-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T09:10:30", "message_id": "5fd547da-000a-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T09:00:30", "message_id": "fa302180-0008-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T08:50:30", "message_id": "947e17da-0007-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T08:40:30", "message_id": "2ed6c45a-0006-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T08:30:30", "message_id": "c92c9590-0004-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T08:20:30", "message_id": "637989a2-0003-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T08:10:30", "message_id": "fdd8c690-0001-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T08:00:30", "message_id": "981e3a8e-0000-11e3-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T07:50:30", "message_id": "326dc5c0-ffff-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T07:40:30", "message_id": "ccbdfd04-fffd-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T07:30:30", "message_id": "670d2d5a-fffc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T07:20:29", "message_id": "0167c7d6-fffb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T07:10:29", "message_id": "9baea23a-fff9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T07:00:29", "message_id": "35f9d492-fff8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T06:50:29", "message_id": "d05d0f06-fff6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T06:40:29", "message_id": "6aa42d30-fff5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T06:30:29", "message_id": "04f1d40c-fff4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T06:20:29", "message_id": "9f45cc2c-fff2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T06:10:29", "message_id": "3995d8f0-fff1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T06:00:29", "message_id": "d3ee5d34-ffef-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T05:50:29", "message_id": "6e47d5ba-ffee-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T05:40:29", "message_id": "08a02d30-ffed-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T05:30:29", "message_id": "a2e8a748-ffeb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T05:20:28", "message_id": "3d303660-ffea-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T05:10:28", "message_id": "d785c25e-ffe8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T05:00:28", "message_id": "71da6ea6-ffe7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T04:50:28", "message_id": "0c1e06dc-ffe6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T04:40:28", "message_id": "a6805b28-ffe4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T04:30:28", "message_id": "40c4192e-ffe3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T04:20:28", "message_id": "db1d9542-ffe1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T04:10:28", "message_id": "756f46c4-ffe0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T04:00:28", "message_id": "0fb75cbe-ffdf-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T03:50:28", "message_id": "aa0de686-ffdd-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T03:40:27", "message_id": "445b197c-ffdc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T03:30:27", "message_id": "deac9520-ffda-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T03:20:27", "message_id": "78fc9744-ffd9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T03:10:27", "message_id": "1351d8ce-ffd8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T03:00:27", "message_id": "ada36a70-ffd6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T02:50:27", "message_id": "47ee8ea4-ffd5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T02:40:27", "message_id": "e23d1ee6-ffd3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T02:30:27", "message_id": "7c9779c0-ffd2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T02:20:27", "message_id": "1702217e-ffd1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T02:10:27", "message_id": "b12c4b00-ffcf-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T02:00:27", "message_id": "4b870b10-ffce-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T01:50:26", "message_id": "e5d175c2-ffcc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T01:40:26", "message_id": "8022e55e-ffcb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T01:30:26", "message_id": "1a752f6a-ffca-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T01:20:26", "message_id": "b4cc31aa-ffc8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T01:10:26", "message_id": "4f222cde-ffc7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T01:00:26", "message_id": "e96f8e6e-ffc5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T00:50:26", "message_id": "83c591b8-ffc4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T00:40:26", "message_id": "1e190102-ffc3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T00:30:26", "message_id": "b867bdb8-ffc1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T00:20:26", "message_id": "53135bee-ffc0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T00:10:26", "message_id": "ed076e54-ffbe-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-08T00:00:26", "message_id": "87835030-ffbd-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T23:50:25", "message_id": "21b3b8f4-ffbc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T23:40:25", "message_id": "bc0950f0-ffba-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T23:30:25", "message_id": "5662c070-ffb9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T23:20:25", "message_id": "f0cf1980-ffb7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T23:10:25", "message_id": "8b1fc8b0-ffb6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T23:00:25", "message_id": "2597f2a2-ffb5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T22:50:25", "message_id": "bf92594e-ffb3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T22:40:25", "message_id": "59f03dd2-ffb2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T22:30:25", "message_id": "f44061fc-ffb0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T22:20:24", "message_id": "8e8006e8-ffaf-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T22:10:25", "message_id": "28e525b2-ffae-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T22:00:24", "message_id": "c32b40ae-ffac-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T21:50:24", "message_id": "5d6de2ea-ffab-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T21:40:24", "message_id": "f7c8161e-ffa9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T21:30:24", "message_id": "9220ce6a-ffa8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T21:20:24", "message_id": "2c688a28-ffa7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T21:10:24", "message_id": "c6ac41c6-ffa5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T21:00:24", "message_id": "6106c586-ffa4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T20:50:24", "message_id": "fb58160a-ffa2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T20:40:23", "message_id": "95a3b482-ffa1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T20:30:23", "message_id": "2ff986bc-ffa0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T20:20:23", "message_id": "ca4b8a46-ff9e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T20:10:23", "message_id": "6490b57e-ff9d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T20:00:23", "message_id": "fee99ff2-ff9b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T19:50:23", "message_id": "99332a08-ff9a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T19:40:23", "message_id": "338d1f0c-ff99-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T19:30:23", "message_id": "cdde39bc-ff97-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T19:20:23", "message_id": "68342a50-ff96-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T19:10:23", "message_id": "0282c0e6-ff95-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T19:00:23", "message_id": "9ccd1630-ff93-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T18:50:23", "message_id": "37257bb6-ff92-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T18:40:22", "message_id": "d1788cd2-ff90-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T18:30:22", "message_id": "6bb7e8a8-ff8f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T18:20:22", "message_id": "06082456-ff8e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T18:10:22", "message_id": "a05d56c2-ff8c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T18:00:22", "message_id": "3ab195b4-ff8b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T17:50:22", "message_id": "d501629a-ff89-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T17:40:22", "message_id": "6f59a4d0-ff88-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T17:30:22", "message_id": "09a8a2ea-ff87-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T17:20:22", "message_id": "a3f4ec7a-ff85-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T17:10:22", "message_id": "3e4d09c6-ff84-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T17:00:21", "message_id": "d8920cd6-ff82-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T16:50:21", "message_id": "72da7a0a-ff81-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T16:40:21", "message_id": "0d310da0-ff80-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T16:30:21", "message_id": "a78dbc24-ff7e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T16:20:21", "message_id": "41d1e668-ff7d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T16:10:21", "message_id": "dc2b5b1a-ff7b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T16:00:21", "message_id": "767ce302-ff7a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T15:50:21", "message_id": "10d0b50c-ff79-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T15:40:21", "message_id": "ab1c8eb2-ff77-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T15:30:21", "message_id": "4568aca0-ff76-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T15:20:20", "message_id": "dfbde088-ff74-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T15:10:20", "message_id": "7a0a1d20-ff73-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T15:00:20", "message_id": "145a3268-ff72-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T14:50:20", "message_id": "aeac8f20-ff70-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T14:40:20", "message_id": "48fb6b02-ff6f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T14:30:20", "message_id": "e3620ea0-ff6d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T14:20:20", "message_id": "7db1199e-ff6c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T14:10:20", "message_id": "1800c316-ff6b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T14:00:20", "message_id": "b25112d8-ff69-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T13:50:20", "message_id": "4c9e81c4-ff68-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T13:40:20", "message_id": "e706285e-ff66-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T13:30:20", "message_id": "814c7122-ff65-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T13:20:19", "message_id": "1b9db3d2-ff64-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T13:10:19", "message_id": "b5f4f2d0-ff62-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T13:00:19", "message_id": "504f97ec-ff61-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T12:50:19", "message_id": "eaa628ee-ff5f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T12:40:19", "message_id": "84efc74a-ff5e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T12:30:19", "message_id": "1f464370-ff5d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T12:20:19", "message_id": "b99bb07e-ff5b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T12:10:19", "message_id": "53e14f42-ff5a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T12:00:19", "message_id": "ee2f2440-ff58-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T11:50:19", "message_id": "8887da5c-ff57-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T11:40:19", "message_id": "22dd4d96-ff56-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T11:30:19", "message_id": "bd2d5140-ff54-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T11:20:18", "message_id": "577c8e48-ff53-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T11:10:19", "message_id": "f1ea46c0-ff51-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T11:00:18", "message_id": "8c33cf3c-ff50-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T10:50:18", "message_id": "2684ee6a-ff4f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T10:40:18", "message_id": "c0e0a776-ff4d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T10:30:18", "message_id": "5b29a00a-ff4c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T10:20:18", "message_id": "f57bf448-ff4a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T10:10:18", "message_id": "8fda01b2-ff49-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T10:00:18", "message_id": "2a354f3e-ff48-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T09:50:18", "message_id": "c474f42a-ff46-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T09:40:18", "message_id": "5ece785e-ff45-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T09:30:18", "message_id": "f90da568-ff43-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T09:20:18", "message_id": "93673478-ff42-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T09:10:17", "message_id": "2db84b0e-ff41-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T09:00:17", "message_id": "c7fbf352-ff3f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T08:50:17", "message_id": "62504e28-ff3e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T08:40:17", "message_id": "fca68dfe-ff3c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T08:30:17", "message_id": "96f4b07c-ff3b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T08:20:17", "message_id": "3137cc02-ff3a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T08:10:17", "message_id": "cb887ad8-ff38-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T08:00:17", "message_id": "65d7adb8-ff37-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T07:50:17", "message_id": "00292330-ff36-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T07:40:16", "message_id": "9a764168-ff34-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T07:30:16", "message_id": "34d28354-ff33-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T07:20:16", "message_id": "cf19325c-ff31-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T07:10:16", "message_id": "696844b2-ff30-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T07:00:16", "message_id": "03c2e2da-ff2f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T06:50:16", "message_id": "9e15351a-ff2d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T06:40:16", "message_id": "3865418e-ff2c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T06:30:16", "message_id": "d2ac225a-ff2a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T06:20:16", "message_id": "6d0e3fb0-ff29-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T06:10:16", "message_id": "076b8d1c-ff28-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T06:00:16", "message_id": "a1ab39b0-ff26-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T05:50:16", "message_id": "3c0819e4-ff25-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T05:40:15", "message_id": "d6496c76-ff23-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T05:30:16", "message_id": "70c319de-ff22-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T05:20:15", "message_id": "0af69ce4-ff21-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T05:10:15", "message_id": "a53c88b0-ff1f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T05:00:15", "message_id": "3fa38356-ff1e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T04:50:15", "message_id": "d9e64694-ff1c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T04:40:15", "message_id": "743f3414-ff1b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T04:30:15", "message_id": "0e9e434e-ff1a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T04:20:15", "message_id": "a8de4122-ff18-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T04:10:15", "message_id": "433ac0bc-ff17-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T04:00:15", "message_id": "dd89e15e-ff15-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T03:50:15", "message_id": "77f2a2aa-ff14-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T03:40:14", "message_id": "12320c36-ff13-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T03:30:14", "message_id": "ac796322-ff11-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T03:20:14", "message_id": "46d00a2c-ff10-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T03:10:14", "message_id": "e1352b58-ff0e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T03:00:14", "message_id": "7b73a688-ff0d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T02:50:14", "message_id": "15dfd702-ff0c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T02:40:14", "message_id": "b02a6004-ff0a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T02:30:14", "message_id": "4a7de272-ff09-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T02:20:14", "message_id": "e4c48b3a-ff07-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T02:10:14", "message_id": "7f14c31e-ff06-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T02:00:14", "message_id": "19629a42-ff05-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T01:50:14", "message_id": "b3c32a40-ff03-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T01:40:13", "message_id": "4e073a76-ff02-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T01:30:13", "message_id": "e8605c80-ff00-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T01:20:13", "message_id": "82b25272-feff-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T01:10:13", "message_id": "1d0a42fa-fefe-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T01:00:13", "message_id": "b74dd284-fefc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T00:50:13", "message_id": "51aa49a4-fefb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T00:40:13", "message_id": "ec003466-fef9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T00:30:13", "message_id": "86412c6c-fef8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T00:20:13", "message_id": "2092fac2-fef7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T00:10:13", "message_id": "bae5d380-fef5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-07T00:00:12", "message_id": "552de7cc-fef4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T23:50:12", "message_id": "ef913b04-fef2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T23:40:12", "message_id": "89e187f6-fef1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T23:30:12", "message_id": "24376994-fef0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T23:20:12", "message_id": "be9a01ba-feee-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T23:10:12", "message_id": "58d0b58c-feed-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T23:00:12", "message_id": "f36ec90a-feeb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T22:50:12", "message_id": "8d7a9562-feea-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T22:40:12", "message_id": "27cf11c6-fee9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T22:30:12", "message_id": "c2219872-fee7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T22:20:12", "message_id": "5c6b704e-fee6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T22:10:12", "message_id": "f6d373f4-fee4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T22:00:12", "message_id": "913c816c-fee3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T21:50:11", "message_id": "2b6b0d00-fee2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T21:40:12", "message_id": "c5e4b7ac-fee0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T21:30:11", "message_id": "6019c4ea-fedf-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T21:20:11", "message_id": "fa6ca974-fedd-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T21:10:11", "message_id": "94b5a0b4-fedc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T21:00:11", "message_id": "2efc09ee-fedb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T20:50:11", "message_id": "c9587916-fed9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T20:40:11", "message_id": "63b7da44-fed8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T20:30:11", "message_id": "fe030b5c-fed6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T20:20:11", "message_id": "98812f08-fed5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T20:10:11", "message_id": "329fff12-fed4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T20:00:11", "message_id": "cd08c0a4-fed2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T19:50:10", "message_id": "675120ea-fed1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T19:40:10", "message_id": "01a83a86-fed0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T19:30:10", "message_id": "9bf8fe6a-fece-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T19:20:10", "message_id": "36467a62-fecd-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T19:10:10", "message_id": "d096198a-fecb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T19:00:10", "message_id": "6ad6a0de-feca-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T18:50:10", "message_id": "0552ee30-fec9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T18:40:10", "message_id": "9f8afb48-fec7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T18:30:10", "message_id": "39d39c02-fec6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T18:20:10", "message_id": "d429de94-fec4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T18:10:09", "message_id": "6e76ad12-fec3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T18:00:09", "message_id": "08bb0c3a-fec2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T17:50:09", "message_id": "a3131130-fec0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T17:40:09", "message_id": "3d6b8642-febf-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T17:30:09", "message_id": "d7b69d56-febd-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T17:20:09", "message_id": "720e288a-febc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T17:10:09", "message_id": "0c53d112-febb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T17:00:09", "message_id": "a6a6fb4c-feb9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T16:50:09", "message_id": "40fa5132-feb8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T16:40:09", "message_id": "db4316ea-feb6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T16:30:09", "message_id": "759a516a-feb5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T16:20:08", "message_id": "0fe76430-feb4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T16:10:08", "message_id": "aa443ae6-feb2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T16:00:08", "message_id": "44964a82-feb1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T15:50:08", "message_id": "dedfce44-feaf-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T15:40:08", "message_id": "793d6458-feae-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T15:30:08", "message_id": "138379e6-fead-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T15:20:08", "message_id": "add80eb4-feab-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T15:10:08", "message_id": "48261206-feaa-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T15:00:08", "message_id": "e276eb7a-fea8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T14:50:08", "message_id": "7ccd20d8-fea7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T14:40:08", "message_id": "172b5fa2-fea6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T14:30:08", "message_id": "b184c5f4-fea4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T14:20:07", "message_id": "4bd39470-fea3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T14:10:07", "message_id": "e6208d6e-fea1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T14:00:07", "message_id": "808eeaa0-fea0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T13:50:07", "message_id": "1ad1893a-fe9f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T13:40:07", "message_id": "b5159fba-fe9d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T13:30:07", "message_id": "4f671190-fe9c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T13:20:07", "message_id": "e9b79e9c-fe9a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T13:10:07", "message_id": "8405f1d0-fe99-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T13:00:07", "message_id": "1e616e6e-fe98-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T12:50:07", "message_id": "b8b6ad14-fe96-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T12:40:07", "message_id": "531b7bac-fe95-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T12:30:07", "message_id": "ed5a36b0-fe93-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T12:20:06", "message_id": "87a546da-fe92-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T12:10:06", "message_id": "2202d14a-fe91-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T12:00:06", "message_id": "bc545626-fe8f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T11:50:06", "message_id": "56a2a54a-fe8e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T11:40:06", "message_id": "f1020538-fe8c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T11:30:07", "message_id": "8bdf8e7e-fe8b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T11:20:06", "message_id": "259902e0-fe8a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T11:10:06", "message_id": "bfe4f798-fe88-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T11:00:06", "message_id": "5a3e9c9c-fe87-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T10:50:06", "message_id": "f491e24c-fe85-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T10:40:06", "message_id": "8ee3fd28-fe84-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T10:30:05", "message_id": "293139a6-fe83-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T10:20:05", "message_id": "c3873e3a-fe81-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T10:10:05", "message_id": "5dcdd186-fe80-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T10:00:05", "message_id": "f824f1da-fe7e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T09:50:05", "message_id": "92717288-fe7d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T09:40:05", "message_id": "2cc94aa6-fe7c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T09:30:05", "message_id": "c71e1fb6-fe7a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T09:20:05", "message_id": "61671d4a-fe79-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T09:10:05", "message_id": "fbbfd672-fe77-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T09:00:05", "message_id": "960f53f8-fe76-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T08:50:05", "message_id": "305f4ee2-fe75-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T08:40:04", "message_id": "cab1de08-fe73-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T08:30:04", "message_id": "6500656c-fe72-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T08:20:04", "message_id": "ff53a86a-fe70-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T08:10:04", "message_id": "99a8aed0-fe6f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T08:00:04", "message_id": "33fad604-fe6e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T07:50:04", "message_id": "ce4b8afc-fe6c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T07:40:04", "message_id": "68ad50aa-fe6b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T07:30:04", "message_id": "02fc96c2-fe6a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T07:20:04", "message_id": "9d50e126-fe68-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T07:10:04", "message_id": "37a0560a-fe67-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T07:00:04", "message_id": "d1f0bf6c-fe65-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T06:50:04", "message_id": "6c3fd7a8-fe64-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T06:40:04", "message_id": "069dfee4-fe63-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T06:30:03", "message_id": "a0ef7bc8-fe61-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T06:20:03", "message_id": "3b3a6992-fe60-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T06:10:03", "message_id": "d586617e-fe5e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T06:00:03", "message_id": "6fd6e28c-fe5d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T05:50:03", "message_id": "0a296a5a-fe5c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T05:40:03", "message_id": "a480ff02-fe5a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T05:30:03", "message_id": "3ec86458-fe59-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T05:20:03", "message_id": "d91c9eb8-fe57-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T05:10:03", "message_id": "7373b908-fe56-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T05:00:03", "message_id": "0dc06490-fe55-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T04:50:02", "message_id": "a811853a-fe53-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T04:40:02", "message_id": "426af924-fe52-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T04:30:02", "message_id": "dcbf5e54-fe50-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T04:20:02", "message_id": "770811d8-fe4f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T04:10:02", "message_id": "114eb42e-fe4e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T04:00:02", "message_id": "abaae350-fe4c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T03:50:02", "message_id": "45f9ffc4-fe4b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T03:40:02", "message_id": "e04f2d62-fe49-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T03:30:02", "message_id": "7a99244c-fe48-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T03:20:02", "message_id": "14e62574-fe47-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T03:10:02", "message_id": "af42add8-fe45-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T03:00:01", "message_id": "498e4c32-fe44-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T02:50:01", "message_id": "e3dd17d4-fe42-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T02:40:01", "message_id": "7e2c9546-fe41-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T02:30:01", "message_id": "188aca38-fe40-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T02:20:01", "message_id": "b2df6f96-fe3e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T02:10:01", "message_id": "4d284778-fe3d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T02:00:01", "message_id": "e77f8b3a-fe3b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T01:50:01", "message_id": "81d3642e-fe3a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T01:40:01", "message_id": "1c30a042-fe39-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T01:30:01", "message_id": "b680a66c-fe37-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T01:20:01", "message_id": "50dbb08c-fe36-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T01:10:01", "message_id": "eb2309ee-fe34-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T01:00:01", "message_id": "857b422e-fe33-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T00:50:00", "message_id": "1fc38fe6-fe32-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T00:40:00", "message_id": "ba1b459a-fe30-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T00:30:00", "message_id": "5466e156-fe2f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T00:20:00", "message_id": "eeb6746c-fe2d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T00:10:00", "message_id": "890ad26c-fe2c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-06T00:00:00", "message_id": "235c8a2e-fe2b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T23:50:00", "message_id": "bdaf7c96-fe29-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T23:40:00", "message_id": "58045426-fe28-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T23:30:00", "message_id": "f2542f12-fe26-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T23:20:00", "message_id": "8cb18dae-fe25-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T23:10:00", "message_id": "273c8cae-fe24-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T23:00:00", "message_id": "c18fd15a-fe22-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T22:49:59", "message_id": "5b9914de-fe21-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T22:39:59", "message_id": "f5e4c8dc-fe1f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T22:29:59", "message_id": "903df1b2-fe1e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T22:19:59", "message_id": "2a92bbb4-fe1d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T22:09:59", "message_id": "c4e056a6-fe1b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T21:59:59", "message_id": "5f304934-fe1a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T21:49:59", "message_id": "f9808762-fe18-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T21:39:59", "message_id": "93cdcb10-fe17-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T21:29:59", "message_id": "2e16d4c0-fe16-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T21:19:59", "message_id": "c86eeed8-fe14-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T21:09:58", "message_id": "62c02e04-fe13-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T20:59:58", "message_id": "fd1430f6-fe11-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T20:49:58", "message_id": "975a5106-fe10-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T20:39:58", "message_id": "31ab87fe-fe0f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T20:29:58", "message_id": "cbfaa59e-fe0d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T20:19:58", "message_id": "6655b9aa-fe0c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T20:09:58", "message_id": "00a0b94e-fe0b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T19:59:58", "message_id": "9af5e7aa-fe09-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T19:49:58", "message_id": "3547c9b0-fe08-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T19:39:58", "message_id": "cfa4c9e2-fe06-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T19:29:58", "message_id": "69f1c560-fe05-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T19:19:57", "message_id": "0442a8e8-fe04-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T19:09:57", "message_id": "9e99ee3a-fe02-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T18:59:57", "message_id": "38e7a11e-fe01-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T18:49:57", "message_id": "d336bbf8-fdff-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T18:39:57", "message_id": "6d8fa572-fdfe-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T18:29:57", "message_id": "07e283da-fdfd-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T18:19:57", "message_id": "a23788b0-fdfb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T18:09:57", "message_id": "3c97cb4c-fdfa-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T17:59:57", "message_id": "d6dcd7b2-fdf8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T17:49:57", "message_id": "7132b108-fdf7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T17:39:57", "message_id": "0b85544c-fdf6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T17:29:57", "message_id": "a5d9ca7a-fdf4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T17:19:56", "message_id": "40294616-fdf3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T17:09:56", "message_id": "da7d358a-fdf1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T16:59:56", "message_id": "74cf0e12-fdf0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T16:49:56", "message_id": "0f1fe7f4-fdef-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T16:39:56", "message_id": "a97ba420-fded-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T16:29:56", "message_id": "43f58306-fdec-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T16:19:56", "message_id": "de2640d4-fdea-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T16:09:56", "message_id": "7883b35c-fde9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T15:59:56", "message_id": "12d2b086-fde8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T15:49:56", "message_id": "ad2ab446-fde6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T15:39:56", "message_id": "477ebd50-fde5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T15:29:56", "message_id": "e1d009f6-fde3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T15:19:56", "message_id": "7c51b7b0-fde2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T15:09:56", "message_id": "166b219e-fde1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T14:59:55", "message_id": "b0ba9f56-fddf-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T14:49:55", "message_id": "4b18ef6e-fdde-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T14:39:55", "message_id": "e5629bda-fddc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T14:29:55", "message_id": "7fb722fc-fddb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T14:19:55", "message_id": "1a0805c6-fdda-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T14:09:55", "message_id": "b45e93da-fdd8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T13:59:55", "message_id": "4eaa433c-fdd7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T13:49:55", "message_id": "e8ff0b22-fdd5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T13:39:55", "message_id": "834b642a-fdd4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T13:29:55", "message_id": "1d99a412-fdd3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T13:19:55", "message_id": "b7eb238a-fdd1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T13:09:54", "message_id": "5240a4e8-fdd0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T12:59:54", "message_id": "ec93984a-fdce-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T12:49:54", "message_id": "86e58fea-fdcd-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T12:39:54", "message_id": "2132c718-fdcc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T12:29:54", "message_id": "bb83229c-fdca-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T12:19:54", "message_id": "55d734a2-fdc9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T12:09:54", "message_id": "f021cd3a-fdc7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T11:59:54", "message_id": "8a77ec04-fdc6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T11:49:54", "message_id": "24cd067e-fdc5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T11:39:54", "message_id": "bf220758-fdc3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T11:29:54", "message_id": "5971be18-fdc2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T11:19:54", "message_id": "f3c7b4a6-fdc0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T11:09:53", "message_id": "8e188622-fdbf-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T10:59:53", "message_id": "286bee32-fdbe-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T10:49:54", "message_id": "c2e7aad4-fdbc-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T10:39:53", "message_id": "5d0e3c10-fdbb-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T10:29:53", "message_id": "f76aa8fe-fdb9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T10:19:53", "message_id": "91b8429c-fdb8-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T10:09:53", "message_id": "2c18e8a2-fdb7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T09:59:53", "message_id": "c66bb7d8-fdb5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T09:49:53", "message_id": "60bf9428-fdb4-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T09:39:53", "message_id": "fb1103ba-fdb2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T09:29:53", "message_id": "95656b10-fdb1-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T09:19:53", "message_id": "2fb47cbc-fdb0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T09:09:52", "message_id": "ca011a52-fdae-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T08:59:52", "message_id": "645a8c2a-fdad-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T08:49:52", "message_id": "feb8d436-fdab-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T08:39:52", "message_id": "98fdb572-fdaa-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T08:29:52", "message_id": "334eea44-fda9-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T08:19:52", "message_id": "cd9da146-fda7-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T08:09:52", "message_id": "6809606e-fda6-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T07:59:52", "message_id": "02456b52-fda5-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T07:49:52", "message_id": "9c94100c-fda3-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T07:39:52", "message_id": "36ebf64e-fda2-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T07:29:52", "message_id": "d139eca8-fda0-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T07:19:52", "message_id": "6b8e361c-fd9f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T07:09:52", "message_id": "0605fc04-fd9e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T06:59:51", "message_id": "a02a8482-fd9c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T06:49:51", "message_id": "3a810abc-fd9b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T06:39:51", "message_id": "d4c8846c-fd99-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T06:29:51", "message_id": "6f1d0986-fd98-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T06:19:51", "message_id": "0968984a-fd97-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T06:09:51", "message_id": "a3be0008-fd95-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T05:59:51", "message_id": "3e114b94-fd94-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T05:49:51", "message_id": "d8639d7a-fd92-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T05:39:51", "message_id": "72b43db4-fd91-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T05:29:51", "message_id": "0d1200dc-fd90-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T05:19:50", "message_id": "a7607d14-fd8e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T05:09:50", "message_id": "41aaf4be-fd8d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T04:59:50", "message_id": "dc0a7bda-fd8b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T04:49:50", "message_id": "7667edd6-fd8a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T04:39:50", "message_id": "10c84882-fd89-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T04:29:50", "message_id": "ab1a95d6-fd87-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T04:19:50", "message_id": "4552bc3e-fd86-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T04:09:50", "message_id": "dfbf9f5a-fd84-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T03:59:50", "message_id": "79d5fabe-fd83-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T03:49:50", "message_id": "1446b4aa-fd82-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T03:39:50", "message_id": "ae9fcb6a-fd80-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T03:29:50", "message_id": "48fbfca8-fd7f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T03:19:50", "message_id": "e35a3fd2-fd7d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T03:09:50", "message_id": "7da5e372-fd7c-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T02:59:49", "message_id": "17dc9c4e-fd7b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T02:49:49", "message_id": "b21eacb8-fd79-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T02:39:49", "message_id": "4cb1424c-fd78-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T02:29:49", "message_id": "e6f1e34a-fd76-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T02:19:49", "message_id": "814c87a8-fd75-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T02:09:49", "message_id": "1b9704c0-fd74-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T01:59:49", "message_id": "b5d636de-fd72-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T01:49:49", "message_id": "502eb8ac-fd71-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T01:39:49", "message_id": "ea882c28-fd6f-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T01:29:49", "message_id": "85068440-fd6e-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T01:19:49", "message_id": "1f66f576-fd6d-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T01:09:49", "message_id": "b9a46d46-fd6b-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T00:59:48", "message_id": "53dbe6d4-fd6a-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T00:49:48", "message_id": "ee1cf2b2-fd68-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T00:39:48", "message_id": "88840e46-fd67-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T00:29:48", "message_id": "22dce230-fd66-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T00:19:48", "message_id": "bd385fe6-fd64-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-05T00:09:48", "message_id": "57a947b8-fd63-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-04T23:59:48", "message_id": "f1ffc6cc-fd61-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-04T23:49:48", "message_id": "8c3a78ce-fd60-11e2-87c8-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-04T23:39:05", "message_id": "0cff5f6c-fd5f-11e2-b8cf-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}, {"counter_name": "storage.objects.containers", "user_id": null, "resource_id": "253d975f27004438b89a239b5638a6bc", "timestamp": "2013-08-04T23:29:05", "message_id": "a76b612e-fd5d-11e2-b8cf-080027880ca6", "source": "openstack", "counter_unit": "container", "counter_volume": 0.0, "project_id": "253d975f27004438b89a239b5638a6bc", "resource_metadata": {}, "counter_type": "gauge"}]} \ No newline at end of file diff --git a/tests/data/map_fixture_8.json b/tests/data/map_fixture_8.json new file mode 100644 index 0000000..bc8372a --- /dev/null +++ b/tests/data/map_fixture_8.json @@ -0,0 +1 @@ +{"http://localhost:8777/v2/meters/port?q.field=resource_id&q.value=375d1c5d-e732-4082-857b-ca133f08006b": [{"counter_name": "port", "user_id": "9692a61b44f246259af534f0b1d95942", "resource_id": "375d1c5d-e732-4082-857b-ca133f08006b", "timestamp": "2013-08-05T05:17:39.866000", "message_id": "593b506e-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "port", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"status": "DOWN", "binding:host_id": "openstack", "name": "", "admin_state_up": "True", "network_id": "0e5f3762-a8a9-4051-ad35-49ad879ebfc3", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "host": "network.openstack", "binding:vif_type": "ovs", "device_owner": "compute:nova", "mac_address": "fa:16:3e:20:df:2e", "event_type": "port.create.end", "id": "375d1c5d-e732-4082-857b-ca133f08006b", "device_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb"}, "counter_type": "gauge"}], "http://localhost:8777/v2/meters/port.create?q.field=resource_id&q.value=375d1c5d-e732-4082-857b-ca133f08006b": [{"counter_name": "port.create", "user_id": "9692a61b44f246259af534f0b1d95942", "resource_id": "375d1c5d-e732-4082-857b-ca133f08006b", "timestamp": "2013-08-05T05:17:39.866000", "message_id": "593d6552-fd8e-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "port", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"status": "DOWN", "binding:host_id": "openstack", "name": "", "admin_state_up": "True", "network_id": "0e5f3762-a8a9-4051-ad35-49ad879ebfc3", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "host": "network.openstack", "binding:vif_type": "ovs", "device_owner": "compute:nova", "mac_address": "fa:16:3e:20:df:2e", "event_type": "port.create.end", "id": "375d1c5d-e732-4082-857b-ca133f08006b", "device_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb"}, "counter_type": "delta"}]} \ No newline at end of file diff --git a/tests/data/map_fixture_9.json b/tests/data/map_fixture_9.json new file mode 100644 index 0000000..969fa96 --- /dev/null +++ b/tests/data/map_fixture_9.json @@ -0,0 +1 @@ +{"http://localhost:8777/v2/meters/router.create?q.field=resource_id&q.value=4392aff1-d6a8-4106-9e75-818eb91a3d45": [{"counter_name": "router.create", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "4392aff1-d6a8-4106-9e75-818eb91a3d45", "timestamp": "2013-08-05T21:55:26.292000", "message_id": "bc685070-fe19-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "router", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"status": "ACTIVE", "external_gateway_info": "None", "name": "router2", "admin_state_up": "True", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "host": "network.openstack", "id": "4392aff1-d6a8-4106-9e75-818eb91a3d45", "event_type": "router.create.end"}, "counter_type": "delta"}], "http://localhost:8777/v2/meters/router?q.field=resource_id&q.value=4392aff1-d6a8-4106-9e75-818eb91a3d45": [{"counter_name": "router", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "4392aff1-d6a8-4106-9e75-818eb91a3d45", "timestamp": "2013-08-05T22:07:15.284000", "message_id": "62fe6586-fe1b-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "router", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"status": "ACTIVE", "external_gateway_info": "None", "name": "router2", "admin_state_up": "True", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "host": "network.openstack", "id": "4392aff1-d6a8-4106-9e75-818eb91a3d45", "event_type": "router.update.end"}, "counter_type": "gauge"}, {"counter_name": "router", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "4392aff1-d6a8-4106-9e75-818eb91a3d45", "timestamp": "2013-08-05T21:55:33.751000", "message_id": "c0d80f10-fe19-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "router", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"status": "ACTIVE", "name": "router2", "admin_state_up": "True", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "host": "network.openstack", "id": "4392aff1-d6a8-4106-9e75-818eb91a3d45", "event_type": "router.update.end"}, "counter_type": "gauge"}, {"counter_name": "router", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "4392aff1-d6a8-4106-9e75-818eb91a3d45", "timestamp": "2013-08-05T21:55:26.292000", "message_id": "bc6726c8-fe19-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "router", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"status": "ACTIVE", "external_gateway_info": "None", "name": "router2", "admin_state_up": "True", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "host": "network.openstack", "id": "4392aff1-d6a8-4106-9e75-818eb91a3d45", "event_type": "router.create.end"}, "counter_type": "gauge"}], "http://localhost:8777/v2/meters/router.update?q.field=resource_id&q.value=4392aff1-d6a8-4106-9e75-818eb91a3d45": [{"counter_name": "router.update", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "4392aff1-d6a8-4106-9e75-818eb91a3d45", "timestamp": "2013-08-05T22:07:15.284000", "message_id": "62ff4c80-fe1b-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "router", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"status": "ACTIVE", "external_gateway_info": "None", "name": "router2", "admin_state_up": "True", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "host": "network.openstack", "id": "4392aff1-d6a8-4106-9e75-818eb91a3d45", "event_type": "router.update.end"}, "counter_type": "delta"}, {"counter_name": "router.update", "user_id": "2b8fbe55863d4dfab5310796202b2019", "resource_id": "4392aff1-d6a8-4106-9e75-818eb91a3d45", "timestamp": "2013-08-05T21:55:33.751000", "message_id": "c0d8dc74-fe19-11e2-a072-080027880ca6", "source": "openstack", "counter_unit": "router", "counter_volume": 1.0, "project_id": "931dc699f9934021bb4a2b1088ba4d3b", "resource_metadata": {"status": "ACTIVE", "name": "router2", "admin_state_up": "True", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "host": "network.openstack", "id": "4392aff1-d6a8-4106-9e75-818eb91a3d45", "event_type": "router.update.end"}, "counter_type": "delta"}]} \ No newline at end of file diff --git a/tests/data/resources.json b/tests/data/resources.json new file mode 100644 index 0000000..1f62b34 --- /dev/null +++ b/tests/data/resources.json @@ -0,0 +1 @@ +[{"project_id": "931dc699f9934021bb4a2b1088ba4d3b", "user_id": "2b8fbe55863d4dfab5310796202b2019", "metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-vswa1jkd", "instance_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogdor", "state": "active", "launched_at": "2013-08-04T23:58:54.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogdor", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-12 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-04T23:58:46.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 04:00:00", "os_type": "None"}, "links": [{"href": "http://localhost:8777/v2/resources/03bd0d4c-99da-4ccf-b308-2721f33e84ef", "rel": "self"}, {"href": "http://localhost:8777/v2/meters/disk.ephemeral.size?q.field=resource_id&q.value=03bd0d4c-99da-4ccf-b308-2721f33e84ef", "rel": "disk.ephemeral.size"}, {"href": "http://localhost:8777/v2/meters/memory?q.field=resource_id&q.value=03bd0d4c-99da-4ccf-b308-2721f33e84ef", "rel": "memory"}, {"href": "http://localhost:8777/v2/meters/instance?q.field=resource_id&q.value=03bd0d4c-99da-4ccf-b308-2721f33e84ef", "rel": "instance"}, {"href": "http://localhost:8777/v2/meters/instance:m1.nano?q.field=resource_id&q.value=03bd0d4c-99da-4ccf-b308-2721f33e84ef", "rel": "instance:m1.nano"}, {"href": "http://localhost:8777/v2/meters/vcpus?q.field=resource_id&q.value=03bd0d4c-99da-4ccf-b308-2721f33e84ef", "rel": "vcpus"}, {"href": "http://localhost:8777/v2/meters/disk.root.size?q.field=resource_id&q.value=03bd0d4c-99da-4ccf-b308-2721f33e84ef", "rel": "disk.root.size"}], "resource_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef"}, {"project_id": "931dc699f9934021bb4a2b1088ba4d3b", "user_id": "9692a61b44f246259af534f0b1d95942", "metadata": {"status": "DOWN", "binding:host_id": "openstack", "name": "", "admin_state_up": "True", "network_id": "0e5f3762-a8a9-4051-ad35-49ad879ebfc3", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "host": "network.openstack", "binding:vif_type": "ovs", "device_owner": "compute:nova", "mac_address": "fa:16:3e:b3:f6:db", "event_type": "port.create.end", "id": "07771c9c-f10e-4b08-9702-78c8618f5a48", "device_id": "c01c63fe-7a29-4426-bab1-34d088e92415"}, "links": [{"href": "http://localhost:8777/v2/resources/07771c9c-f10e-4b08-9702-78c8618f5a48", "rel": "self"}, {"href": "http://localhost:8777/v2/meters/port?q.field=resource_id&q.value=07771c9c-f10e-4b08-9702-78c8618f5a48", "rel": "port"}, {"href": "http://localhost:8777/v2/meters/port.create?q.field=resource_id&q.value=07771c9c-f10e-4b08-9702-78c8618f5a48", "rel": "port.create"}], "resource_id": "07771c9c-f10e-4b08-9702-78c8618f5a48"}, {"project_id": "931dc699f9934021bb4a2b1088ba4d3b", "user_id": "2b8fbe55863d4dfab5310796202b2019", "metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "None", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-epqlkbe8", "instance_id": "0a16330b-d457-425d-8249-a275fab9adea", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "trogtwo", "state": "stopped", "launched_at": "2013-08-05T22:04:25.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "trogtwo", "image_ref_url": "http://10.0.2.15:9292/images/", "audit_period_beginning": "2013-08-12 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T22:04:16.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 04:00:00", "os_type": "None"}, "links": [{"href": "http://localhost:8777/v2/resources/0a16330b-d457-425d-8249-a275fab9adea", "rel": "self"}, {"href": "http://localhost:8777/v2/meters/memory?q.field=resource_id&q.value=0a16330b-d457-425d-8249-a275fab9adea", "rel": "memory"}, {"href": "http://localhost:8777/v2/meters/disk.ephemeral.size?q.field=resource_id&q.value=0a16330b-d457-425d-8249-a275fab9adea", "rel": "disk.ephemeral.size"}, {"href": "http://localhost:8777/v2/meters/instance?q.field=resource_id&q.value=0a16330b-d457-425d-8249-a275fab9adea", "rel": "instance"}, {"href": "http://localhost:8777/v2/meters/instance:m1.nano?q.field=resource_id&q.value=0a16330b-d457-425d-8249-a275fab9adea", "rel": "instance:m1.nano"}, {"href": "http://localhost:8777/v2/meters/vcpus?q.field=resource_id&q.value=0a16330b-d457-425d-8249-a275fab9adea", "rel": "vcpus"}, {"href": "http://localhost:8777/v2/meters/disk.root.size?q.field=resource_id&q.value=0a16330b-d457-425d-8249-a275fab9adea", "rel": "disk.root.size"}], "resource_id": "0a16330b-d457-425d-8249-a275fab9adea"}, {"project_id": "0c5a6b84fd2a43999c8820060c57da30", "user_id": null, "metadata": {}, "links": [{"href": "http://localhost:8777/v2/resources/0c5a6b84fd2a43999c8820060c57da30", "rel": "self"}, {"href": "http://localhost:8777/v2/meters/storage.objects?q.field=resource_id&q.value=0c5a6b84fd2a43999c8820060c57da30", "rel": "storage.objects"}, {"href": "http://localhost:8777/v2/meters/storage.objects.containers?q.field=resource_id&q.value=0c5a6b84fd2a43999c8820060c57da30", "rel": "storage.objects.containers"}, {"href": "http://localhost:8777/v2/meters/storage.objects.size?q.field=resource_id&q.value=0c5a6b84fd2a43999c8820060c57da30", "rel": "storage.objects.size"}], "resource_id": "0c5a6b84fd2a43999c8820060c57da30"}, {"project_id": "0d0854c42a7b49b0a6348b2746d60e7f", "user_id": null, "metadata": {}, "links": [{"href": "http://localhost:8777/v2/resources/0d0854c42a7b49b0a6348b2746d60e7f", "rel": "self"}, {"href": "http://localhost:8777/v2/meters/storage.objects?q.field=resource_id&q.value=0d0854c42a7b49b0a6348b2746d60e7f", "rel": "storage.objects"}, {"href": "http://localhost:8777/v2/meters/storage.objects.containers?q.field=resource_id&q.value=0d0854c42a7b49b0a6348b2746d60e7f", "rel": "storage.objects.containers"}, {"href": "http://localhost:8777/v2/meters/storage.objects.size?q.field=resource_id&q.value=0d0854c42a7b49b0a6348b2746d60e7f", "rel": "storage.objects.size"}], "resource_id": "0d0854c42a7b49b0a6348b2746d60e7f"}, {"project_id": "931dc699f9934021bb4a2b1088ba4d3b", "user_id": "2b8fbe55863d4dfab5310796202b2019", "metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "1bd5a017-2777-4601-8c48-fd7569a4e485", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-1bd5a017-2777-4601-8c48-fd7569a4e485", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-12 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 04:00:00", "os_type": "None"}, "links": [{"href": "http://localhost:8777/v2/resources/1bd5a017-2777-4601-8c48-fd7569a4e485", "rel": "self"}, {"href": "http://localhost:8777/v2/meters/memory?q.field=resource_id&q.value=1bd5a017-2777-4601-8c48-fd7569a4e485", "rel": "memory"}, {"href": "http://localhost:8777/v2/meters/disk.ephemeral.size?q.field=resource_id&q.value=1bd5a017-2777-4601-8c48-fd7569a4e485", "rel": "disk.ephemeral.size"}, {"href": "http://localhost:8777/v2/meters/instance?q.field=resource_id&q.value=1bd5a017-2777-4601-8c48-fd7569a4e485", "rel": "instance"}, {"href": "http://localhost:8777/v2/meters/instance:m1.nano?q.field=resource_id&q.value=1bd5a017-2777-4601-8c48-fd7569a4e485", "rel": "instance:m1.nano"}, {"href": "http://localhost:8777/v2/meters/vcpus?q.field=resource_id&q.value=1bd5a017-2777-4601-8c48-fd7569a4e485", "rel": "vcpus"}, {"href": "http://localhost:8777/v2/meters/disk.root.size?q.field=resource_id&q.value=1bd5a017-2777-4601-8c48-fd7569a4e485", "rel": "disk.root.size"}, {"href": "http://localhost:8777/v2/meters/instance.scheduled?q.field=resource_id&q.value=1bd5a017-2777-4601-8c48-fd7569a4e485", "rel": "instance.scheduled"}], "resource_id": "1bd5a017-2777-4601-8c48-fd7569a4e485"}, {"project_id": "931dc699f9934021bb4a2b1088ba4d3b", "user_id": "9692a61b44f246259af534f0b1d95942", "metadata": {"status": "DOWN", "binding:host_id": "openstack", "name": "", "admin_state_up": "True", "network_id": "0e5f3762-a8a9-4051-ad35-49ad879ebfc3", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "host": "network.openstack", "binding:vif_type": "ovs", "device_owner": "compute:None", "mac_address": "fa:16:3e:de:89:e7", "event_type": "port.create.end", "id": "24916b40-f8d8-49ad-be4a-4edbf6c9a370", "device_id": "0a16330b-d457-425d-8249-a275fab9adea"}, "links": [{"href": "http://localhost:8777/v2/resources/24916b40-f8d8-49ad-be4a-4edbf6c9a370", "rel": "self"}, {"href": "http://localhost:8777/v2/meters/port?q.field=resource_id&q.value=24916b40-f8d8-49ad-be4a-4edbf6c9a370", "rel": "port"}, {"href": "http://localhost:8777/v2/meters/port.create?q.field=resource_id&q.value=24916b40-f8d8-49ad-be4a-4edbf6c9a370", "rel": "port.create"}], "resource_id": "24916b40-f8d8-49ad-be4a-4edbf6c9a370"}, {"project_id": "253d975f27004438b89a239b5638a6bc", "user_id": null, "metadata": {}, "links": [{"href": "http://localhost:8777/v2/resources/253d975f27004438b89a239b5638a6bc", "rel": "self"}, {"href": "http://localhost:8777/v2/meters/storage.objects?q.field=resource_id&q.value=253d975f27004438b89a239b5638a6bc", "rel": "storage.objects"}, {"href": "http://localhost:8777/v2/meters/storage.objects.containers?q.field=resource_id&q.value=253d975f27004438b89a239b5638a6bc", "rel": "storage.objects.containers"}, {"href": "http://localhost:8777/v2/meters/storage.objects.size?q.field=resource_id&q.value=253d975f27004438b89a239b5638a6bc", "rel": "storage.objects.size"}], "resource_id": "253d975f27004438b89a239b5638a6bc"}, {"project_id": "931dc699f9934021bb4a2b1088ba4d3b", "user_id": "9692a61b44f246259af534f0b1d95942", "metadata": {"status": "DOWN", "binding:host_id": "openstack", "name": "", "admin_state_up": "True", "network_id": "0e5f3762-a8a9-4051-ad35-49ad879ebfc3", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "host": "network.openstack", "binding:vif_type": "ovs", "device_owner": "compute:nova", "mac_address": "fa:16:3e:20:df:2e", "event_type": "port.create.end", "id": "375d1c5d-e732-4082-857b-ca133f08006b", "device_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb"}, "links": [{"href": "http://localhost:8777/v2/resources/375d1c5d-e732-4082-857b-ca133f08006b", "rel": "self"}, {"href": "http://localhost:8777/v2/meters/port?q.field=resource_id&q.value=375d1c5d-e732-4082-857b-ca133f08006b", "rel": "port"}, {"href": "http://localhost:8777/v2/meters/port.create?q.field=resource_id&q.value=375d1c5d-e732-4082-857b-ca133f08006b", "rel": "port.create"}], "resource_id": "375d1c5d-e732-4082-857b-ca133f08006b"}, {"project_id": "931dc699f9934021bb4a2b1088ba4d3b", "user_id": "2b8fbe55863d4dfab5310796202b2019", "metadata": {"status": "ACTIVE", "external_gateway_info": "None", "name": "router2", "admin_state_up": "True", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "host": "network.openstack", "id": "4392aff1-d6a8-4106-9e75-818eb91a3d45", "event_type": "router.update.end"}, "links": [{"href": "http://localhost:8777/v2/resources/4392aff1-d6a8-4106-9e75-818eb91a3d45", "rel": "self"}, {"href": "http://localhost:8777/v2/meters/router?q.field=resource_id&q.value=4392aff1-d6a8-4106-9e75-818eb91a3d45", "rel": "router"}, {"href": "http://localhost:8777/v2/meters/router.create?q.field=resource_id&q.value=4392aff1-d6a8-4106-9e75-818eb91a3d45", "rel": "router.create"}, {"href": "http://localhost:8777/v2/meters/router.update?q.field=resource_id&q.value=4392aff1-d6a8-4106-9e75-818eb91a3d45", "rel": "router.update"}], "resource_id": "4392aff1-d6a8-4106-9e75-818eb91a3d45"}, {"project_id": "4cb54495d7784d3dbd61db9d7adf955f", "user_id": null, "metadata": {}, "links": [{"href": "http://localhost:8777/v2/resources/4cb54495d7784d3dbd61db9d7adf955f", "rel": "self"}, {"href": "http://localhost:8777/v2/meters/storage.objects?q.field=resource_id&q.value=4cb54495d7784d3dbd61db9d7adf955f", "rel": "storage.objects"}, {"href": "http://localhost:8777/v2/meters/storage.objects.containers?q.field=resource_id&q.value=4cb54495d7784d3dbd61db9d7adf955f", "rel": "storage.objects.containers"}, {"href": "http://localhost:8777/v2/meters/storage.objects.size?q.field=resource_id&q.value=4cb54495d7784d3dbd61db9d7adf955f", "rel": "storage.objects.size"}], "resource_id": "4cb54495d7784d3dbd61db9d7adf955f"}, {"project_id": "931dc699f9934021bb4a2b1088ba4d3b", "user_id": "2b8fbe55863d4dfab5310796202b2019", "metadata": {"status": "DOWN", "name": "", "admin_state_up": "True", "network_id": "79b5e163-496c-4ab6-9c21-3b597ed632dc", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "host": "network.openstack", "device_owner": "", "mac_address": "fa:16:3e:4a:5d:9a", "event_type": "port.create.end", "id": "5561589b-c1fa-46eb-b9d4-5998daceaee4", "device_id": ""}, "links": [{"href": "http://localhost:8777/v2/resources/5561589b-c1fa-46eb-b9d4-5998daceaee4", "rel": "self"}, {"href": "http://localhost:8777/v2/meters/port?q.field=resource_id&q.value=5561589b-c1fa-46eb-b9d4-5998daceaee4", "rel": "port"}, {"href": "http://localhost:8777/v2/meters/port.create?q.field=resource_id&q.value=5561589b-c1fa-46eb-b9d4-5998daceaee4", "rel": "port.create"}], "resource_id": "5561589b-c1fa-46eb-b9d4-5998daceaee4"}, {"project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "user_id": "2b8fbe55863d4dfab5310796202b2019", "metadata": {"status": "available", "display_name": "asdf", "event_type": "volume.create.end", "availability_zone": "nova", "tenant_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "created_at": "2013-08-05 03:52:23", "volume_id": "5d658ace-2535-48c5-a05f-85d651c0d0ac", "volume_type": "None", "host": "volume.openstack", "snapshot_id": "None", "user_id": "2b8fbe55863d4dfab5310796202b2019", "launched_at": "", "size": "2"}, "links": [{"href": "http://localhost:8777/v2/resources/5d658ace-2535-48c5-a05f-85d651c0d0ac", "rel": "self"}, {"href": "http://localhost:8777/v2/meters/volume?q.field=resource_id&q.value=5d658ace-2535-48c5-a05f-85d651c0d0ac", "rel": "volume"}, {"href": "http://localhost:8777/v2/meters/volume.size?q.field=resource_id&q.value=5d658ace-2535-48c5-a05f-85d651c0d0ac", "rel": "volume.size"}], "resource_id": "5d658ace-2535-48c5-a05f-85d651c0d0ac"}, {"project_id": "931dc699f9934021bb4a2b1088ba4d3b", "user_id": "9692a61b44f246259af534f0b1d95942", "metadata": {"status": "DOWN", "binding:host_id": "openstack", "name": "", "admin_state_up": "True", "network_id": "0e5f3762-a8a9-4051-ad35-49ad879ebfc3", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "host": "network.openstack", "binding:vif_type": "ovs", "device_owner": "compute:None", "mac_address": "fa:16:3e:4d:0f:e5", "event_type": "port.create.end", "id": "615a397c-fca2-4233-9f42-b769a8d6ea59", "device_id": "03bd0d4c-99da-4ccf-b308-2721f33e84ef"}, "links": [{"href": "http://localhost:8777/v2/resources/615a397c-fca2-4233-9f42-b769a8d6ea59", "rel": "self"}, {"href": "http://localhost:8777/v2/meters/port?q.field=resource_id&q.value=615a397c-fca2-4233-9f42-b769a8d6ea59", "rel": "port"}, {"href": "http://localhost:8777/v2/meters/port.create?q.field=resource_id&q.value=615a397c-fca2-4233-9f42-b769a8d6ea59", "rel": "port.create"}], "resource_id": "615a397c-fca2-4233-9f42-b769a8d6ea59"}, {"project_id": "931dc699f9934021bb4a2b1088ba4d3b", "user_id": "9692a61b44f246259af534f0b1d95942", "metadata": {"status": "DOWN", "binding:host_id": "openstack", "name": "", "admin_state_up": "True", "network_id": "0e5f3762-a8a9-4051-ad35-49ad879ebfc3", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "host": "network.openstack", "binding:vif_type": "ovs", "device_owner": "compute:nova", "mac_address": "fa:16:3e:19:28:00", "event_type": "port.create.end", "id": "6b9765e2-9138-4468-a60c-4e9f63044d9d", "device_id": "1bd5a017-2777-4601-8c48-fd7569a4e485"}, "links": [{"href": "http://localhost:8777/v2/resources/6b9765e2-9138-4468-a60c-4e9f63044d9d", "rel": "self"}, {"href": "http://localhost:8777/v2/meters/port.create?q.field=resource_id&q.value=6b9765e2-9138-4468-a60c-4e9f63044d9d", "rel": "port.create"}, {"href": "http://localhost:8777/v2/meters/port?q.field=resource_id&q.value=6b9765e2-9138-4468-a60c-4e9f63044d9d", "rel": "port"}], "resource_id": "6b9765e2-9138-4468-a60c-4e9f63044d9d"}, {"project_id": "931dc699f9934021bb4a2b1088ba4d3b", "user_id": "2b8fbe55863d4dfab5310796202b2019", "metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "state": "stopped", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-6d254988-1431-49d7-9491-e7c27d0bd6cb", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-12 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 04:00:00", "os_type": "None"}, "links": [{"href": "http://localhost:8777/v2/resources/6d254988-1431-49d7-9491-e7c27d0bd6cb", "rel": "self"}, {"href": "http://localhost:8777/v2/meters/memory?q.field=resource_id&q.value=6d254988-1431-49d7-9491-e7c27d0bd6cb", "rel": "memory"}, {"href": "http://localhost:8777/v2/meters/disk.ephemeral.size?q.field=resource_id&q.value=6d254988-1431-49d7-9491-e7c27d0bd6cb", "rel": "disk.ephemeral.size"}, {"href": "http://localhost:8777/v2/meters/instance?q.field=resource_id&q.value=6d254988-1431-49d7-9491-e7c27d0bd6cb", "rel": "instance"}, {"href": "http://localhost:8777/v2/meters/instance:m1.nano?q.field=resource_id&q.value=6d254988-1431-49d7-9491-e7c27d0bd6cb", "rel": "instance:m1.nano"}, {"href": "http://localhost:8777/v2/meters/vcpus?q.field=resource_id&q.value=6d254988-1431-49d7-9491-e7c27d0bd6cb", "rel": "vcpus"}, {"href": "http://localhost:8777/v2/meters/disk.root.size?q.field=resource_id&q.value=6d254988-1431-49d7-9491-e7c27d0bd6cb", "rel": "disk.root.size"}, {"href": "http://localhost:8777/v2/meters/instance.scheduled?q.field=resource_id&q.value=6d254988-1431-49d7-9491-e7c27d0bd6cb", "rel": "instance.scheduled"}], "resource_id": "6d254988-1431-49d7-9491-e7c27d0bd6cb"}, {"project_id": "931dc699f9934021bb4a2b1088ba4d3b", "user_id": "2b8fbe55863d4dfab5310796202b2019", "metadata": {"status": "ACTIVE", "name": "two", "admin_state_up": "True", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "host": "network.openstack", "shared": "False", "id": "79b5e163-496c-4ab6-9c21-3b597ed632dc", "event_type": "network.create.end"}, "links": [{"href": "http://localhost:8777/v2/resources/79b5e163-496c-4ab6-9c21-3b597ed632dc", "rel": "self"}, {"href": "http://localhost:8777/v2/meters/network?q.field=resource_id&q.value=79b5e163-496c-4ab6-9c21-3b597ed632dc", "rel": "network"}, {"href": "http://localhost:8777/v2/meters/network.create?q.field=resource_id&q.value=79b5e163-496c-4ab6-9c21-3b597ed632dc", "rel": "network.create"}], "resource_id": "79b5e163-496c-4ab6-9c21-3b597ed632dc"}, {"project_id": "0c5a6b84fd2a43999c8820060c57da30", "user_id": null, "metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-kernel", "deleted": "False", "container_format": "aki", "created_at": "2013-08-04T22:53:46", "disk_format": "aki", "updated_at": "2013-08-04T22:53:46", "protected": "False", "checksum": "c352f4e7121c6eae958bc1570324f17e", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "4955792"}, "links": [{"href": "http://localhost:8777/v2/resources/7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "rel": "self"}, {"href": "http://localhost:8777/v2/meters/image?q.field=resource_id&q.value=7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "rel": "image"}, {"href": "http://localhost:8777/v2/meters/image.size?q.field=resource_id&q.value=7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "rel": "image.size"}, {"href": "http://localhost:8777/v2/meters/image.download?q.field=resource_id&q.value=7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "rel": "image.download"}, {"href": "http://localhost:8777/v2/meters/image.serve?q.field=resource_id&q.value=7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "rel": "image.serve"}], "resource_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017"}, {"project_id": "7ec5ec9750414a4c8e767e16e1b6c9cf", "user_id": null, "metadata": {}, "links": [{"href": "http://localhost:8777/v2/resources/7ec5ec9750414a4c8e767e16e1b6c9cf", "rel": "self"}, {"href": "http://localhost:8777/v2/meters/storage.objects?q.field=resource_id&q.value=7ec5ec9750414a4c8e767e16e1b6c9cf", "rel": "storage.objects"}, {"href": "http://localhost:8777/v2/meters/storage.objects.containers?q.field=resource_id&q.value=7ec5ec9750414a4c8e767e16e1b6c9cf", "rel": "storage.objects.containers"}, {"href": "http://localhost:8777/v2/meters/storage.objects.size?q.field=resource_id&q.value=7ec5ec9750414a4c8e767e16e1b6c9cf", "rel": "storage.objects.size"}], "resource_id": "7ec5ec9750414a4c8e767e16e1b6c9cf"}, {"project_id": "931dc699f9934021bb4a2b1088ba4d3b", "user_id": null, "metadata": {}, "links": [{"href": "http://localhost:8777/v2/resources/931dc699f9934021bb4a2b1088ba4d3b", "rel": "self"}, {"href": "http://localhost:8777/v2/meters/storage.objects?q.field=resource_id&q.value=931dc699f9934021bb4a2b1088ba4d3b", "rel": "storage.objects"}, {"href": "http://localhost:8777/v2/meters/storage.objects.containers?q.field=resource_id&q.value=931dc699f9934021bb4a2b1088ba4d3b", "rel": "storage.objects.containers"}, {"href": "http://localhost:8777/v2/meters/storage.objects.size?q.field=resource_id&q.value=931dc699f9934021bb4a2b1088ba4d3b", "rel": "storage.objects.size"}], "resource_id": "931dc699f9934021bb4a2b1088ba4d3b"}, {"project_id": "931dc699f9934021bb4a2b1088ba4d3b", "user_id": "2b8fbe55863d4dfab5310796202b2019", "metadata": {"name": "two", "enable_dhcp": "True", "network_id": "79b5e163-496c-4ab6-9c21-3b597ed632dc", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "host": "network.openstack", "gateway_ip": "192.168.0.1", "ip_version": "4", "cidr": "192.168.0.0/24", "id": "a2777ed6-7442-42b8-bb86-5b554aad7f08", "event_type": "subnet.create.end"}, "links": [{"href": "http://localhost:8777/v2/resources/a2777ed6-7442-42b8-bb86-5b554aad7f08", "rel": "self"}, {"href": "http://localhost:8777/v2/meters/subnet?q.field=resource_id&q.value=a2777ed6-7442-42b8-bb86-5b554aad7f08", "rel": "subnet"}, {"href": "http://localhost:8777/v2/meters/subnet.create?q.field=resource_id&q.value=a2777ed6-7442-42b8-bb86-5b554aad7f08", "rel": "subnet.create"}], "resource_id": "a2777ed6-7442-42b8-bb86-5b554aad7f08"}, {"project_id": "931dc699f9934021bb4a2b1088ba4d3b", "user_id": "2b8fbe55863d4dfab5310796202b2019", "metadata": {"status": "available", "display_name": "tests", "event_type": "volume.create.end", "availability_zone": "nova", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05 03:50:03", "volume_id": "a5696083-56d2-4e25-a0cb-2b51bd2ca90d", "volume_type": "2fbf14d8-e544-487e-aba7-98c1ebba8fcd", "host": "volume.openstack", "snapshot_id": "None", "user_id": "2b8fbe55863d4dfab5310796202b2019", "launched_at": "", "size": "1"}, "links": [{"href": "http://localhost:8777/v2/resources/a5696083-56d2-4e25-a0cb-2b51bd2ca90d", "rel": "self"}, {"href": "http://localhost:8777/v2/meters/volume?q.field=resource_id&q.value=a5696083-56d2-4e25-a0cb-2b51bd2ca90d", "rel": "volume"}, {"href": "http://localhost:8777/v2/meters/volume.size?q.field=resource_id&q.value=a5696083-56d2-4e25-a0cb-2b51bd2ca90d", "rel": "volume.size"}], "resource_id": "a5696083-56d2-4e25-a0cb-2b51bd2ca90d"}, {"project_id": "0c5a6b84fd2a43999c8820060c57da30", "user_id": null, "metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec-ramdisk", "deleted": "False", "container_format": "ari", "created_at": "2013-08-04T22:53:46", "disk_format": "ari", "updated_at": "2013-08-04T22:53:47", "protected": "False", "checksum": "69c33642f44ca552ba4bb8b66ad97e85", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "3714968"}, "links": [{"href": "http://localhost:8777/v2/resources/b23fbced-b272-41a6-8f48-be76b586bd00", "rel": "self"}, {"href": "http://localhost:8777/v2/meters/image?q.field=resource_id&q.value=b23fbced-b272-41a6-8f48-be76b586bd00", "rel": "image"}, {"href": "http://localhost:8777/v2/meters/image.size?q.field=resource_id&q.value=b23fbced-b272-41a6-8f48-be76b586bd00", "rel": "image.size"}, {"href": "http://localhost:8777/v2/meters/image.download?q.field=resource_id&q.value=b23fbced-b272-41a6-8f48-be76b586bd00", "rel": "image.download"}, {"href": "http://localhost:8777/v2/meters/image.serve?q.field=resource_id&q.value=b23fbced-b272-41a6-8f48-be76b586bd00", "rel": "image.serve"}], "resource_id": "b23fbced-b272-41a6-8f48-be76b586bd00"}, {"project_id": "931dc699f9934021bb4a2b1088ba4d3b", "user_id": "9692a61b44f246259af534f0b1d95942", "metadata": {"status": "DOWN", "binding:host_id": "openstack", "name": "", "admin_state_up": "True", "network_id": "79b5e163-496c-4ab6-9c21-3b597ed632dc", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "host": "network.openstack", "binding:vif_type": "ovs", "device_owner": "compute:None", "mac_address": "fa:16:3e:a6:d8:57", "event_type": "port.create.end", "id": "b35709ef-6b3a-42d7-bd57-ef4cd673ec9b", "device_id": "0a16330b-d457-425d-8249-a275fab9adea"}, "links": [{"href": "http://localhost:8777/v2/resources/b35709ef-6b3a-42d7-bd57-ef4cd673ec9b", "rel": "self"}, {"href": "http://localhost:8777/v2/meters/port?q.field=resource_id&q.value=b35709ef-6b3a-42d7-bd57-ef4cd673ec9b", "rel": "port"}, {"href": "http://localhost:8777/v2/meters/port.create?q.field=resource_id&q.value=b35709ef-6b3a-42d7-bd57-ef4cd673ec9b", "rel": "port.create"}], "resource_id": "b35709ef-6b3a-42d7-bd57-ef4cd673ec9b"}, {"project_id": "931dc699f9934021bb4a2b1088ba4d3b", "user_id": "2b8fbe55863d4dfab5310796202b2019", "metadata": {"state_description": "", "event_type": "compute.instance.exists", "availability_zone": "nova", "ephemeral_gb": "0", "instance_type_id": "6", "deleted_at": "", "reservation_id": "r-zyyri69c", "instance_id": "c01c63fe-7a29-4426-bab1-34d088e92415", "user_id": "2b8fbe55863d4dfab5310796202b2019", "hostname": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "state": "active", "launched_at": "2013-08-05T05:17:46.000000", "node": "openstack", "ramdisk_id": "b23fbced-b272-41a6-8f48-be76b586bd00", "access_ip_v6": "None", "disk_gb": "0", "access_ip_v4": "None", "kernel_id": "7cbf09f5-43ae-4d94-a1e7-47e95fd27017", "host": "compute.openstack", "display_name": "foo-c01c63fe-7a29-4426-bab1-34d088e92415", "image_ref_url": "http://10.0.2.15:9292/images/e58bf75a-35e9-4709-9eab-885438f36a34", "audit_period_beginning": "2013-08-12 03:00:00", "root_gb": "0", "tenant_id": "931dc699f9934021bb4a2b1088ba4d3b", "created_at": "2013-08-05T05:17:36.000000", "memory_mb": "64", "instance_type": "m1.nano", "vcpus": "1", "architecture": "None", "audit_period_ending": "2013-08-12 04:00:00", "os_type": "None"}, "links": [{"href": "http://localhost:8777/v2/resources/c01c63fe-7a29-4426-bab1-34d088e92415", "rel": "self"}, {"href": "http://localhost:8777/v2/meters/memory?q.field=resource_id&q.value=c01c63fe-7a29-4426-bab1-34d088e92415", "rel": "memory"}, {"href": "http://localhost:8777/v2/meters/disk.ephemeral.size?q.field=resource_id&q.value=c01c63fe-7a29-4426-bab1-34d088e92415", "rel": "disk.ephemeral.size"}, {"href": "http://localhost:8777/v2/meters/instance?q.field=resource_id&q.value=c01c63fe-7a29-4426-bab1-34d088e92415", "rel": "instance"}, {"href": "http://localhost:8777/v2/meters/instance:m1.nano?q.field=resource_id&q.value=c01c63fe-7a29-4426-bab1-34d088e92415", "rel": "instance:m1.nano"}, {"href": "http://localhost:8777/v2/meters/vcpus?q.field=resource_id&q.value=c01c63fe-7a29-4426-bab1-34d088e92415", "rel": "vcpus"}, {"href": "http://localhost:8777/v2/meters/disk.root.size?q.field=resource_id&q.value=c01c63fe-7a29-4426-bab1-34d088e92415", "rel": "disk.root.size"}, {"href": "http://localhost:8777/v2/meters/instance.scheduled?q.field=resource_id&q.value=c01c63fe-7a29-4426-bab1-34d088e92415", "rel": "instance.scheduled"}], "resource_id": "c01c63fe-7a29-4426-bab1-34d088e92415"}, {"project_id": "0c5a6b84fd2a43999c8820060c57da30", "user_id": null, "metadata": {"status": "active", "name": "cirros-0.3.1-x86_64-uec", "deleted": "False", "container_format": "ami", "created_at": "2013-08-04T22:53:47", "disk_format": "ami", "updated_at": "2013-08-04T22:53:48", "protected": "False", "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", "min_disk": "0", "is_public": "True", "deleted_at": "None", "min_ram": "0", "size": "25165824"}, "links": [{"href": "http://localhost:8777/v2/resources/e58bf75a-35e9-4709-9eab-885438f36a34", "rel": "self"}, {"href": "http://localhost:8777/v2/meters/image?q.field=resource_id&q.value=e58bf75a-35e9-4709-9eab-885438f36a34", "rel": "image"}, {"href": "http://localhost:8777/v2/meters/image.size?q.field=resource_id&q.value=e58bf75a-35e9-4709-9eab-885438f36a34", "rel": "image.size"}, {"href": "http://localhost:8777/v2/meters/image.download?q.field=resource_id&q.value=e58bf75a-35e9-4709-9eab-885438f36a34", "rel": "image.download"}, {"href": "http://localhost:8777/v2/meters/image.serve?q.field=resource_id&q.value=e58bf75a-35e9-4709-9eab-885438f36a34", "rel": "image.serve"}], "resource_id": "e58bf75a-35e9-4709-9eab-885438f36a34"}, {"project_id": "e88ef09124594ede8ecea0b1628a05bf", "user_id": null, "metadata": {}, "links": [{"href": "http://localhost:8777/v2/resources/e88ef09124594ede8ecea0b1628a05bf", "rel": "self"}, {"href": "http://localhost:8777/v2/meters/storage.objects?q.field=resource_id&q.value=e88ef09124594ede8ecea0b1628a05bf", "rel": "storage.objects"}, {"href": "http://localhost:8777/v2/meters/storage.objects.containers?q.field=resource_id&q.value=e88ef09124594ede8ecea0b1628a05bf", "rel": "storage.objects.containers"}, {"href": "http://localhost:8777/v2/meters/storage.objects.size?q.field=resource_id&q.value=e88ef09124594ede8ecea0b1628a05bf", "rel": "storage.objects.size"}], "resource_id": "e88ef09124594ede8ecea0b1628a05bf"}] \ No newline at end of file diff --git a/tests/test_import.py b/tests/test_import.py new file mode 100644 index 0000000..00e6e32 --- /dev/null +++ b/tests/test_import.py @@ -0,0 +1,3 @@ +print __file__ +import os +print os.path.abspath(__file__) \ No newline at end of file diff --git a/tests/test_interface.py b/tests/test_interface.py new file mode 100644 index 0000000..4cce33b --- /dev/null +++ b/tests/test_interface.py @@ -0,0 +1,320 @@ +import unittest +from artifice import interface +from artifice.interface import Artifice +import mock +import random +import json +import copy + +from sqlalchemy import create_engine +from artifice.models import Session +from artifice.models import usage, tenants +from artifice.models.resources import Resource + +from datetime import datetime, timedelta + + +""" +This module tests interacting with the Ceilometer web service. +This will require an active Ceilometer with data in it, or, + +""" + +# @mock.patch("artifice.models.Session") +# @mock.patch("keystoneclient.v2_0.client.Client") +# @mock.patch("sqlalchemy.create_engine") +# def test_instance_artifice(self, sqlmock, keystone, session): + +# """Tests that artifice correctly instances.""" +# from artifice.interface import Artifice +# # from artifice.models import usage + +config = { + "main": {}, + "database": { + "username": "aurynn", + "password": "aurynn", + "host": "localhost", + "port": "5433", + "database": "artifice" + }, + "openstack": { + "username": "foo", + "password": "bar", + "default_tenant":"asdf", + "authentication_url": "http://foo" + }, + "ceilometer": { + "host": 'http://whee' + }, + "invoices": { + "plugin": "json" + } +} + +# Enter in a whoooooole bunch of mock data. + +TENANTS = [ + {u'enabled': True, + u'description': None, + u'name': u'demo', + u'id': u'931dc699f9934021bb4a2b1088ba4d3b'} +] + +DATACENTRE = "testcenter" + + +# I think three is good +import os +try: + fn = os.path.abspath(__file__) + path, f = os.path.split(fn) +except NameError: + path = os.getcwd() + + +fh = open( os.path.join( path, "data/resources.json") ) +resources = json.loads(fh.read () ) +fh.close() + +i = 0 + +mappings = {} + +hosts = set([resource["metadata"]["host"] for resource in resources if resource["metadata"].get("host")]) + +while True: + try: + fh = open( os.path.join( path, "data/map_fixture_%s.json" % i ) ) + d = json.loads(fh.read()) + fh.close() + mappings.update(d) + i += 1 + except IOError: + break + +# Mappings should now be a set of resources. + +AUTH_TOKEN = "ASDFTOKEN" + +storages = [] +vms = [] +networks = [] + +# res = {"vms": [], "net": [], 'storage': [], "ports":[], "ips": []} +# res = {"vms": [], "network": [], 'storage': [], "ports":[]} +res = {"vms": [], "volumes": [], 'objects': [], "network": []} + +for resource in resources: + rels = [link["rel"] for link in resource["links"] if link["rel"] != 'self' ] + if "image" in rels: + continue + elif "storage.objects" in rels: + # Unknown how this data layout happens yet. + # resource["_type"] = "storage" + res["objects"].append(resource) + elif "volume" in rels: + res["volumes"].append(resource) + elif "network" in rels: + res["network"].append(resource) + elif "instance" in rels: + res["vms"].append(resource) + # elif "port" in rels: + # res["ports"].append(resource) + # elif "ip.floating" in rels: + # res["ips"].append(resource) + + +def resources_replacement(tester): + # + def repl(self, start, end): + tester.called_replacement_resources = True + return resources + +class TestInterface(unittest.TestCase): + + def setUp(self): + + engine = create_engine(os.environ["DATABASE_URL"]) + Session.configure(bind=engine) + self.session = Session() + self.objects = [] + self.session.rollback() + self.called_replacement_resources = False + + num = random.randrange(len(res["vms"])) + # Only one vm for this + self.resources = [ res["vms"][ num ] ] + + self.start = datetime.now() - timedelta(days=30) + self.end = datetime.now() + + def tearDown(self): + + self.session.query(usage.Usage).delete() + self.session.query(Resource).delete() + self.session.query(tenants.Tenant).delete() + + + self.session.commit() + self.contents = None + self.resources = [] + + + @mock.patch("artifice.models.Session") + # @mock.patch("artifice.interface.get_meter") # I don't think this will work + @mock.patch("artifice.interface.keystone") + @mock.patch("sqlalchemy.create_engine") + def test_get_usage(self, sqlmock, keystone, session): + + # At this point, we prime the ceilometer/requests response + # system, so that what we return to usage is what we expect + # to get in the usage system. + + keystone.auth_token = AUTH_TOKEN + # keystone. + self.assertTrue(TENANTS is not None) + + def get_meter(self, start, end, auth): + # Returns meter data from our data up above + global mappings + # print self.link + data = mappings[self.link["href"]] + return data + + interface.get_meter = get_meter + + artifice = Artifice(config) + # Needed because this + artifice.auth.tenants.list.return_value = TENANTS + # this_config = copy.deepcopy(config["openstack"]) + # this_config["tenant_name"] = this_config["default_tenant"] + # del this_config["default_tenant"] + + keystone.assert_called_with( + username= config["openstack"]["username"], + password= config["openstack"]["password"], + tenant_name= config["openstack"]["default_tenant"], + auth_url= config["openstack"]["authentication_url"] + ) + tenants = None + try: + tenants = artifice.tenants + except Exception as e: + self.fail(e) + + # self.assertEqual ( len(tenants.vms), 1 ) + + self.assertEqual( len(tenants), 1 ) + k = tenants.keys()[0] + t = tenants[k] + self.assertTrue( isinstance( t, interface.Tenant ) ) + + contents = None + + # t.resources = resources_replacement(self) + t.resources = mock.Mock() + t.resources.return_value = self.resources + + artifice.host_to_dc = mock.Mock() + + artifice.host_to_dc.return_value = DATACENTRE + + usage = t.usage(self.start, self.end) + # try: + + # except Exception as e: + # self.fail(e) + + # self.assertTrue( self.called_replacement_resources ) + t.resources.assert_called_with(self.start, self.end) + + # So, we should be able to assert a couple of things here + # What got called, when, and how. + + for call in artifice.host_to_dc.call_args_list: + self.assertTrue ( len(call[0]) == 1 ) + self.assertTrue ( call[0][0] in hosts ) + + self.assertTrue ( isinstance(usage, interface.Usage) ) + + # self.assertEqual( len(usage.vms), 1 ) + # self.assertEqual( len(usage.objects), 0) + # self.assertEqual( len(usage.volumes), 0) + + self.usage = usage + + # @mock.patch("artifice.models.Session") + # @mock.patch("artifice.interface.get_meter") # I don't think this will work + # @mock.patch("artifice.interface.keystone") + # @mock.patch("sqlalchemy.create_engine") + # def test_save_smaller_range_no_overlap(self, sqlmock, keystone, meters, session): + + # self.test_get_usage() + + # first_contents = self.usage + + # # self.resources = [ + # # res["vms"][random.randrange(len[res["vms"]])], + # # ] + + + def add_element(self, from_): + + self.resources.append( res[from_][random.randrange(len(res[from_]))] ) + print len(self.resources) + + self.test_get_usage() + usage = self.usage + + # key = contents.keys()[0] # Key is the datacenter + print from_ + self.assertTrue( hasattr(usage, from_) ) + self.assertTrue( hasattr(usage, "vms") ) + + lens = { "vms": 1} + + if from_ == "vms": + lens["vms"] = 2 + else: + lens[from_] = 1 + + self.assertEqual(len(usage.vms), lens["vms"]) + self.assertEqual(len( getattr(usage, from_) ), lens[from_]) + + self.assertEqual( usage.vms[0].location, DATACENTRE ) + + def test_add_instance(self): + """ + Adds a new instance, tests that the returned data has both + + Tests that if we create a new instance in the data, + we should get another instance in the returned contents. + """ + + self.add_element("vms") + + def test_add_storage(self): + + self.add_element("objects") + + # def test_add_ip(self): + # self.add_element("ips") + + def test_save_contents(self): + + self.test_get_usage() + + usage = self.usage + # try: + usage.save() + # except Exception as e: + self.fail(e) + + # Now examine the database + + def test_correct_usage_values(self): + pass + + def test_use_a_bunch_of_data(self): + pass diff --git a/tests/test_invoice.py b/tests/test_invoice.py index ccfc09d..ac47401 100644 --- a/tests/test_invoice.py +++ b/tests/test_invoice.py @@ -11,12 +11,10 @@ class TestInvoicing(unittest.TestCase): def tearDown(self): pass - def test_replace_invoice_object(self): pass def test_add_usage_to_invoice(self): - pass def test_save_invoice(self):